blob: ff90cbf276ec40f50dbfeccc2e380d12c2b15363 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/epsxe/epsxe-1.5.2-r1.ebuild,v 1.5 2004/06/24 22:26:08 agriffis Exp $
inherit games
DESCRIPTION="ePSXe Playstation Emulator"
HOMEPAGE="http://www.epsxe.com/"
SRC_URI="http://download.epsxe.com/files/epsxe${PV//.}lin.zip"
LICENSE="freedist"
SLOT="0"
KEYWORDS="-* x86"
IUSE="opengl"
RESTRICT="nostrip" # For some strange reason, strip truncates the whole file
DEPEND="app-arch/unzip"
RDEPEND=">=dev-libs/glib-1.2
=x11-libs/gtk+-1.2*
=sys-libs/ncurses-5*
=sys-libs/zlib-1*
net-misc/wget
games-emulation/psemu-peopsspu
|| (
opengl? ( games-emulation/psemu-gpupetemesagl )
games-emulation/psemu-peopssoftgpu
)"
S=${WORKDIR}
src_install() {
dogamesbin ${FILESDIR}/epsxe
exeinto ${GAMES_PREFIX_OPT}/${PN}
doexe epsxe
insinto ${GAMES_PREFIX_OPT}/${PN}
doins keycodes.lst
insinto ${GAMES_LIBDIR}/psemu/cheats
doins cheats/*
dodoc docs/*
prepgamesdirs
}
|