43 lines
818 B
Bash
43 lines
818 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=2
|
|
|
|
inherit eutils
|
|
|
|
MY_P=${P/gtk-engines-}
|
|
|
|
DESCRIPTION="A heavily modified version of the Aurora engine"
|
|
HOMEPAGE="http://gnome-look.org/content/show.php/Equinox+GTK+Engine?content=121881"
|
|
SRC_URI="http://gnome-look.org/CONTENT/content-files/121881-${MY_P}.tar.gz
|
|
-> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="+animations"
|
|
|
|
RDEPEND="x11-libs/gtk+"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}/${P}-dont-include-glib-gtimer-h.patch" || die
|
|
}
|
|
|
|
src_configure() {
|
|
econf $(use_enable animations)
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die
|
|
dodoc AUTHORS ChangeLog NEWS
|
|
}
|