diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-01-30 05:39:21 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-01-30 05:39:21 +0000 |
commit | 00ae6a2390903715ac501cc81a1965720c20d5c1 (patch) | |
tree | 28aad65afb16b9c9b7f850161fc5349e125b6ee5 /app-emulation/aranym | |
parent | Stable for HPPA (bug #452830). (diff) | |
download | gentoo-2-00ae6a2390903715ac501cc81a1965720c20d5c1.tar.gz gentoo-2-00ae6a2390903715ac501cc81a1965720c20d5c1.tar.bz2 gentoo-2-00ae6a2390903715ac501cc81a1965720c20d5c1.zip |
Bump
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-emulation/aranym')
-rw-r--r-- | app-emulation/aranym/ChangeLog | 10 | ||||
-rw-r--r-- | app-emulation/aranym/aranym-0.9.11.ebuild | 48 |
2 files changed, 55 insertions, 3 deletions
diff --git a/app-emulation/aranym/ChangeLog b/app-emulation/aranym/ChangeLog index c8c4ede385b1..3903b864f063 100644 --- a/app-emulation/aranym/ChangeLog +++ b/app-emulation/aranym/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/aranym -# 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 $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v 1.20 2013/01/30 05:39:21 patrick Exp $ + +*aranym-0.9.11 (30 Jan 2013) + + 30 Jan 2013; Patrick Lauer <patrick@gentoo.org> +aranym-0.9.11.ebuild: + Bump 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -aranym-0.9.9.ebuild: Remove old @@ -70,4 +75,3 @@ 11 Feb 2004; David Holm <dholm@gentoo.org> aranym-0.8.6_beta.ebuild, metadata.xml: Initial import of ARAnyM. - diff --git a/app-emulation/aranym/aranym-0.9.11.ebuild b/app-emulation/aranym/aranym-0.9.11.ebuild new file mode 100644 index 000000000000..345ba9ae9108 --- /dev/null +++ b/app-emulation/aranym/aranym-0.9.11.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/aranym-0.9.11.ebuild,v 1.1 2013/01/30 05:39:21 patrick Exp $ + +EAPI=5 + +inherit flag-o-matic eutils + +DESCRIPTION="Atari Running on Any Machine, a VM running Atari ST/TT/Falcon OS and TOS/GEM applications" +HOMEPAGE="http://aranym.sourceforge.net/" +SRC_URI="mirror://sourceforge/aranym/${P}.tar.gz + mirror://sourceforge/aranym/afros812.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="opengl" + +RDEPEND="media-libs/libsdl[X] + games-emulation/emutos + opengl? ( virtual/opengl )" +DEPEND="${RDEPEND} + app-arch/unzip" + +src_configure() { + filter-flags -mpowerpc-gfxopt + + local myconf="" + if [[ ${ARCH} == x86 ]]; then + myconf="${myconf} --enable-jit-compiler" + fi + + econf $(use_enable opengl) ${myconf} +} + +src_install() { + emake DESTDIR="${D}" INSTALL_PROGRAM="install" install || die "installation failed" + + insinto /usr/share/${PN} + doins -r "${WORKDIR}"/afros || die + + dodoc "${D}"/usr/share/doc/${PN}/* || die + rm -r "${D}"/usr/share/doc/${PN} || die +} + +pkg_postinst() { + elog "To run ARAnyM with AFROS type: aranym --config /usr/share/aranym/afros/config" +} |