diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-08-02 09:31:06 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-08-02 09:31:06 +0000 |
commit | b2717d21728d05b831d4084d637fec32dcbe462a (patch) | |
tree | faea72908ffa58d73ac03f5eb1ac6f0db31c7daf /x11-themes/gtk-engines-flat/gtk-engines-flat-2.0-r2.ebuild | |
parent | Version bump to 2.0.3; resolves bug 99796. (diff) | |
download | historical-b2717d21728d05b831d4084d637fec32dcbe462a.tar.gz historical-b2717d21728d05b831d4084d637fec32dcbe462a.tar.bz2 historical-b2717d21728d05b831d4084d637fec32dcbe462a.zip |
Don't inherit from gtk-engines[2].eclass
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'x11-themes/gtk-engines-flat/gtk-engines-flat-2.0-r2.ebuild')
-rw-r--r-- | x11-themes/gtk-engines-flat/gtk-engines-flat-2.0-r2.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/x11-themes/gtk-engines-flat/gtk-engines-flat-2.0-r2.ebuild b/x11-themes/gtk-engines-flat/gtk-engines-flat-2.0-r2.ebuild new file mode 100644 index 000000000000..8c9ff9a1839c --- /dev/null +++ b/x11-themes/gtk-engines-flat/gtk-engines-flat-2.0-r2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-flat/gtk-engines-flat-2.0-r2.ebuild,v 1.1 2005/08/02 09:31:06 leonardop Exp $ + +inherit gnuconfig + +MY_PN="gtk-flat-theme" +MY_P=${MY_PN}-${PV} +DESCRIPTION="GTK+2 Flat Theme Engine" +SRC_URI="http://download.freshmeat.net/themes/gtk2flat/gtk2flat-default.tar.gz" +HOMEPAGE="http://themes.freshmeat.net/projects/gtk2flat/" + +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64" +LICENSE="GPL-2" +SLOT="2" +IUSE="static" + +RDEPEND=">=x11-libs/gtk+-2" + +DEPEND="${REPEND} + dev-util/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + if [[ ${ARCH} == "amd64" ]]; then + gnuconfig_update ${WORKDIR} + fi +} + +src_compile() { + local myconf="$(use_enable static)" + + econf $myconf || die "Configuration failed" + emake || die "Compilation failed" +} + +src_install() { + make DESTDIR="${D}" install || die "Installation failed" + + dodoc AUTHORS README +} |