summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Callen <jcallen@gentoo.org>2010-08-16 20:50:46 +0000
committerJonathan Callen <jcallen@gentoo.org>2010-08-16 20:50:46 +0000
commit1fa47928868535b3ae6a3fe685adcd257eac8536 (patch)
tree7de73ae0880fb5811a98448ede3389d17f9a1e07 /x11-themes/gtk-engines-rezlooks
parentFix building with recent glibc wrt #332857 by f3d. (diff)
downloadhistorical-1fa47928868535b3ae6a3fe685adcd257eac8536.tar.gz
historical-1fa47928868535b3ae6a3fe685adcd257eac8536.tar.bz2
historical-1fa47928868535b3ae6a3fe685adcd257eac8536.zip
Transfer prefix keywords, bump to EAPI=3, use slot dep for x11-libs/gtk+
Package-Manager: portage-v2.2_rc67-475-g06c7c90/cvs/Linux i686
Diffstat (limited to 'x11-themes/gtk-engines-rezlooks')
-rw-r--r--x11-themes/gtk-engines-rezlooks/ChangeLog8
-rw-r--r--x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild25
2 files changed, 24 insertions, 9 deletions
diff --git a/x11-themes/gtk-engines-rezlooks/ChangeLog b/x11-themes/gtk-engines-rezlooks/ChangeLog
index ee2e7636f32c..0879fd2ac8b0 100644
--- a/x11-themes/gtk-engines-rezlooks/ChangeLog
+++ b/x11-themes/gtk-engines-rezlooks/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-themes/gtk-engines-rezlooks
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-rezlooks/ChangeLog,v 1.7 2009/03/20 04:17:52 jmbsvicetto Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-rezlooks/ChangeLog,v 1.8 2010/08/16 20:50:46 abcd Exp $
+
+ 16 Aug 2010; Jonathan Callen <abcd@gentoo.org>
+ gtk-engines-rezlooks-0.6.ebuild:
+ Transfer prefix keywords, bump to EAPI=3, use slot dep for x11-libs/gtk+
20 Mar 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
metadata.xml:
diff --git a/x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild b/x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild
index 684aa8a0035d..fdd889af612e 100644
--- a/x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild
+++ b/x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild
@@ -1,6 +1,9 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild,v 1.7 2008/12/20 18:58:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild,v 1.8 2010/08/16 20:50:46 abcd Exp $
+
+EAPI=3
+inherit autotools
DESCRIPTION="Rezlooks GTK+ Engine"
HOMEPAGE="http://www.gnome-look.org/content/show.php?content=39179"
@@ -8,21 +11,29 @@ SRC_URI="http://www.gnome-look.org/content/files/39179-rezlooks-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 x86 ~x86-fbsd"
+KEYWORDS="amd64 x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux"
IUSE=""
-RDEPEND=">=x11-libs/gtk+-2.8"
+RDEPEND=">=x11-libs/gtk+-2.8:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/rezlooks-${PV}
-src_compile() {
+src_prepare() {
+ # automake complains: ChangeLog missing. There however is a Changelog.
+ # to avoid problems with case insensitive fs, move somewhere else first.
+ mv Changelog{,.1}
+ mv Changelog.1 ChangeLog
+
+ eautoreconf # required for interix
+}
+
+src_configure() {
econf --disable-dependency-tracking --enable-animation
- emake || die "make failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
- dodoc AUTHORS Changelog CREDITS NEWS README
+ dodoc AUTHORS ChangeLog CREDITS NEWS README
}