diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2006-05-03 18:07:22 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2006-05-03 18:07:22 +0000 |
commit | 2cce9b6697b84854b4848ef63e139deb13c19f22 (patch) | |
tree | f10aaa7595ea2654b73c7dcb2c41353807c95fe6 /games-emulation/ps2emu-padxwin | |
parent | version bump. bug #108755. (diff) | |
download | gentoo-2-2cce9b6697b84854b4848ef63e139deb13c19f22.tar.gz gentoo-2-2cce9b6697b84854b4848ef63e139deb13c19f22.tar.bz2 gentoo-2-2cce9b6697b84854b4848ef63e139deb13c19f22.zip |
Fixing build with gcc-4.1
(Portage version: 2.1_pre10-r2)
Diffstat (limited to 'games-emulation/ps2emu-padxwin')
4 files changed, 23 insertions, 5 deletions
diff --git a/games-emulation/ps2emu-padxwin/ChangeLog b/games-emulation/ps2emu-padxwin/ChangeLog index 4afbd60491ae..0efc4c80690a 100644 --- a/games-emulation/ps2emu-padxwin/ChangeLog +++ b/games-emulation/ps2emu-padxwin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/ps2emu-padxwin -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/ps2emu-padxwin/ChangeLog,v 1.6 2005/08/07 07:23:45 vapier Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/ps2emu-padxwin/ChangeLog,v 1.7 2006/05/03 18:07:22 tupone Exp $ + + 03 May 2006; <Tupone@gentoo.org> +files/ps2emu-padxwin-0.9-gcc41.patch, + ps2emu-padxwin-0.9.ebuild: + Fix for gcc-4.1 07 Aug 2005; Mike Frysinger <vapier@gentoo.org> +ps2emu-padxwin-0.9.ebuild: diff --git a/games-emulation/ps2emu-padxwin/files/digest-ps2emu-padxwin-0.9 b/games-emulation/ps2emu-padxwin/files/digest-ps2emu-padxwin-0.9 index c1c458314af8..d30adf8a2d03 100644 --- a/games-emulation/ps2emu-padxwin/files/digest-ps2emu-padxwin-0.9 +++ b/games-emulation/ps2emu-padxwin/files/digest-ps2emu-padxwin-0.9 @@ -1 +1,3 @@ MD5 93c08f62eb877d10a9468472a8f79784 PADwin09.rar 506891 +RMD160 9c0cb0ea4ba5e2f60cb8f9296d2cd416cf722279 PADwin09.rar 506891 +SHA256 b58c1a993cc0ebbe4f5447420cbd20d81d4d97c5a9e672da11602f503969912d PADwin09.rar 506891 diff --git a/games-emulation/ps2emu-padxwin/files/ps2emu-padxwin-0.9-gcc41.patch b/games-emulation/ps2emu-padxwin/files/ps2emu-padxwin-0.9-gcc41.patch new file mode 100644 index 000000000000..81ffceaf1dc9 --- /dev/null +++ b/games-emulation/ps2emu-padxwin/files/ps2emu-padxwin-0.9-gcc41.patch @@ -0,0 +1,11 @@ +--- Src/PAD.h.old 2006-05-03 19:59:16.000000000 +0200 ++++ Src/PAD.h 2006-05-03 20:01:01.000000000 +0200 +@@ -87,8 +87,6 @@ + extern u32 pads;
+
+ int POV(u32 direction, u32 angle);
+-s32 _PADopen(void *pDsp);
+-void _PADclose();
+ void _KeyPressNE(u32 key);
+ void _KeyPress(u32 key);
+ void _KeyReleaseNE(u32 key);
diff --git a/games-emulation/ps2emu-padxwin/ps2emu-padxwin-0.9.ebuild b/games-emulation/ps2emu-padxwin/ps2emu-padxwin-0.9.ebuild index 37a045c9d921..faa6abf0cf9e 100644 --- a/games-emulation/ps2emu-padxwin/ps2emu-padxwin-0.9.ebuild +++ b/games-emulation/ps2emu-padxwin/ps2emu-padxwin-0.9.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/ps2emu-padxwin/ps2emu-padxwin-0.9.ebuild,v 1.3 2005/08/07 07:48:32 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/ps2emu-padxwin/ps2emu-padxwin-0.9.ebuild,v 1.4 2006/05/03 18:07:22 tupone Exp $ -inherit games +inherit eutils games DESCRIPTION="PSEmu2 PAD plugin" HOMEPAGE="http://www.pcsx2.net/" @@ -23,6 +23,7 @@ src_unpack() { unrar x -idq "${DISTDIR}"/${A} || die cd "${S}" sed -i 's:-O2 -fomit-frame-pointer:$(OPTFLAGS):' Src/Makefile || die + epatch "${FILESDIR}/${P}"-gcc41.patch } src_compile() { |