diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-09 16:28:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-09 16:28:07 +0000 |
commit | 4449c749e4d0a531f4dffcd6bd11772e59ecbf81 (patch) | |
tree | 47ac23a46562d1736503b9b2447f81b34199c04e /games-emulation/ps2emu-cddvdlinuz | |
parent | New package - rename. (diff) | |
download | historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.tar.gz historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.tar.bz2 historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.zip |
welcome to games-emulation
Diffstat (limited to 'games-emulation/ps2emu-cddvdlinuz')
5 files changed, 61 insertions, 0 deletions
diff --git a/games-emulation/ps2emu-cddvdlinuz/ChangeLog b/games-emulation/ps2emu-cddvdlinuz/ChangeLog new file mode 100644 index 000000000000..0dc939fbc424 --- /dev/null +++ b/games-emulation/ps2emu-cddvdlinuz/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-emulation/ps2emu-cddvdlinuz +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/ps2emu-cddvdlinuz/ChangeLog,v 1.1 2003/09/09 16:26:50 vapier Exp $ + +*ps2emu-cddvdlinuz-0.3 (14 Aug 2003) + + 14 Aug 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/games-emulation/ps2emu-cddvdlinuz/Manifest b/games-emulation/ps2emu-cddvdlinuz/Manifest new file mode 100644 index 000000000000..9806e16fa93c --- /dev/null +++ b/games-emulation/ps2emu-cddvdlinuz/Manifest @@ -0,0 +1,4 @@ +MD5 ff9fe8eafc781375748f9b2a5e7204b5 files/0.3-makefile.patch 455 +MD5 d6c24c1b968339f45513edac0bd76c5f files/digest-ps2emu-cddvdlinuz-0.3 60 +MD5 dce79c65d32a60e559b6f5af879569f2 ChangeLog 377 +MD5 0b2db051214a5dd5b2ab321e52fceb13 ps2emu-cddvdlinuz-0.3.ebuild 804 diff --git a/games-emulation/ps2emu-cddvdlinuz/files/0.3-makefile.patch b/games-emulation/ps2emu-cddvdlinuz/files/0.3-makefile.patch new file mode 100644 index 000000000000..c7b5c30157a4 --- /dev/null +++ b/games-emulation/ps2emu-cddvdlinuz/files/0.3-makefile.patch @@ -0,0 +1,11 @@ +--- Src/Makefile.orig 2003-08-14 21:02:15.411249256 -0400 ++++ Src/Makefile 2003-08-14 21:02:22.793127040 -0400 +@@ -2,7 +2,7 @@ + VERSION = 0 + BUILD = 3 + PLUGIN = libCDVDlinuz-${VERSION}.${BUILD}.so +-CFLAGS+= -fPIC -Wall -O2 -fomit-frame-pointer -D__LINUX__ ++CFLAGS+= -fPIC -Wall $(OPTFLAGS) -D__LINUX__ + OBJECTS = CDVD.o interface.o support.o + LIBS = $(shell gtk-config --libs) + CFLAGS+= $(shell gtk-config --cflags) -DVERSION=${VERSION} -DBUILD=${BUILD} diff --git a/games-emulation/ps2emu-cddvdlinuz/files/digest-ps2emu-cddvdlinuz-0.3 b/games-emulation/ps2emu-cddvdlinuz/files/digest-ps2emu-cddvdlinuz-0.3 new file mode 100644 index 000000000000..3d95670ed018 --- /dev/null +++ b/games-emulation/ps2emu-cddvdlinuz/files/digest-ps2emu-cddvdlinuz-0.3 @@ -0,0 +1 @@ +MD5 cd9cf5e6cb9cb34470a0e1b68419e30c CDVDlinuz-0.3.gz 20048 diff --git a/games-emulation/ps2emu-cddvdlinuz/ps2emu-cddvdlinuz-0.3.ebuild b/games-emulation/ps2emu-cddvdlinuz/ps2emu-cddvdlinuz-0.3.ebuild new file mode 100644 index 000000000000..9022eb6872b1 --- /dev/null +++ b/games-emulation/ps2emu-cddvdlinuz/ps2emu-cddvdlinuz-0.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/ps2emu-cddvdlinuz/ps2emu-cddvdlinuz-0.3.ebuild,v 1.1 2003/09/09 16:26:50 vapier Exp $ + +inherit games + +DESCRIPTION="PSEmu2 CD/DVD plugin" +HOMEPAGE="http://www.pcsx2.net/" +SRC_URI="http://www.pcsx2.net/download/0.4release/CDVDlinuz-${PV}.gz" + +LICENSE="freedist" +SLOT="0" +KEYWORDS="x86" + +DEPEND="=x11-libs/gtk+-1*" + +S=${WORKDIR}/CDVDlinuz + +src_unpack() { + unpack ${A} + tar -xf CDVDlinuz-${PV} || die "unpacking tar" + cd ${S} + epatch ${FILESDIR}/${PV}-makefile.patch +} + +src_compile() { + cd Src + emake OPTFLAGS="${CFLAGS}" || die +} + +src_install() { + dodoc ReadMe.txt + cd Src + exeinto ${GAMES_LIBDIR}/ps2emu/plugins + doexe lib* + prepgamesdirs +} |