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 | ae044aeba549da343d278a26bb72bac844e5a5e4 (patch) | |
tree | b16ea879113ef2bd09bb78bb00e8338b088d3afb /games-emulation/psemu-spunull | |
parent | New package - rename. (diff) | |
download | gentoo-2-ae044aeba549da343d278a26bb72bac844e5a5e4.tar.gz gentoo-2-ae044aeba549da343d278a26bb72bac844e5a5e4.tar.bz2 gentoo-2-ae044aeba549da343d278a26bb72bac844e5a5e4.zip |
welcome to games-emulation
Diffstat (limited to 'games-emulation/psemu-spunull')
5 files changed, 57 insertions, 0 deletions
diff --git a/games-emulation/psemu-spunull/ChangeLog b/games-emulation/psemu-spunull/ChangeLog new file mode 100644 index 000000000000..20b1beea0d71 --- /dev/null +++ b/games-emulation/psemu-spunull/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-emulation/psemu-spunull +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-spunull/ChangeLog,v 1.1 2003/09/09 16:26:50 vapier Exp $ + +*psemu-spunull-1.0 (14 Aug 2003) + + 14 Aug 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/games-emulation/psemu-spunull/Manifest b/games-emulation/psemu-spunull/Manifest new file mode 100644 index 000000000000..682ecef9facd --- /dev/null +++ b/games-emulation/psemu-spunull/Manifest @@ -0,0 +1,4 @@ +MD5 b3e8bd7b9d019a72ff22cdc7bc28f4c5 files/1.0-makefile-cflags.patch 292 +MD5 c54d4f4dcc5ab8d555aa22a952fcedcd files/digest-psemu-spunull-1.0 58 +MD5 ddc459514a5895329b165295bb617244 ChangeLog 365 +MD5 2bf8f16edc261666ad3ac69f29601c62 psemu-spunull-1.0.ebuild 734 diff --git a/games-emulation/psemu-spunull/files/1.0-makefile-cflags.patch b/games-emulation/psemu-spunull/files/1.0-makefile-cflags.patch new file mode 100644 index 000000000000..0abfdb3e74cf --- /dev/null +++ b/games-emulation/psemu-spunull/files/1.0-makefile-cflags.patch @@ -0,0 +1,11 @@ +--- src/Makefile.orig 2003-08-14 01:41:28.679161896 -0400 ++++ src/Makefile 2003-08-14 01:41:38.590655120 -0400 +@@ -1,7 +1,7 @@ + + VERSION = 1.0 + PLUGIN = libspunull-${VERSION}.so +-CFLAGS+= -fPIC -Wall -O2 -fomit-frame-pointer ++CFLAGS+= -fPIC -Wall $(OPTFLAGS) + OBJECTS = spu.o + + all: plugin diff --git a/games-emulation/psemu-spunull/files/digest-psemu-spunull-1.0 b/games-emulation/psemu-spunull/files/digest-psemu-spunull-1.0 new file mode 100644 index 000000000000..d3c2a483bdf8 --- /dev/null +++ b/games-emulation/psemu-spunull/files/digest-psemu-spunull-1.0 @@ -0,0 +1 @@ +MD5 da55fd85d3da5e5f9507449fe955e21b spunull-1.0.tgz 7056 diff --git a/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild b/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild new file mode 100644 index 000000000000..d208cabf42d5 --- /dev/null +++ b/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild,v 1.1 2003/09/09 16:26:50 vapier Exp $ + +inherit games eutils + +DESCRIPTION="PSEmu plugin to use a null sound driver" +HOMEPAGE="http://www.pcsx.net/" +SRC_URI="http://linuzappz.pcsx.net/downloads/spunull-${PV}.tgz" + +LICENSE="freedist" +SLOT="0" +KEYWORDS="x86" + +S=${WORKDIR} + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${PV}-makefile-cflags.patch +} + +src_compile() { + cd src + emake OPTFLAGS="${CFLAGS}" || die +} + +src_install() { + dodoc ReadMe.txt + cd src + exeinto ${GAMES_LIBDIR}/psemu/plugins + doexe libspunull-* + prepgamesdirs +} |