diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2006-10-26 20:13:08 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2006-10-26 20:13:08 +0000 |
commit | 316ddc7b1d81ed0116f6fb0442460c3f4fc71a46 (patch) | |
tree | 2e4dbde9fd1bfd3fee15819d12a1c1cf255fefea /games-emulation | |
parent | Added dev-java/bluej-bin for treecleaner, bug 65923 (diff) | |
download | gentoo-2-316ddc7b1d81ed0116f6fb0442460c3f4fc71a46.tar.gz gentoo-2-316ddc7b1d81ed0116f6fb0442460c3f4fc71a46.tar.bz2 gentoo-2-316ddc7b1d81ed0116f6fb0442460c3f4fc71a46.zip |
Added ~amd64 keyword. Bug #149785 and fixed parallelized make
(Portage version: 2.1.1)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/gngeo/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/gngeo/files/gngeo-0.7-concurrentMake.patch | 14 | ||||
-rw-r--r-- | games-emulation/gngeo/gngeo-0.7.ebuild | 10 |
3 files changed, 26 insertions, 5 deletions
diff --git a/games-emulation/gngeo/ChangeLog b/games-emulation/gngeo/ChangeLog index 29b79104c4f7..a6d41e72bea6 100644 --- a/games-emulation/gngeo/ChangeLog +++ b/games-emulation/gngeo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-emulation/gngeo # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/ChangeLog,v 1.15 2006/09/02 06:27:26 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/ChangeLog,v 1.16 2006/10/26 20:13:08 tupone Exp $ + + 26 Oct 2006; <tupone@gentoo.org> +files/gngeo-0.7-concurrentMake.patch, + gngeo-0.7.ebuild: + Added ~amd64 keyword. Bug #149785 by Shiro Ikkakujyu + Fixed parallelized make *gngeo-0.7 (02 Sep 2006) diff --git a/games-emulation/gngeo/files/gngeo-0.7-concurrentMake.patch b/games-emulation/gngeo/files/gngeo-0.7-concurrentMake.patch new file mode 100644 index 000000000000..dfa9cbe46444 --- /dev/null +++ b/games-emulation/gngeo/files/gngeo-0.7-concurrentMake.patch @@ -0,0 +1,14 @@ +--- src/generator68k/Makefile.am.old 2006-10-26 21:52:24.000000000 +0200 ++++ src/generator68k/Makefile.am 2006-10-26 21:53:45.000000000 +0200 +@@ -66,7 +66,10 @@ + + #def68k : def68k.c + # gcc def68k.c tab68k.c -o def68k -I .. -I ../.. -I . `sdl-config --cflags` +-def68k.o gen68k.o: %.o : %.c ++def68k.o: %.o : %.c ++ $(CC_FOR_BUILD) -c $< -o $@ -I .. -I ../.. -I . `sdl-config --cflags` ++ ++gen68k.o: gen68k.c def68k-iibs.h + $(CC_FOR_BUILD) -c $< -o $@ -I .. -I ../.. -I . `sdl-config --cflags` + + def68k : def68k.o diff --git a/games-emulation/gngeo/gngeo-0.7.ebuild b/games-emulation/gngeo/gngeo-0.7.ebuild index 50d8fe354df0..868f8b5f250f 100644 --- a/games-emulation/gngeo/gngeo-0.7.ebuild +++ b/games-emulation/gngeo/gngeo-0.7.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 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.1 2006/09/02 06:27:26 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/gngeo-0.7.ebuild,v 1.2 2006/10/26 20:13:08 tupone Exp $ -inherit eutils games +inherit eutils autotools games DESCRIPTION="A NeoGeo emulator" HOMEPAGE="http://m.peponas.free.fr/gngeo/" @@ -10,7 +10,7 @@ SRC_URI="http://download.berlios.de/gngeo/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="ppc x86" +KEYWORDS="~amd64 ppc x86" IUSE="" RDEPEND="virtual/opengl @@ -25,7 +25,9 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} cd "${S}" - epatch "${FILESDIR}/${P}-execstacks.patch" + epatch "${FILESDIR}/${P}-execstacks.patch" \ + "${FILESDIR}"/${P}-concurrentMake.patch + autoreconf } src_install() { |