* [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild
@ 2008-05-09 19:14 Timothy Redaelli (drizzt)
0 siblings, 0 replies; 10+ messages in thread
From: Timothy Redaelli (drizzt) @ 2008-05-09 19:14 UTC (permalink / raw
To: gentoo-commits
drizzt 08/05/09 19:14:57
Modified: ChangeLog
Added: zsnes-1.51-r2.ebuild
Log:
Revision bump wrt bug #214697
(Portage version: 2.1.4.4)
Revision Changes Path
1.38 games-emulation/zsnes/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.37&r2=1.38
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog 2 May 2008 13:52:31 -0000 1.37
+++ ChangeLog 9 May 2008 19:14:57 -0000 1.38
@@ -1,6 +1,12 @@
# ChangeLog for games-emulation/zsnes
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.37 2008/05/02 13:52:31 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.38 2008/05/09 19:14:57 drizzt Exp $
+
+*zsnes-1.51-r2 (09 May 2008)
+
+ 09 May 2008; Timothy Redaelli <drizzt@gentoo.org>
+ +files/zsnes-1.51-libao-thread.patch, +zsnes-1.51-r2.ebuild:
+ Revision bump wrt bug #214697
02 May 2008; Tristan Heaven <nyhm@gentoo.org>
+files/zsnes-1.51-gcc43.patch, zsnes-1.51-r1.ebuild:
1.1 games-emulation/zsnes/zsnes-1.51-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.1&content-type=text/plain
Index: zsnes-1.51-r2.ebuild
===================================================================
# Copyright 1999-2008 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.1 2008/05/09 19:14:57 drizzt Exp $
inherit eutils autotools flag-o-matic toolchain-funcs multilib games
DESCRIPTION="SNES (Super Nintendo) emulator that uses x86 assembly"
HOMEPAGE="http://www.zsnes.com/ http://ipherswipsite.com/zsnes/"
SRC_URI="mirror://sourceforge/zsnes/${PN}${PV//./}src.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
IUSE="ao custom-cflags opengl png"
RDEPEND="media-libs/libsdl
>=sys-libs/zlib-1.2.3-r1
amd64? ( >=app-emulation/emul-linux-x86-sdl-10.1 )
ao? ( media-libs/libao )
opengl? ( virtual/opengl )
png? ( media-libs/libpng )"
DEPEND="${RDEPEND}
dev-lang/nasm
amd64? ( >=sys-apps/portage-2.1 )"
S=${WORKDIR}/${PN}_${PV//./_}/src
src_unpack() {
unpack ${A}
cd "${S}"
# Fixing compilation without libpng installed
epatch "${FILESDIR}"/${P}-libpng.patch
# Fix bug #186111
epatch "${FILESDIR}"/${P}-archopt-july-23-update.patch
epatch "${FILESDIR}"/${P}-gcc43.patch
# Fix bug #214697
epatch "${FILESDIR}"/${P}-libao-thread.patch
# Remove hardcoded CFLAGS and LDFLAGS
sed -i \
-e '/^CFLAGS=.*local/s:-pipe.*:-Wall -I.":' \
-e '/^LDFLAGS=.*local/d' \
-e '/\w*CFLAGS=.*fomit/s:-O3.*$STRIP::' \
configure.in \
|| die "sed failed"
eautoreconf
}
src_compile() {
tc-export CC
use amd64 && multilib_toolchain_setup x86
use custom-cflags || strip-flags
egamesconf \
$(use_enable ao libao) \
$(use_enable png libpng) \
$(use_enable opengl) \
--disable-debug \
--disable-cpucheck \
--enable-release \
force_arch=no \
|| die
emake makefile.dep || die "emake makefile.dep failed"
emake || die "emake failed"
}
src_install() {
dogamesbin zsnes || die "dogamesbin failed"
newman linux/zsnes.1 zsnes.6
dodoc ../docs/{readme.1st,*.txt,README.LINUX}
dodoc ../docs/readme.txt/*
dohtml -r ../docs/readme.htm/*
make_desktop_entry zsnes ZSNES
newicon icons/48x48x32.png ${PN}.png
prepgamesdirs
}
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild
@ 2009-02-02 16:41 Timothy Redaelli (drizzt)
0 siblings, 0 replies; 10+ messages in thread
From: Timothy Redaelli (drizzt) @ 2009-02-02 16:41 UTC (permalink / raw
To: gentoo-commits
drizzt 09/02/02 16:41:45
Modified: ChangeLog zsnes-1.51-r2.ebuild
Log:
Fix a (possible) compilation problem wrt bug #170108
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.39 games-emulation/zsnes/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.38&r2=1.39
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog 9 May 2008 19:14:57 -0000 1.38
+++ ChangeLog 2 Feb 2009 16:41:45 -0000 1.39
@@ -1,6 +1,10 @@
# ChangeLog for games-emulation/zsnes
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.38 2008/05/09 19:14:57 drizzt Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.39 2009/02/02 16:41:45 drizzt Exp $
+
+ 02 Feb 2009; <drizzt@gentoo.org> +files/zsnes-1.51-depbuild.patch,
+ zsnes-1.51-r2.ebuild:
+ Fix a (possible) compilation problem wrt bug #170108
*zsnes-1.51-r2 (09 May 2008)
1.2 games-emulation/zsnes/zsnes-1.51-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?r1=1.1&r2=1.2
Index: zsnes-1.51-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- zsnes-1.51-r2.ebuild 9 May 2008 19:14:57 -0000 1.1
+++ zsnes-1.51-r2.ebuild 2 Feb 2009 16:41:45 -0000 1.2
@@ -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/zsnes/zsnes-1.51-r2.ebuild,v 1.1 2008/05/09 19:14:57 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v 1.2 2009/02/02 16:41:45 drizzt Exp $
inherit eutils autotools flag-o-matic toolchain-funcs multilib games
@@ -36,6 +36,8 @@
epatch "${FILESDIR}"/${P}-gcc43.patch
# Fix bug #214697
epatch "${FILESDIR}"/${P}-libao-thread.patch
+ # Fix bug #170108
+ epatch "${FILESDIR}"/${P}-depbuild.patch
# Remove hardcoded CFLAGS and LDFLAGS
sed -i \
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild
@ 2009-02-25 17:10 Timothy Redaelli (drizzt)
0 siblings, 0 replies; 10+ messages in thread
From: Timothy Redaelli (drizzt) @ 2009-02-25 17:10 UTC (permalink / raw
To: gentoo-commits
drizzt 09/02/25 17:10:09
Modified: ChangeLog zsnes-1.51-r2.ebuild
Log:
Fix bug #257963 and #260247
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.40 games-emulation/zsnes/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.39&r2=1.40
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog 2 Feb 2009 16:41:45 -0000 1.39
+++ ChangeLog 25 Feb 2009 17:10:09 -0000 1.40
@@ -1,6 +1,10 @@
# 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.39 2009/02/02 16:41:45 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.40 2009/02/25 17:10:09 drizzt Exp $
+
+ 25 Feb 2009; Timothy Redaelli <drizzt@gentoo.org>
+ +files/zsnes-1.51-makefile.dep.patch, zsnes-1.51-r2.ebuild:
+ Fix bug #257963 and #260247
02 Feb 2009; <drizzt@gentoo.org> +files/zsnes-1.51-depbuild.patch,
zsnes-1.51-r2.ebuild:
1.3 games-emulation/zsnes/zsnes-1.51-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?r1=1.2&r2=1.3
Index: zsnes-1.51-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- zsnes-1.51-r2.ebuild 2 Feb 2009 16:41:45 -0000 1.2
+++ zsnes-1.51-r2.ebuild 25 Feb 2009 17:10:09 -0000 1.3
@@ -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.2 2009/02/02 16:41:45 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v 1.3 2009/02/25 17:10:09 drizzt Exp $
inherit eutils autotools flag-o-matic toolchain-funcs multilib games
@@ -38,6 +38,8 @@
epatch "${FILESDIR}"/${P}-libao-thread.patch
# Fix bug #170108
epatch "${FILESDIR}"/${P}-depbuild.patch
+ # Fix bug #260247
+ epatch "${FILESDIR}"/${P}-makefile.dep.patch
# Remove hardcoded CFLAGS and LDFLAGS
sed -i \
@@ -54,6 +56,8 @@
use amd64 && multilib_toolchain_setup x86
use custom-cflags || strip-flags
+ append-flags -U_FORTIFY_SOURCE #257963
+
egamesconf \
$(use_enable ao libao) \
$(use_enable png libpng) \
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild
@ 2009-02-25 17:16 Timothy Redaelli (drizzt)
0 siblings, 0 replies; 10+ messages in thread
From: Timothy Redaelli (drizzt) @ 2009-02-25 17:16 UTC (permalink / raw
To: gentoo-commits
drizzt 09/02/25 17:16:56
Modified: ChangeLog zsnes-1.51-r2.ebuild
Log:
Ops
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.41 games-emulation/zsnes/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.40&r2=1.41
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog 25 Feb 2009 17:10:09 -0000 1.40
+++ ChangeLog 25 Feb 2009 17:16:56 -0000 1.41
@@ -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:
1.4 games-emulation/zsnes/zsnes-1.51-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?r1=1.3&r2=1.4
Index: zsnes-1.51-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- zsnes-1.51-r2.ebuild 25 Feb 2009 17:10:09 -0000 1.3
+++ zsnes-1.51-r2.ebuild 25 Feb 2009 17:16:56 -0000 1.4
@@ -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 @@
# 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 \
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild
@ 2009-03-31 13:23 Jeremy Olexa (darkside)
0 siblings, 0 replies; 10+ messages in thread
From: Jeremy Olexa (darkside) @ 2009-03-31 13:23 UTC (permalink / raw
To: gentoo-commits
darkside 09/03/31 13:23:07
Modified: ChangeLog zsnes-1.51-r2.ebuild
Log:
amd64 stable, bug 264211
(Portage version: 2.1.6.10/cvs/Linux x86_64)
Revision Changes Path
1.43 games-emulation/zsnes/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.42&r2=1.43
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog 28 Feb 2009 10:21:00 -0000 1.42
+++ ChangeLog 31 Mar 2009 13:23:07 -0000 1.43
@@ -1,6 +1,9 @@
# 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.42 2009/02/28 10:21:00 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.43 2009/03/31 13:23:07 darkside Exp $
+
+ 31 Mar 2009; Jeremy Olexa <darkside@gentoo.org> zsnes-1.51-r2.ebuild:
+ amd64 stable, bug 264211
28 Feb 2009; Markus Meier <maekke@gentoo.org> metadata.xml:
custom-cflags is a global USE-flag
1.5 games-emulation/zsnes/zsnes-1.51-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?r1=1.4&r2=1.5
Index: zsnes-1.51-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- zsnes-1.51-r2.ebuild 25 Feb 2009 17:16:56 -0000 1.4
+++ zsnes-1.51-r2.ebuild 31 Mar 2009 13:23:07 -0000 1.5
@@ -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.4 2009/02/25 17:16:56 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v 1.5 2009/03/31 13:23:07 darkside Exp $
inherit eutils autotools flag-o-matic toolchain-funcs multilib games
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
+KEYWORDS="-* amd64 ~x86 ~x86-fbsd"
IUSE="ao custom-cflags opengl png"
RDEPEND="media-libs/libsdl
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild
@ 2009-04-14 9:42 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2009-04-14 9:42 UTC (permalink / raw
To: gentoo-commits
armin76 09/04/14 09:42:56
Modified: ChangeLog zsnes-1.51-r2.ebuild
Log:
x86 stable wrt #264211
(Portage version: 2.1.6.7/cvs/Linux ia64)
Revision Changes Path
1.44 games-emulation/zsnes/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.43&r2=1.44
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog 31 Mar 2009 13:23:07 -0000 1.43
+++ ChangeLog 14 Apr 2009 09:42:56 -0000 1.44
@@ -1,6 +1,9 @@
# 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.43 2009/03/31 13:23:07 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.44 2009/04/14 09:42:56 armin76 Exp $
+
+ 14 Apr 2009; Raúl Porcel <armin76@gentoo.org> zsnes-1.51-r2.ebuild:
+ x86 stable wrt #264211
31 Mar 2009; Jeremy Olexa <darkside@gentoo.org> zsnes-1.51-r2.ebuild:
amd64 stable, bug 264211
1.6 games-emulation/zsnes/zsnes-1.51-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?r1=1.5&r2=1.6
Index: zsnes-1.51-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- zsnes-1.51-r2.ebuild 31 Mar 2009 13:23:07 -0000 1.5
+++ zsnes-1.51-r2.ebuild 14 Apr 2009 09:42:56 -0000 1.6
@@ -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.5 2009/03/31 13:23:07 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v 1.6 2009/04/14 09:42:56 armin76 Exp $
inherit eutils autotools flag-o-matic toolchain-funcs multilib games
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="-* amd64 ~x86 ~x86-fbsd"
+KEYWORDS="-* amd64 x86 ~x86-fbsd"
IUSE="ao custom-cflags opengl png"
RDEPEND="media-libs/libsdl
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild
@ 2010-01-03 11:52 Christian Faulhammer (fauli)
0 siblings, 0 replies; 10+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-01-03 11:52 UTC (permalink / raw
To: gentoo-commits
fauli 10/01/03 11:52:55
Modified: ChangeLog zsnes-1.51-r2.ebuild
Log:
Transfer Prefix keywords
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.46 games-emulation/zsnes/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.45&r2=1.46
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog 25 Oct 2009 20:19:57 -0000 1.45
+++ ChangeLog 3 Jan 2010 11:52:55 -0000 1.46
@@ -1,6 +1,9 @@
# ChangeLog for games-emulation/zsnes
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.45 2009/10/25 20:19:57 tove Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.46 2010/01/03 11:52:55 fauli Exp $
+
+ 03 Jan 2010; Christian Faulhammer <fauli@gentoo.org> zsnes-1.51-r2.ebuild:
+ Transfer Prefix keywords
25 Oct 2009; Torsten Veller <tove@gentoo.org> metadata.xml:
Remove drizzt from metadata.xml (#149111)
1.7 games-emulation/zsnes/zsnes-1.51-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?r1=1.6&r2=1.7
Index: zsnes-1.51-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- zsnes-1.51-r2.ebuild 14 Apr 2009 09:42:56 -0000 1.6
+++ zsnes-1.51-r2.ebuild 3 Jan 2010 11:52:55 -0000 1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 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.6 2009/04/14 09:42:56 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v 1.7 2010/01/03 11:52:55 fauli Exp $
inherit eutils autotools flag-o-matic toolchain-funcs multilib games
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="-* amd64 x86 ~x86-fbsd"
+KEYWORDS="-* amd64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
IUSE="ao custom-cflags opengl png"
RDEPEND="media-libs/libsdl
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild
@ 2011-09-14 8:45 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-09-14 8:45 UTC (permalink / raw
To: gentoo-commits
ssuominen 11/09/14 08:45:05
Modified: ChangeLog zsnes-1.51-r2.ebuild
Log:
Fix building with libpng15 wrt #378735 by Diego Elio Pettenò
(Portage version: 2.2.0_alpha55/cvs/Linux x86_64)
Revision Changes Path
1.47 games-emulation/zsnes/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.46&r2=1.47
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog 3 Jan 2010 11:52:55 -0000 1.46
+++ ChangeLog 14 Sep 2011 08:45:05 -0000 1.47
@@ -1,6 +1,10 @@
# ChangeLog for games-emulation/zsnes
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.46 2010/01/03 11:52:55 fauli Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.47 2011/09/14 08:45:05 ssuominen Exp $
+
+ 14 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> zsnes-1.51-r2.ebuild,
+ +files/zsnes-1.51-libpng15.patch:
+ Fix building with libpng15 wrt #378735 by Diego Elio Pettenò
03 Jan 2010; Christian Faulhammer <fauli@gentoo.org> zsnes-1.51-r2.ebuild:
Transfer Prefix keywords
1.8 games-emulation/zsnes/zsnes-1.51-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?r1=1.7&r2=1.8
Index: zsnes-1.51-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- zsnes-1.51-r2.ebuild 3 Jan 2010 11:52:55 -0000 1.7
+++ zsnes-1.51-r2.ebuild 14 Sep 2011 08:45:05 -0000 1.8
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 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.7 2010/01/03 11:52:55 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v 1.8 2011/09/14 08:45:05 ssuominen Exp $
inherit eutils autotools flag-o-matic toolchain-funcs multilib games
@@ -40,6 +40,8 @@
epatch "${FILESDIR}"/${P}-depbuild.patch
# Fix bug #260247
epatch "${FILESDIR}"/${P}-CC-quotes.patch
+ # Fix compability with libpng15 wrt #378735
+ epatch "${FILESDIR}"/${P}-libpng15.patch
# Remove hardcoded CFLAGS and LDFLAGS
sed -i \
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild
@ 2011-09-29 20:11 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 10+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2011-09-29 20:11 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 11/09/29 20:11:35
Modified: ChangeLog zsnes-1.51-r2.ebuild
Log:
fix building with newer zlib (bug #384473); add patch from rpmfusion (bug #257963)
(Portage version: 2.1.10.11/cvs/Linux i686)
Revision Changes Path
1.48 games-emulation/zsnes/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.47&r2=1.48
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog 14 Sep 2011 08:45:05 -0000 1.47
+++ ChangeLog 29 Sep 2011 20:11:35 -0000 1.48
@@ -1,6 +1,11 @@
# ChangeLog for games-emulation/zsnes
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.47 2011/09/14 08:45:05 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.48 2011/09/29 20:11:35 mr_bones_ Exp $
+
+ 29 Sep 2011; Michael Sterrett <mr_bones_@gentoo.org> zsnes-1.51-r2.ebuild,
+ +files/zsnes-1.51-buffer.patch:
+ fix building with newer zlib (bug #384473); add patch from rpmfusion (bug
+ #257963)
14 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> zsnes-1.51-r2.ebuild,
+files/zsnes-1.51-libpng15.patch:
1.9 games-emulation/zsnes/zsnes-1.51-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild?r1=1.8&r2=1.9
Index: zsnes-1.51-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- zsnes-1.51-r2.ebuild 14 Sep 2011 08:45:05 -0000 1.8
+++ zsnes-1.51-r2.ebuild 29 Sep 2011 20:11:35 -0000 1.9
@@ -1,7 +1,8 @@
# Copyright 1999-2011 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.8 2011/09/14 08:45:05 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v 1.9 2011/09/29 20:11:35 mr_bones_ Exp $
+EAPI=2
inherit eutils autotools flag-o-matic toolchain-funcs multilib games
DESCRIPTION="SNES (Super Nintendo) emulator that uses x86 assembly"
@@ -13,7 +14,7 @@
KEYWORDS="-* amd64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
IUSE="ao custom-cflags opengl png"
-RDEPEND="media-libs/libsdl
+RDEPEND="media-libs/libsdl[audio,video]
>=sys-libs/zlib-1.2.3-r1
amd64? ( >=app-emulation/emul-linux-x86-sdl-10.1 )
ao? ( media-libs/libao )
@@ -25,23 +26,25 @@
S=${WORKDIR}/${PN}_${PV//./_}/src
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
+src_prepare() {
# Fixing compilation without libpng installed
- epatch "${FILESDIR}"/${P}-libpng.patch
# Fix bug #186111
- epatch "${FILESDIR}"/${P}-archopt-july-23-update.patch
- epatch "${FILESDIR}"/${P}-gcc43.patch
# Fix bug #214697
- epatch "${FILESDIR}"/${P}-libao-thread.patch
# Fix bug #170108
- epatch "${FILESDIR}"/${P}-depbuild.patch
# Fix bug #260247
- epatch "${FILESDIR}"/${P}-CC-quotes.patch
# Fix compability with libpng15 wrt #378735
- epatch "${FILESDIR}"/${P}-libpng15.patch
+ # Fix buffer overwrite #257963
+ epatch \
+ "${FILESDIR}"/${P}-libpng.patch \
+ "${FILESDIR}"/${P}-archopt-july-23-update.patch \
+ "${FILESDIR}"/${P}-gcc43.patch \
+ "${FILESDIR}"/${P}-libao-thread.patch \
+ "${FILESDIR}"/${P}-depbuild.patch \
+ "${FILESDIR}"/${P}-CC-quotes.patch \
+ "${FILESDIR}"/${P}-libpng15.patch \
+ "${FILESDIR}"/${P}-buffer.patch
+
+ sed -i -e '67i#define OF(x) x' zip/zunzip.h || die
# Remove hardcoded CFLAGS and LDFLAGS
sed -i \
@@ -53,7 +56,7 @@
eautoreconf
}
-src_compile() {
+src_configure() {
tc-export CC
use amd64 && multilib_toolchain_setup x86
use custom-cflags || strip-flags
@@ -67,8 +70,10 @@
--disable-debug \
--disable-cpucheck \
--enable-release \
- force_arch=no \
- || die
+ force_arch=no
+}
+
+src_compile() {
emake makefile.dep || die "emake makefile.dep failed"
emake || die "emake failed"
}
@@ -76,8 +81,9 @@
src_install() {
dogamesbin zsnes || die "dogamesbin failed"
newman linux/zsnes.1 zsnes.6
- dodoc ../docs/{readme.1st,*.txt,README.LINUX}
- dodoc ../docs/readme.txt/*
+ dodoc \
+ ../docs/{readme.1st,authors.txt,srcinfo.txt,stdards.txt,support.txt,thanks.txt,todo.txt,README.LINUX} \
+ ../docs/readme.txt/*
dohtml -r ../docs/readme.htm/*
make_desktop_entry zsnes ZSNES
newicon icons/48x48x32.png ${PN}.png
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild
@ 2013-01-30 18:50 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 10+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2013-01-30 18:50 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 13/01/30 18:50:27
Modified: ChangeLog
Removed: zsnes-1.51-r2.ebuild
Log:
old
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.56 games-emulation/zsnes/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.55&r2=1.56
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog 23 Sep 2012 08:49:34 -0000 1.55
+++ ChangeLog 30 Jan 2013 18:50:27 -0000 1.56
@@ -1,6 +1,9 @@
# ChangeLog for games-emulation/zsnes
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.55 2012/09/23 08:49:34 phajdan.jr Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.56 2013/01/30 18:50:27 mr_bones_ Exp $
+
+ 30 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> -zsnes-1.51-r2.ebuild:
+ old
23 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> zsnes-1.51-r4.ebuild:
x86 stable wrt bug #432074
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2013-01-30 18:50 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-30 18:50 [gentoo-commits] gentoo-x86 commit in games-emulation/zsnes: ChangeLog zsnes-1.51-r2.ebuild Michael Sterrett (mr_bones_)
-- strict thread matches above, loose matches on Subject: below --
2011-09-29 20:11 Michael Sterrett (mr_bones_)
2011-09-14 8:45 Samuli Suominen (ssuominen)
2010-01-03 11:52 Christian Faulhammer (fauli)
2009-04-14 9:42 Raul Porcel (armin76)
2009-03-31 13:23 Jeremy Olexa (darkside)
2009-02-25 17:16 Timothy Redaelli (drizzt)
2009-02-25 17:10 Timothy Redaelli (drizzt)
2009-02-02 16:41 Timothy Redaelli (drizzt)
2008-05-09 19:14 Timothy Redaelli (drizzt)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox