diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 14:58:20 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 14:58:20 +0000 |
commit | 11388938883e084384725a041b6040d42a7ccb45 (patch) | |
tree | 213add47a1fc46cab53034d2acd524584408dd79 /app-emulation/aranym | |
parent | Remove old (diff) | |
download | historical-11388938883e084384725a041b6040d42a7ccb45.tar.gz historical-11388938883e084384725a041b6040d42a7ccb45.tar.bz2 historical-11388938883e084384725a041b6040d42a7ccb45.zip |
Remove old
Package-Manager: portage-2.1.10.49/cvs/Linux x86_64
Diffstat (limited to 'app-emulation/aranym')
-rw-r--r-- | app-emulation/aranym/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/aranym/aranym-0.9.9.ebuild | 58 |
2 files changed, 5 insertions, 60 deletions
diff --git a/app-emulation/aranym/ChangeLog b/app-emulation/aranym/ChangeLog index d8f4626d301c..c8c4ede385b1 100644 --- a/app-emulation/aranym/ChangeLog +++ b/app-emulation/aranym/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/aranym -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v 1.18 2010/10/15 00:07:28 xmw Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v 1.19 2012/05/10 14:55:36 ago Exp $ + + 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -aranym-0.9.9.ebuild: + Remove old 15 Oct 2010; Michael Weber <xmw@gentoo.org> -files/aranym-0.9.0_beta2-fix.patch: diff --git a/app-emulation/aranym/aranym-0.9.9.ebuild b/app-emulation/aranym/aranym-0.9.9.ebuild deleted file mode 100644 index 22d7249a2520..000000000000 --- a/app-emulation/aranym/aranym-0.9.9.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/aranym-0.9.9.ebuild,v 1.1 2010/01/08 21:43:58 patrick Exp $ - -inherit flag-o-matic eutils - -MY_PV="${PV/_/}" -AFROS="afros812.zip" -S="${WORKDIR}/${PN}-${MY_PV}" -DESCRIPTION="Atari Running on Any Machine, is a virtual machine software for running Atari ST/TT/Falcon operating systems and TOS/GEM applications" -HOMEPAGE="http://aranym.sourceforge.net/" -SRC_URI="mirror://sourceforge/aranym/${PN}-${MY_PV}.tar.gz - mirror://sourceforge/aranym/${AFROS}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="opengl" - -RDEPEND="media-libs/libsdl - games-emulation/emutos - opengl? ( virtual/opengl )" -DEPEND="${RDEPEND} - app-arch/unzip" - -src_unpack() { - unpack ${PN}-${MY_PV}.tar.gz - cd "${S}" -} - -src_compile() { - filter-flags -mpowerpc-gfxopt - - use opengl && myconf="--enable-opengl" - if [[ ${ARCH} == x86 ]]; then - myconf="${myconf} --enable-jit-compiler" - fi - - econf ${myconf} || die "configure failed" - emake || die "failed during compilation" -} - -src_install() { - emake DESTDIR="${D}" INSTALL_PROGRAM="install" install || die "installation failed" - - dosym /usr/games/lib/etos512k.img /usr/share/aranym - - cd "${D}"/usr/share/aranym - unzip "${DISTDIR}/${AFROS}" - - find . -type f -perm -o+w -print0 | xargs -0 fperms o-w - - sed -i -e "s|tmp|usr/share/aranym|g" "${D}"/usr/share/aranym/afros/config -} - -pkg_postinst() { - elog "To run ARAnyM with AFROS type: aranym --config /usr/share/aranym/afros/config" -} |