diff options
author | Daniel Goller <morfic@gentoo.org> | 2004-09-21 23:30:14 +0000 |
---|---|---|
committer | Daniel Goller <morfic@gentoo.org> | 2004-09-21 23:30:14 +0000 |
commit | 49d4f747ddd524a94482a9f185f3c74e193bb514 (patch) | |
tree | 536ab9176487fa7e9d6d68fb76c8da1876a916f8 /net-misc | |
parent | s390 stable for #57553 (Manifest recommit) (diff) | |
download | gentoo-2-49d4f747ddd524a94482a9f185f3c74e193bb514.tar.gz gentoo-2-49d4f747ddd524a94482a9f185f3c74e193bb514.tar.bz2 gentoo-2-49d4f747ddd524a94482a9f185f3c74e193bb514.zip |
gcc3.4 bug conditionally, closing bug 64813
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/tightvnc/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/tightvnc/tightvnc-1.3_alpha5.ebuild | 10 |
2 files changed, 11 insertions, 4 deletions
diff --git a/net-misc/tightvnc/ChangeLog b/net-misc/tightvnc/ChangeLog index 7084edaf9d0c..2b6a8bb391fe 100644 --- a/net-misc/tightvnc/ChangeLog +++ b/net-misc/tightvnc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/tightvnc # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/ChangeLog,v 1.37 2004/09/20 02:09:30 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/ChangeLog,v 1.38 2004/09/21 23:30:14 morfic Exp $ + + 21 Sep 2004; Daniel Goller <morfic@gentoo.org> tightvnc-1.3_alpha5.ebuild: + dont apply gcc3.4 patch unconditionally *tightvnc-1.3_alpha5 (19 Sep 2004) diff --git a/net-misc/tightvnc/tightvnc-1.3_alpha5.ebuild b/net-misc/tightvnc/tightvnc-1.3_alpha5.ebuild index 5558975ae65e..d67d41671845 100644 --- a/net-misc/tightvnc/tightvnc-1.3_alpha5.ebuild +++ b/net-misc/tightvnc/tightvnc-1.3_alpha5.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.3_alpha5.ebuild,v 1.6 2004/09/20 02:45:27 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.3_alpha5.ebuild,v 1.7 2004/09/21 23:30:14 morfic Exp $ -inherit eutils +inherit eutils gcc IUSE="java tcpd" @@ -34,7 +34,11 @@ src_unpack() { epatch ${FILESDIR}/${P}-gentoo.security.patch epatch ${FILESDIR}/${P}-imake-tmpdir.patch epatch ${FILESDIR}/x86.patch - epatch ${FILESDIR}/${P}-gcc34.patch + + if [ "`gcc-major-version`" -ge "3" -a "`gcc-minor-version`" -ge "4" ] + then + epatch ${FILESDIR}/${P}-gcc34.patch + fi } src_compile() { |