diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2009-08-30 11:05:39 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2009-08-30 11:05:39 +0000 |
commit | 32250caa9775ed7e060f8f2214a6bb3460412957 (patch) | |
tree | cd11b162dc5a0b8d1c62345f33aad9fc1f13dbbc /games-emulation | |
parent | Workaround for parallel compilation issues. (diff) | |
download | gentoo-2-32250caa9775ed7e060f8f2214a6bb3460412957.tar.gz gentoo-2-32250caa9775ed7e060f8f2214a6bb3460412957.tar.bz2 gentoo-2-32250caa9775ed7e060f8f2214a6bb3460412957.zip |
Add ~amd64 keyword
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/xe/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/xe/xe-2.16.2.ebuild | 12 |
2 files changed, 12 insertions, 5 deletions
diff --git a/games-emulation/xe/ChangeLog b/games-emulation/xe/ChangeLog index e6fcc917685b..34bffa24cacb 100644 --- a/games-emulation/xe/ChangeLog +++ b/games-emulation/xe/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/xe # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xe/ChangeLog,v 1.11 2009/07/14 06:29:20 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xe/ChangeLog,v 1.12 2009/08/30 11:05:39 nyhm Exp $ + + 30 Aug 2009; Tristan Heaven <nyhm@gentoo.org> xe-2.16.2.ebuild: + Add ~amd64 keyword *xe-2.16.2 (14 Jul 2009) diff --git a/games-emulation/xe/xe-2.16.2.ebuild b/games-emulation/xe/xe-2.16.2.ebuild index d972afb47a1f..b04f4df96db5 100644 --- a/games-emulation/xe/xe-2.16.2.ebuild +++ b/games-emulation/xe/xe-2.16.2.ebuild @@ -1,17 +1,18 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xe/xe-2.16.2.ebuild,v 1.1 2009/07/14 06:29:20 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xe/xe-2.16.2.ebuild,v 1.2 2009/08/30 11:05:39 nyhm Exp $ EAPI=2 inherit games DESCRIPTION="a multi system emulator for many console and handheld video game systems" HOMEPAGE="http://www.xe-emulator.com/" -SRC_URI="http://www.xe-emulator.com/files/${PN}-x86-32-bin.${PV}.tar.bz2" +SRC_URI="amd64? ( http://www.xe-emulator.com/files/${PN}-x86-64-bin.${PV}.tar.bz2 ) + x86? ( http://www.xe-emulator.com/files/${PN}-x86-32-bin.${PV}.tar.bz2 )" LICENSE="as-is" SLOT="0" -KEYWORDS="-* ~x86" +KEYWORDS="-* ~amd64 ~x86" IUSE="" RESTRICT="strip" @@ -24,7 +25,10 @@ RDEPEND="x11-libs/libXv DEPEND="${RDEPEND} dev-util/pkgconfig" -S=${WORKDIR}/${PN}-x86 +src_unpack() { + unpack ${A} + mv -v * ${P} || die +} src_prepare() { sed -i \ |