diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-01-17 18:21:17 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-01-17 18:21:17 +0000 |
commit | 80a92da4beb4b900158ce45a6f0dc0ac4d509725 (patch) | |
tree | 6406b6e5a815efeeb49c045cdbf31b236f317478 /games-emulation/gngeo/gngeo-0.7.ebuild | |
parent | Add fix from Debian for struct packing (i.e. arm) #255096 by Raúl Porcel. (diff) | |
download | gentoo-2-80a92da4beb4b900158ce45a6f0dc0ac4d509725.tar.gz gentoo-2-80a92da4beb4b900158ce45a6f0dc0ac4d509725.tar.bz2 gentoo-2-80a92da4beb4b900158ce45a6f0dc0ac4d509725.zip |
Doesn't work with latest nasm so disable that for now (bug #249834)
(Portage version: 2.1.6.4/cvs/Linux 2.6.27.8 i686)
Diffstat (limited to 'games-emulation/gngeo/gngeo-0.7.ebuild')
-rw-r--r-- | games-emulation/gngeo/gngeo-0.7.ebuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/games-emulation/gngeo/gngeo-0.7.ebuild b/games-emulation/gngeo/gngeo-0.7.ebuild index 81f7ff38d428..17b6fafa6cc3 100644 --- a/games-emulation/gngeo/gngeo-0.7.ebuild +++ b/games-emulation/gngeo/gngeo-0.7.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 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.5 2008/06/14 15:34:07 coldwind Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/gngeo-0.7.ebuild,v 1.6 2009/01/17 18:21:17 mr_bones_ Exp $ inherit eutils autotools games @@ -13,11 +13,9 @@ SLOT="0" KEYWORDS="~amd64 ppc x86" IUSE="" -RDEPEND="virtual/opengl +DEPEND="virtual/opengl media-libs/sdl-image media-libs/libsdl" -DEPEND="${RDEPEND} - x86? ( >=dev-lang/nasm-0.98 )" src_unpack() { unpack ${A} @@ -30,7 +28,7 @@ src_unpack() { } src_compile() { - egamesconf $(use_enable x86 i386asm) || die "egamesconf failed" + egamesconf --disable-i386asm || die "egamesconf failed" emake || die "emake failed" } |