Gentoo Archives: gentoo-commits

From: "Mikle Kolyada (zlogene)" <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/aranym: aranym-0.9.16.ebuild ChangeLog
Date: Sat, 05 Jul 2014 13:49:33
Message-Id: 20140705134929.DC3462004E@flycatcher.gentoo.org
1 zlogene 14/07/05 13:49:29
2
3 Modified: ChangeLog
4 Added: aranym-0.9.16.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
9
10 Revision Changes Path
11 1.24 app-emulation/aranym/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/ChangeLog?rev=1.24&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/ChangeLog?rev=1.24&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/ChangeLog?r1=1.23&r2=1.24
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v
20 retrieving revision 1.23
21 retrieving revision 1.24
22 diff -u -r1.23 -r1.24
23 --- ChangeLog 25 Jan 2014 01:38:27 -0000 1.23
24 +++ ChangeLog 5 Jul 2014 13:49:29 -0000 1.24
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-emulation/aranym
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v 1.23 2014/01/25 01:38:27 creffett Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/ChangeLog,v 1.24 2014/07/05 13:49:29 zlogene Exp $
30 +
31 +*aranym-0.9.16 (05 Jul 2014)
32 +
33 + 05 Jul 2014; Mikle Kolyada <zlogene@g.o> +aranym-0.9.16.ebuild:
34 + Version bump
35
36 25 Jan 2014; Chris Reffett <creffett@g.o> -aranym-0.9.10.ebuild,
37 -aranym-0.9.11.ebuild, aranym-0.9.14.ebuild:
38
39
40
41 1.1 app-emulation/aranym/aranym-0.9.16.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/aranym-0.9.16.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/aranym/aranym-0.9.16.ebuild?rev=1.1&content-type=text/plain
45
46 Index: aranym-0.9.16.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.16.ebuild,v 1.1 2014/07/05 13:49:29 zlogene Exp $
51
52 EAPI=5
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/-/_}.orig.tar.gz
59 mirror://sourceforge/aranym/afros812.zip"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE="+fullmmu +lilo opengl usbhost X"
65
66 RDEPEND="games-emulation/emutos
67 media-libs/libsdl
68 opengl? ( virtual/opengl )
69 X? ( media-libs/libsdl[X] )"
70 DEPEND="${RDEPEND}
71 app-arch/unzip"
72
73 src_configure() {
74 filter-flags -mpowerpc-gfxopt
75
76 local myconf=""
77 if [[ ${ARCH} == x86 ]]; then
78 myconf="${myconf} --enable-jit-compiler"
79 fi
80
81 if ! use X; then
82 myconf="${myconf} --disable-nfjpeg --disable-nfclipbrd"
83 fi
84
85 econf \
86 $(use_enable X gui) \
87 $(use_enable opengl) \
88 $(use_enable fullmmu) \
89 $(use_enable lilo) \
90 $(use_enable usbhost) \
91 ${myconf}
92 }
93
94 src_install() {
95 emake DESTDIR="${D}" INSTALL_PROGRAM="install" install
96
97 insinto /usr/share/${PN}
98 doins -r "${WORKDIR}"/afros
99
100 dodoc "${D}"/usr/share/doc/${PN}/*
101 rm -r "${D}"/usr/share/doc/${PN} || die
102 }
103
104 pkg_postinst() {
105 elog "To run ARAnyM with AFROS type: aranym --config /usr/share/aranym/afros/config"
106 }