diff options
author | Simon Stelling <blubb@gentoo.org> | 2005-12-26 16:35:53 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2005-12-26 16:35:53 +0000 |
commit | e12bba0672ce7d0b3fc8633900762d1fdc15a650 (patch) | |
tree | 343d32a444b318c64560c6f1dd28e8edc66e2a20 /games-emulation/snes9x | |
parent | Stable on alpha. (diff) | |
download | gentoo-2-e12bba0672ce7d0b3fc8633900762d1fdc15a650.tar.gz gentoo-2-e12bba0672ce7d0b3fc8633900762d1fdc15a650.tar.bz2 gentoo-2-e12bba0672ce7d0b3fc8633900762d1fdc15a650.zip |
fix bug 103775
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'games-emulation/snes9x')
-rw-r--r-- | games-emulation/snes9x/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/snes9x/snes9x-1.43-r1.ebuild | 14 |
2 files changed, 10 insertions, 9 deletions
diff --git a/games-emulation/snes9x/ChangeLog b/games-emulation/snes9x/ChangeLog index 22912a3fa4af..a459846612a9 100644 --- a/games-emulation/snes9x/ChangeLog +++ b/games-emulation/snes9x/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/snes9x # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/ChangeLog,v 1.19 2005/08/28 21:17:10 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/ChangeLog,v 1.20 2005/12/26 16:35:53 blubb Exp $ + + 26 Dec 2005; Simon Stelling <blubb@gentoo.org> snes9x-1.43-r1.ebuild: + fix bug 103775 28 Aug 2005; Mike Frysinger <vapier@gentoo.org> +files/snes9x-1.43-porting.patch, snes9x-1.43-r1.ebuild: diff --git a/games-emulation/snes9x/snes9x-1.43-r1.ebuild b/games-emulation/snes9x/snes9x-1.43-r1.ebuild index 7c81c1e1cee5..911e3ba1ccf5 100644 --- a/games-emulation/snes9x/snes9x-1.43-r1.ebuild +++ b/games-emulation/snes9x/snes9x-1.43-r1.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/snes9x-1.43-r1.ebuild,v 1.2 2005/08/28 21:17:10 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/snes9x-1.43-r1.ebuild,v 1.3 2005/12/26 16:35:53 blubb Exp $ # 3dfx support (glide) is disabled because it requires # glide-v2 while we only provide glide-v3 in portage # http://bugs.gentoo.org/show_bug.cgi?id=93097 -inherit eutils games flag-o-matic +inherit eutils games flag-o-matic multilib DESCRIPTION="Super Nintendo Entertainment System (SNES) emulator" HOMEPAGE="http://www.snes9x.com/" @@ -27,6 +27,10 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${P}-src +pkg_setup() { + use amd64 && [[ -z ${NATIVE_AMD64_BUILD_PLZ} ]] && has_multilib_profile && ABI=x86 +} + src_unpack() { unpack ${A} cd "${S}"/snes9x @@ -44,12 +48,6 @@ src_unpack() { } src_compile() { - if use amd64 && [[ -z ${NATIVE_AMD64_BUILD_PLZ} ]] ; then - export ABI=x86 - append-flags -m32 - append-ldflags -m32 - fi - local vidconf= local target= local vid= |