summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Jezak <josejx@gentoo.org>2006-05-09 05:32:03 +0000
committerJoseph Jezak <josejx@gentoo.org>2006-05-09 05:32:03 +0000
commitfb7d31b500303549455a9ce2f2388be868252cfa (patch)
tree97dca09ec6f7a7e9be26e82817767586002ec977 /games-emulation/advancemame
parentStable x86; Its Xchat version .1! ducks (diff)
downloadgentoo-2-fb7d31b500303549455a9ce2f2388be868252cfa.tar.gz
gentoo-2-fb7d31b500303549455a9ce2f2388be868252cfa.tar.bz2
gentoo-2-fb7d31b500303549455a9ce2f2388be868252cfa.zip
Added fix for bug #78030.
(Portage version: 2.1_pre10-r2)
Diffstat (limited to 'games-emulation/advancemame')
-rw-r--r--games-emulation/advancemame/ChangeLog5
-rw-r--r--games-emulation/advancemame/advancemame-0.104.0.ebuild11
2 files changed, 12 insertions, 4 deletions
diff --git a/games-emulation/advancemame/ChangeLog b/games-emulation/advancemame/ChangeLog
index e2dbadfaca1c..b50f2260d2d3 100644
--- a/games-emulation/advancemame/ChangeLog
+++ b/games-emulation/advancemame/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-emulation/advancemame
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/advancemame/ChangeLog,v 1.37 2006/02/22 17:21:33 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/advancemame/ChangeLog,v 1.38 2006/05/09 05:32:03 josejx Exp $
+
+ 09 May 2006; Joseph Jezak <josejx@gentoo.org> advancemame-0.104.0.ebuild:
+ Added fix for bug #78030.
*advancemame-0.104.0 (22 Feb 2006)
diff --git a/games-emulation/advancemame/advancemame-0.104.0.ebuild b/games-emulation/advancemame/advancemame-0.104.0.ebuild
index 63bc93020581..b14776c260fb 100644
--- a/games-emulation/advancemame/advancemame-0.104.0.ebuild
+++ b/games-emulation/advancemame/advancemame-0.104.0.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/advancemame/advancemame-0.104.0.ebuild,v 1.1 2006/02/22 17:21:34 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/advancemame/advancemame-0.104.0.ebuild,v 1.2 2006/05/09 05:32:03 josejx Exp $
-inherit eutils games
+inherit eutils flag-o-matic games
DESCRIPTION="GNU/Linux port of the MAME emulator with GUI menu"
HOMEPAGE="http://advancemame.sourceforge.net/"
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/advancemame/${P}.tar.gz"
LICENSE="GPL-2 XMAME"
SLOT="0"
-KEYWORDS="~amd64 -ppc x86"
+KEYWORDS="~amd64 ~ppc x86"
IUSE="alsa expat fbcon oss sdl slang static svga truetype zlib"
RDEPEND="app-arch/unzip
@@ -40,6 +40,11 @@ src_unpack() {
}
src_compile() {
+ # Fix for bug #78030
+ if use ppc; then
+ append-ldflags "-Wl,--relax"
+ fi
+
PATH="${PATH}:${T}"
egamesconf \
$(use_enable alsa) \