diff options
author | 2008-06-14 15:34:07 +0000 | |
---|---|---|
committer | 2008-06-14 15:34:07 +0000 | |
commit | e040d697ecbad444109e18c48c19b5e3aa0861dc (patch) | |
tree | 31faae2c28c72a41d9516d966ded469b3b5f8fdd /games-emulation/gngeo | |
parent | Bug #226505 - For compatibility with phase execution order in (diff) | |
download | gentoo-2-e040d697ecbad444109e18c48c19b5e3aa0861dc.tar.gz gentoo-2-e040d697ecbad444109e18c48c19b5e3aa0861dc.tar.bz2 gentoo-2-e040d697ecbad444109e18c48c19b5e3aa0861dc.zip |
Ensure we do not use i386 asm on amd64, fixes #222149.
(Portage version: 2.2_pre8/cvs/Linux 2.6.25-gentoo-r3 x86_64)
Diffstat (limited to 'games-emulation/gngeo')
-rw-r--r-- | games-emulation/gngeo/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/gngeo/gngeo-0.7.ebuild | 9 |
2 files changed, 12 insertions, 4 deletions
diff --git a/games-emulation/gngeo/ChangeLog b/games-emulation/gngeo/ChangeLog index 5ec2b325c6b3..9f6e3a24cb0b 100644 --- a/games-emulation/gngeo/ChangeLog +++ b/games-emulation/gngeo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/gngeo -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/ChangeLog,v 1.19 2007/07/02 16:50:59 nyhm Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/ChangeLog,v 1.20 2008/06/14 15:34:07 coldwind Exp $ + + 14 Jun 2008; Santiago M. Mola <coldwind@gentoo.org> gngeo-0.7.ebuild: + Ensure we do not use i386 asm on amd64, fixes #222149. 02 Jul 2007; Tristan Heaven <nyhm@gentoo.org> files/gngeo-0.7-execstacks.patch: diff --git a/games-emulation/gngeo/gngeo-0.7.ebuild b/games-emulation/gngeo/gngeo-0.7.ebuild index 66db03610f19..81f7ff38d428 100644 --- a/games-emulation/gngeo/gngeo-0.7.ebuild +++ b/games-emulation/gngeo/gngeo-0.7.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/gngeo-0.7.ebuild,v 1.4 2007/02/07 13:51:06 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/gngeo-0.7.ebuild,v 1.5 2008/06/14 15:34:07 coldwind Exp $ inherit eutils autotools games @@ -29,6 +29,11 @@ src_unpack() { eautoreconf } +src_compile() { + egamesconf $(use_enable x86 i386asm) || die "egamesconf failed" + emake || die "emake failed" +} + src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS FAQ NEWS README* TODO sample_gngeorc |