blob: 0c8be5b631c8b6077851410dfbb1baf82b859285 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/virtualjaguar/virtualjaguar-1.0.7.ebuild,v 1.7 2010/10/13 17:55:20 mr_bones_ Exp $
EAPI=2
inherit eutils games
DESCRIPTION="an Atari Jaguar emulator"
HOMEPAGE="http://www.icculus.org/virtualjaguar/"
SRC_URI="http://www.icculus.org/virtualjaguar/tarballs/${P}-src.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND="virtual/opengl
media-libs/libsdl[audio,joystick,opengl,video]"
S=${WORKDIR}/${P}-src
src_prepare() {
mkdir obj || die
edos2unix src/sdlemu_config.cpp
epatch \
"${FILESDIR}"/${PV}-cdintf_linux.patch \
"${FILESDIR}"/${P}-gcc43.patch \
"${FILESDIR}"/${P}-makefile.patch \
"${FILESDIR}"/${P}-array.patch
sed -e "s:GENTOODIR:${GAMES_BINDIR}:" \
"${FILESDIR}/virtualjaguar" > "${T}/virtualjaguar" || die
}
src_compile() {
export SYSTYPE=__GCCUNIX__ \
GLLIB=-lGL \
SDLLIBTYPE=--libs
emake obj/m68kops.h || die
emake LDFLAGS="${LDFLAGS}" || die "emake failed"
}
src_install() {
dogamesbin vj "${T}/virtualjaguar" || die "dogamebin failed"
dodoc docs/{README,TODO,WHATSNEW}
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "Please run ${PN} to create the necessary directories"
elog "in your home directory. After that you may place ROM files"
elog "in ~/.vj/ROMs and they will be detected when you run virtualjaguar."
elog "You may then select which ROM to run from inside the emulator."
elog
elog "If you have previously run a version of ${PV} please note that"
elog "the location of the ROMs has changed."
}
|