diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-29 20:46:56 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-29 20:46:56 +0000 |
commit | 7f21fe385112ef9183c3702c2f11bc619a28db9d (patch) | |
tree | e9335556c6bfbc16874dc6117d936a3711dc57fc /games-strategy | |
parent | tidy (Manifest recommit) (diff) | |
download | gentoo-2-7f21fe385112ef9183c3702c2f11bc619a28db9d.tar.gz gentoo-2-7f21fe385112ef9183c3702c2f11bc619a28db9d.tar.bz2 gentoo-2-7f21fe385112ef9183c3702c2f11bc619a28db9d.zip |
-ftracer + gcc-3.4.0 == broken #52269
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/wesnoth/wesnoth-0.7.8.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/games-strategy/wesnoth/wesnoth-0.7.8.ebuild b/games-strategy/wesnoth/wesnoth-0.7.8.ebuild index 752e610271bd..ecbb0a28251a 100644 --- a/games-strategy/wesnoth/wesnoth-0.7.8.ebuild +++ b/games-strategy/wesnoth/wesnoth-0.7.8.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-0.7.8.ebuild,v 1.1 2004/05/28 06:24:19 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-0.7.8.ebuild,v 1.2 2004/05/29 20:46:56 vapier Exp $ -inherit flag-o-matic games +inherit flag-o-matic games gcc DESCRIPTION="A fantasy turn-based strategy game" HOMEPAGE="http://www.wesnoth.org/" @@ -10,7 +10,7 @@ SRC_URI="http://www.wesnoth.org/files/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 amd64 ppc ~sparc" +KEYWORDS="x86 ppc sparc amd64" IUSE="server editor tools gnome kde" DEPEND=">=media-libs/libsdl-1.2 @@ -21,6 +21,7 @@ DEPEND=">=media-libs/libsdl-1.2 virtual/x11" src_compile() { + [ "`gcc-fullversion`" == "3.4.0" ] && filter-flags -ftracer egamesconf \ --disable-dependency-tracking \ $(use_enable server) \ @@ -28,7 +29,7 @@ src_compile() { $(use_enable tools) \ $(use_enable gnome) \ $(use_enable kde) \ - || die + || die emake || die "emake failed" } |