blob: aa502a3bb1a734bdf4184cc9c061b207aa6f6ddf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/aranym/aranym-0.9.0_beta2.ebuild,v 1.3 2005/07/20 14:14:04 dholm Exp $
inherit flag-o-matic eutils
MY_PV="0.9.0beta2"
AFROS="afros-200502026.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="~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}
epatch ${FILESDIR}/${P}-fix.patch
}
src_compile() {
filter-flags -mpowerpc-gfxopt
use opengl && myconf="--enable-opengl"
if [ "${ARCH}" = "x86" ]; then
myconf="${myconf} --enable-jit-compiler"
fi
cd ${S}/src/Unix
econf ${myconf} || die "configure failed"
emake dep || die "failed while building dependencies"
emake || die "failed during compilation"
}
src_install() {
cd ${S}/src/Unix
emake DESTDIR=${D} install || die "installation failed"
dosym /usr/games/lib/etos512k.img /usr/share/aranym
cd ${D}/usr/share/aranym
unzip ${DISTDIR}/${AFROS}
sed -i -e "s|tmp|usr/share/aranym|g" ${D}/usr/share/aranym/afros/config
}
pkg_postinst() {
einfo "To run ARAnyM with AFROS type: aranym --config /usr/share/aranym/afros/config"
}
|