blob: e7169001579632c6f594d44ac4e7e68c656461ec (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/pcsx2/pcsx2-0.8.1.ebuild,v 1.8 2007/04/06 18:53:44 nyhm Exp $
inherit eutils toolchain-funcs games
DESCRIPTION="Playstation2 emulator"
HOMEPAGE="http://www.pcsx2.net/"
SRC_URI="http://www.pcsx2.net/download/0.8release/${P}src.7z"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="sys-libs/zlib
=x11-libs/gtk+-1*
|| (
>=games-emulation/ps2emu-cddvdlinuz-0.3-r1
>=games-emulation/ps2emu-cdvdiso-0.3 )
>=games-emulation/ps2emu-gssoft-0.6.1
>=games-emulation/ps2emu-padxwin-0.5
>=games-emulation/ps2emu-spu2null-0.2.1
>=games-emulation/ps2emu-dev9null-0.1
>=games-emulation/ps2emu-usbnull-0.4"
DEPEND="${RDEPEND}
app-arch/p7zip"
S=${WORKDIR}/${P}src
src_unpack() {
7z x "${DISTDIR}/${P}src.7z" || die "unpack failed"
cd "${S}"
epatch "${FILESDIR}"/${P}-amd64.patch \
"${FILESDIR}/${P}"-gcc41.patch
sed -i \
-e '/^CC/d' \
-e "/^CPU/s:=.*:=$(tc-arch-kernel):" \
Linux/Makefile \
|| die "sed failed"
sed -i \
-e "/non_linear_quantizer_scale/s/^/extern /" \
IPU/Mpeg.h \
|| die "sed failed"
}
src_compile() {
emake -C Linux OPTIMIZE="${CFLAGS}" || die "emake failed"
}
src_install() {
newgamesbin Linux/pcsx2 pcsx2.bin || die "newgamesbin failed"
dogamesbin "${FILESDIR}/pcsx2" || die "dogamesbin failed"
sed -i \
-e "s:GAMES_BINDIR:${GAMES_BINDIR}:" \
-e "s:GAMES_LIBDIR:$(games_get_libdir):" \
"${D}/${GAMES_BINDIR}/pcsx2" \
|| die "sed failed"
dodoc Docs/*.txt
doicon "${FILESDIR}"/pcsx2.png
make_desktop_entry pcsx2 PCSX2 pcsx2.png
prepgamesdirs
}
|