diff options
Diffstat (limited to 'games-emulation/epsxe/epsxe-1.6.0-r3.ebuild')
-rw-r--r-- | games-emulation/epsxe/epsxe-1.6.0-r3.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/games-emulation/epsxe/epsxe-1.6.0-r3.ebuild b/games-emulation/epsxe/epsxe-1.6.0-r3.ebuild new file mode 100644 index 000000000000..6c887bd9edc2 --- /dev/null +++ b/games-emulation/epsxe/epsxe-1.6.0-r3.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# 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.1 2003/09/09 16:26:50 vapier 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 + app-emulation/psemu-peopsspu + || ( + opengl? ( app-emulation/psemu-gpupetemesagl ) + app-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 +} |