blob: 8186bf569a97bf12f0f2c84044c26c371968b013 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64/mupen64-0.5-r4.ebuild,v 1.5 2009/09/08 07:59:52 tupone Exp $
inherit eutils multilib games
MY_P=${PN}_src-${PV}
DESCRIPTION="A Nintendo 64 (N64) emulator"
HOMEPAGE="http://mupen64.emulation64.com/"
SRC_URI="http://mupen64.emulation64.com/files/${PV}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 x86"
IUSE=""
RDEPEND="virtual/opengl
>=x11-libs/gtk+-2
media-libs/libsdl
media-libs/sdl-ttf
amd64? (
app-emulation/emul-linux-x86-gtklibs
>=app-emulation/emul-linux-x86-sdl-10.0
)"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/${MY_P}
pkg_setup() {
games_pkg_setup
has_multilib_profile && multilib_toolchain_setup x86
}
src_unpack() {
unpack ${A}
cd "${S}"
rm -f plugins/empty blight_input/SDL_ttf*
epatch \
"${FILESDIR}"/${P}-anisotropic.patch \
"${FILESDIR}"/${P}-gentoo3.patch \
"${FILESDIR}"/${PN}-glN64-ucode.patch \
"${FILESDIR}"/${PN}-glN64-noasmfix.patch \
"${FILESDIR}"/${P}-gcc42.patch \
"${FILESDIR}"/${P}-gcc43.patch
sed -i \
-e "s:#undef WITH_HOME:#define WITH_HOME \"$(games_get_libdir)/\":" \
-e "s:#undef SHARE:#define SHARE \"$(games_get_libdir)/${PN}/\":" \
config.h \
|| die "sed failed"
}
src_compile() {
local t
for t in \
mupen64 \
mupen64_nogui \
plugins/mupen64_input.so \
plugins/blight_input.so \
plugins/mupen64_hle_rsp_azimer.so \
plugins/dummyaudio.so \
plugins/mupen64_audio.so \
plugins/jttl_audio.so \
plugins/mupen64_soft_gfx.so \
plugins/glN64.so
do
emake ${t} || die "emake ${t} failed"
done
}
src_install() {
dogamesbin mupen64 mupen64_nogui || die "dogamesbin failed"
insinto "$(games_get_libdir)/${PN}"
doins -r mupen64.ini jttl_audio.conf lang roms plugins || die "doins failed"
dodoc *.txt doc/readme.pdf
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
ewarn "If you are upgrading from a previous version of mupen64,"
ewarn "backup your saved games then run rm -rf on your"
ewarn ".mupen64 directory. After launching the new version, copy"
ewarn "your saved games to their original place."
echo
}
|