Gentoo Archives: gentoo-commits

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