diff options
author | (no author) <(no author)@4d9a9b59-111c-4e0b-8f7a-7640551abb98> | 2009-03-16 07:55:01 +0000 |
---|---|---|
committer | (no author) <(no author)@4d9a9b59-111c-4e0b-8f7a-7640551abb98> | 2009-03-16 07:55:01 +0000 |
commit | f1e95daae05c57d935b00e611c624c5e75cd21ec (patch) | |
tree | 4065ab51d9e64882d9001a59ede7d9a4e372a4a6 /games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.7.ebuild |
uploading my overlay ), initial commit
git-svn-id: http://172.18.13.13/svn/sss_overlay@1 4d9a9b59-111c-4e0b-8f7a-7640551abb98
Diffstat (limited to 'games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.7.ebuild')
-rw-r--r-- | games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.7.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.7.ebuild b/games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.7.ebuild new file mode 100644 index 0000000..e0ad8c0 --- /dev/null +++ b/games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.7.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit games + +PCSX2="pcsx2-0.9.4" + +DESCRIPTION="PS2Emu ISO CDVD plugin" +HOMEPAGE="http://www.pcsx2.net/" +SRC_URI="mirror://sourceforge/pcsx2/${PCSX2}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-arch/bzip2 + sys-libs/zlib + >=x11-libs/gtk+-2" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PCSX2}/plugins/cdvd/CDVDiso/src/Linux" + +src_unpack() { + unpack ${A} + cd "${S}" + + sed -i \ + -e '/^CC =/d' \ + -e '/\bstrip\b/d' \ + -e 's/-g\b//g' \ + -e 's/CFLAGS =/CFLAGS +=/' \ + Makefile || die +} + +src_install() { + exeinto "`games_get_libdir`/ps2emu/plugins" + newexe libCDVDiso.so libCDVDiso.so.${PV} || die + exeinto "`games_get_libdir`/ps2emu/plugins/cfg" + doexe cfgCDVDiso || die + dodoc ../../ReadMe.txt || die + prepgamesdirs +} |