blob: 86a9ecc2cdbbf914fc0dfb2ef8fda1bf9d69c8f4 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/epsxe/epsxe-1.6.0-r3.ebuild,v 1.10 2007/02/24 00:16:13 nyhm Exp $
inherit games
DESCRIPTION="ePSXe PlayStation Emulator"
HOMEPAGE="http://www.epsxe.com/"
SRC_URI="http://www.epsxe.com/files/epsxe${PV//.}lin.zip"
LICENSE="freedist"
SLOT="0"
KEYWORDS="-* x86"
IUSE="opengl"
RESTRICT="strip"
RDEPEND="=x11-libs/gtk+-1.2*"
DEPEND="${RDEPEND}
app-arch/unzip"
RDEPEND="${RDEPEND}
x11-misc/imake
games-emulation/psemu-peopsspu
opengl? ( games-emulation/psemu-gpupetemesagl )
!opengl? ( games-emulation/psemu-peopssoftgpu )"
S=${WORKDIR}
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
dogamesbin "${FILESDIR}"/epsxe
sed -i \
-e "s:GAMES_PREFIX_OPT:${GAMES_PREFIX_OPT}:" \
-e "s:GAMES_LIBDIR:${GAMES_LIBDIR}:" \
"${D}${GAMES_BINDIR}"/epsxe \
|| die "sed failed"
exeinto "${dir}"
doexe epsxe || die "doexe failed"
insinto "${dir}"
doins keycodes.lst || die "doins failed"
insinto "${GAMES_LIBDIR}"/psemu/cheats
doins cheats/* || die "doins failed"
dodoc docs/*
prepgamesdirs
}
|