diff options
Diffstat (limited to 'app-emulation/pcsx2/pcsx2-0.41.ebuild')
-rw-r--r-- | app-emulation/pcsx2/pcsx2-0.41.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/app-emulation/pcsx2/pcsx2-0.41.ebuild b/app-emulation/pcsx2/pcsx2-0.41.ebuild new file mode 100644 index 000000000000..3644c1a9d64c --- /dev/null +++ b/app-emulation/pcsx2/pcsx2-0.41.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/pcsx2/pcsx2-0.41.ebuild,v 1.1 2003/08/15 01:26:15 vapier Exp $ + +inherit games eutils + +DESCRIPTION="Playstation2 emulator" +HOMEPAGE="http://www.pcsx2.net/" +SRC_URI="http://www.pcsx2.net/download/0.4release/Pcsx2Src-${PV}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +RDEPEND="virtual/x11 + =x11-libs/gtk+-1* + || ( + app-emulation/ps2emu-cddvdlinuz + app-emulation/ps2emu-cdvdiso + ) + app-emulation/ps2emu-gssoft + app-emulation/ps2emu-padxwin + app-emulation/ps2emu-spu2null" +DEPEND="${RDEPEND} + dev-lang/nasm" + +S=${WORKDIR}/Pcsx2Src + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${PV}-time-renames.patch +} + +src_compile() { + cd Linux + emake OPTIMIZE="${CFLAGS}" || die +} + +src_install() { + newgamesbin Linux/pcsx2 pcsx2.bin + dogamesbin ${FILESDIR}/pcsx2 + dodir ${GAMES_LIBDIR}/ps2emu/Langs + cp -r Intl/Langs/* ${D}/${GAMES_LIBDIR}/ps2emu/Langs/ + dodoc Docs/*.txt + prepgamesdirs +} |