Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/aranym: aranym-0.9.11.ebuild ChangeLog
Date: Wed, 30 Jan 2013 05:39:24
Message-Id: 20130130053921.721702171D@flycatcher.gentoo.org
1 patrick 13/01/30 05:39:21
2
3 Modified: ChangeLog
4 Added: aranym-0.9.11.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.20 app-emulation/aranym/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 10 May 2012 14:55:36 -0000 1.19
24 +++ ChangeLog 30 Jan 2013 05:39:21 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-emulation/aranym
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v 1.19 2012/05/10 14:55:36 ago Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v 1.20 2013/01/30 05:39:21 patrick Exp $
31 +
32 +*aranym-0.9.11 (30 Jan 2013)
33 +
34 + 30 Jan 2013; Patrick Lauer <patrick@g.o> +aranym-0.9.11.ebuild:
35 + Bump
36
37 10 May 2012; Agostino Sarubbo <ago@g.o> -aranym-0.9.9.ebuild:
38 Remove old
39 @@ -70,4 +75,3 @@
40 11 Feb 2004; David Holm <dholm@g.o> aranym-0.8.6_beta.ebuild,
41 metadata.xml:
42 Initial import of ARAnyM.
43 -
44
45
46
47 1.1 app-emulation/aranym/aranym-0.9.11.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/aranym-0.9.11.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/aranym-0.9.11.ebuild?rev=1.1&content-type=text/plain
51
52 Index: aranym-0.9.11.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/aranym-0.9.11.ebuild,v 1.1 2013/01/30 05:39:21 patrick Exp $
57
58 EAPI=5
59
60 inherit flag-o-matic eutils
61
62 DESCRIPTION="Atari Running on Any Machine, a VM running Atari ST/TT/Falcon OS and TOS/GEM applications"
63 HOMEPAGE="http://aranym.sourceforge.net/"
64 SRC_URI="mirror://sourceforge/aranym/${P}.tar.gz
65 mirror://sourceforge/aranym/afros812.zip"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ppc ~x86"
70 IUSE="opengl"
71
72 RDEPEND="media-libs/libsdl[X]
73 games-emulation/emutos
74 opengl? ( virtual/opengl )"
75 DEPEND="${RDEPEND}
76 app-arch/unzip"
77
78 src_configure() {
79 filter-flags -mpowerpc-gfxopt
80
81 local myconf=""
82 if [[ ${ARCH} == x86 ]]; then
83 myconf="${myconf} --enable-jit-compiler"
84 fi
85
86 econf $(use_enable opengl) ${myconf}
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" INSTALL_PROGRAM="install" install || die "installation failed"
91
92 insinto /usr/share/${PN}
93 doins -r "${WORKDIR}"/afros || die
94
95 dodoc "${D}"/usr/share/doc/${PN}/* || die
96 rm -r "${D}"/usr/share/doc/${PN} || die
97 }
98
99 pkg_postinst() {
100 elog "To run ARAnyM with AFROS type: aranym --config /usr/share/aranym/afros/config"
101 }