diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2005-05-16 07:48:28 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2005-05-16 07:48:28 +0000 |
commit | b097104cbbc9c4d84538e346e076f91492afa5e5 (patch) | |
tree | abb0e82324e876ea2870e193171ff0bc5a3589e5 /x11-plugins/wmtz | |
parent | Stable amd64, x86. (diff) | |
download | historical-b097104cbbc9c4d84538e346e076f91492afa5e5.tar.gz historical-b097104cbbc9c4d84538e346e076f91492afa5e5.tar.bz2 historical-b097104cbbc9c4d84538e346e076f91492afa5e5.zip |
Inherit toolchain-funcs instead of gcc, as per bug #92745. Honour Gentoo CFLAGS...
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'x11-plugins/wmtz')
-rw-r--r-- | x11-plugins/wmtz/ChangeLog | 6 | ||||
-rw-r--r-- | x11-plugins/wmtz/Manifest | 6 | ||||
-rw-r--r-- | x11-plugins/wmtz/wmtz-0.7.ebuild | 10 |
3 files changed, 13 insertions, 9 deletions
diff --git a/x11-plugins/wmtz/ChangeLog b/x11-plugins/wmtz/ChangeLog index 6f39ea86afac..4485ded9a708 100644 --- a/x11-plugins/wmtz/ChangeLog +++ b/x11-plugins/wmtz/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-plugins/wmtz # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtz/ChangeLog,v 1.10 2004/11/25 15:22:41 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtz/ChangeLog,v 1.11 2005/05/16 07:48:28 s4t4n Exp $ + + 16 May 2005; Michele Noberasco <s4t4n@gentoo.org> wmtz-0.7.ebuild: + Inherit 'toolchain-funcs' instead of 'gcc', as per bug #92745. + Make package honour Gentoo CFLAGS... 25 Nov 2004; Jason Wever <weeve@gentoo.org> wmtz-0.7.ebuild: Added ~sparc keyword. diff --git a/x11-plugins/wmtz/Manifest b/x11-plugins/wmtz/Manifest index 34631883b43e..e23ea1730b8a 100644 --- a/x11-plugins/wmtz/Manifest +++ b/x11-plugins/wmtz/Manifest @@ -1,6 +1,6 @@ -MD5 0a8924030f9d1dea3063fcbadddca38f ChangeLog 1235 +MD5 065e2421ce5e3b6e6103fe4eaeeff0d6 wmtz-0.7.ebuild 950 +MD5 e37662bc0aef26d8fbffe32e24aa2b28 ChangeLog 1409 MD5 62ba71d3b2fa785a4cbd5d47fdbd0eb6 metadata.xml 165 -MD5 36dd3219424370c248ce475342fb3525 wmtz-0.7.ebuild 935 -MD5 6efb0655a3f8a17ecd56106d4d39ebda files/digest-wmtz-0.7 59 MD5 87d237cba796423d80d030a210401ed0 files/wmtz.c.patch 465 +MD5 6efb0655a3f8a17ecd56106d4d39ebda files/digest-wmtz-0.7 59 MD5 f44970f0cb57d7fca808329d20d45902 files/wmtz-0.7-gcc34.patch 336 diff --git a/x11-plugins/wmtz/wmtz-0.7.ebuild b/x11-plugins/wmtz/wmtz-0.7.ebuild index 847297d16b5a..8c1e559b7bd5 100644 --- a/x11-plugins/wmtz/wmtz-0.7.ebuild +++ b/x11-plugins/wmtz/wmtz-0.7.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtz/wmtz-0.7.ebuild,v 1.11 2004/11/25 15:22:41 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtz/wmtz-0.7.ebuild,v 1.12 2005/05/16 07:48:28 s4t4n Exp $ -inherit eutils gcc +inherit eutils toolchain-funcs IUSE="" DESCRIPTION="dockapp that shows the time in multiple timezones." @@ -19,7 +19,7 @@ src_unpack() { unpack ${A} cd ${S} - #apply both patches to compile with gcc-3.4 closing bug # + #apply both patches to compile with gcc-3.4 closing bug #64556 if [ "`gcc-major-version`" -ge "3" -a "`gcc-minor-version`" -ge "4" ] then epatch ${FILESDIR}/wmtz-0.7-gcc34.patch @@ -29,7 +29,7 @@ src_unpack() { src_compile() { cd ${S}/wmtz epatch ${FILESDIR}/wmtz.c.patch - emake CFLAGS="$CFLAGS" || die + emake FLAGS="$CFLAGS" || die } src_install () { |