diff options
-rw-r--r-- | games-emulation/zsnes/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/zsnes/files/zsnes-1.51-CC-quotes.patch | 20 | ||||
-rw-r--r-- | games-emulation/zsnes/files/zsnes-1.51-makefile.dep.patch | 11 | ||||
-rw-r--r-- | games-emulation/zsnes/zsnes-1.51-r2.ebuild | 4 |
4 files changed, 28 insertions, 14 deletions
diff --git a/games-emulation/zsnes/ChangeLog b/games-emulation/zsnes/ChangeLog index 134544ba3a46..4f6a5f02947e 100644 --- a/games-emulation/zsnes/ChangeLog +++ b/games-emulation/zsnes/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-emulation/zsnes # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.40 2009/02/25 17:10:09 drizzt Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.41 2009/02/25 17:16:56 drizzt Exp $ + + 25 Feb 2009; Timothy Redaelli <drizzt@gentoo.org> + +files/zsnes-1.51-CC-quotes.patch, -files/zsnes-1.51-makefile.dep.patch, + zsnes-1.51-r2.ebuild: + Ops 25 Feb 2009; Timothy Redaelli <drizzt@gentoo.org> +files/zsnes-1.51-makefile.dep.patch, zsnes-1.51-r2.ebuild: diff --git a/games-emulation/zsnes/files/zsnes-1.51-CC-quotes.patch b/games-emulation/zsnes/files/zsnes-1.51-CC-quotes.patch new file mode 100644 index 000000000000..5a3b588b091d --- /dev/null +++ b/games-emulation/zsnes/files/zsnes-1.51-CC-quotes.patch @@ -0,0 +1,20 @@ +--- src/Makefile.in.orig 2009-02-25 18:13:40.000000000 +0100 ++++ src/Makefile.in 2009-02-25 18:13:16.000000000 +0100 +@@ -95,7 +95,7 @@ + %.o: %.cpp + @CXX@ @CXXFLAGS@ -o $@ -c $< + %.o %.h: %.psr $(PSR) +- ./$(PSR) @PSRFLAGS@ -gcc @CC@ -compile -flags "@CFLAGS@ -O1" -cheader $*.h -fname $* $*.o $< ++ ./$(PSR) @PSRFLAGS@ -gcc "@CC@" -compile -flags "@CFLAGS@ -O1" -cheader $*.h -fname $* $*.o $< + + default: main + all: main tools--- zsnes_1_51/src/Makefile.in.orig 2009-02-25 18:02:07.000000000 +0100 +@@ -133,7 +133,7 @@ + + include makefile.dep + makefile.dep: $(TOOL_D)/depbuild Makefile +- $(TOOL_D)/depbuild @CC@ "@CFLAGS@" @NASMPATH@ "@NFLAGS@" $(Z_OBJS) > makefile.dep ++ $(TOOL_D)/depbuild "@CC@" "@CFLAGS@" @NASMPATH@ "@NFLAGS@" $(Z_OBJS) > makefile.dep + + Makefile: Makefile.in config.status + ./config.status diff --git a/games-emulation/zsnes/files/zsnes-1.51-makefile.dep.patch b/games-emulation/zsnes/files/zsnes-1.51-makefile.dep.patch deleted file mode 100644 index e5c92847614f..000000000000 --- a/games-emulation/zsnes/files/zsnes-1.51-makefile.dep.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- zsnes_1_51/src/Makefile.in.orig 2009-02-25 18:02:07.000000000 +0100 -+++ zsnes_1_51/src/Makefile.in 2009-02-25 18:02:19.000000000 +0100 -@@ -133,7 +133,7 @@ - - include makefile.dep - makefile.dep: $(TOOL_D)/depbuild Makefile -- $(TOOL_D)/depbuild @CC@ "@CFLAGS@" @NASMPATH@ "@NFLAGS@" $(Z_OBJS) > makefile.dep -+ $(TOOL_D)/depbuild "@CC@" "@CFLAGS@" @NASMPATH@ "@NFLAGS@" $(Z_OBJS) > makefile.dep - - Makefile: Makefile.in config.status - ./config.status diff --git a/games-emulation/zsnes/zsnes-1.51-r2.ebuild b/games-emulation/zsnes/zsnes-1.51-r2.ebuild index 768f6823afe7..660a8b5f7da3 100644 --- a/games-emulation/zsnes/zsnes-1.51-r2.ebuild +++ b/games-emulation/zsnes/zsnes-1.51-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v 1.3 2009/02/25 17:10:09 drizzt Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v 1.4 2009/02/25 17:16:56 drizzt Exp $ inherit eutils autotools flag-o-matic toolchain-funcs multilib games @@ -39,7 +39,7 @@ src_unpack() { # Fix bug #170108 epatch "${FILESDIR}"/${P}-depbuild.patch # Fix bug #260247 - epatch "${FILESDIR}"/${P}-makefile.dep.patch + epatch "${FILESDIR}"/${P}-CC-quotes.patch # Remove hardcoded CFLAGS and LDFLAGS sed -i \ |