diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-06-03 02:53:20 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-06-03 02:53:20 +0000 |
commit | 374b06953c1041eff535d1da3ac9d2e921382b98 (patch) | |
tree | 5eedba8c721b40f0363f342915e3ad78ec7ffbf2 /app-emulation/psemu-cdriso | |
parent | dependency fix (diff) | |
download | historical-374b06953c1041eff535d1da3ac9d2e921382b98.tar.gz historical-374b06953c1041eff535d1da3ac9d2e921382b98.tar.bz2 historical-374b06953c1041eff535d1da3ac9d2e921382b98.zip |
New package. Fixes #3266-#3274
Diffstat (limited to 'app-emulation/psemu-cdriso')
-rw-r--r-- | app-emulation/psemu-cdriso/ChangeLog | 13 | ||||
-rw-r--r-- | app-emulation/psemu-cdriso/files/digest-psemu-cdriso-1.2 | 1 | ||||
-rw-r--r-- | app-emulation/psemu-cdriso/psemu-cdriso-1.2.ebuild | 29 |
3 files changed, 43 insertions, 0 deletions
diff --git a/app-emulation/psemu-cdriso/ChangeLog b/app-emulation/psemu-cdriso/ChangeLog new file mode 100644 index 000000000000..6cca9de84135 --- /dev/null +++ b/app-emulation/psemu-cdriso/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for app-emulation/psemu-cdriso +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-emulation/psemu-cdriso/ChangeLog,v 1.1 2002/06/03 02:53:20 rphillips Exp $ + +*psemu-cdriso-1.2 (2 June 2002) + + 2 June 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/app-emulation/psemu-cdriso/files/digest-psemu-cdriso-1.2 b/app-emulation/psemu-cdriso/files/digest-psemu-cdriso-1.2 new file mode 100644 index 000000000000..e4ecf12bc605 --- /dev/null +++ b/app-emulation/psemu-cdriso/files/digest-psemu-cdriso-1.2 @@ -0,0 +1 @@ +MD5 ea93d2db91b67843315497b8845da267 cdriso-1.2.tgz 28759 diff --git a/app-emulation/psemu-cdriso/psemu-cdriso-1.2.ebuild b/app-emulation/psemu-cdriso/psemu-cdriso-1.2.ebuild new file mode 100644 index 000000000000..91c0b284f165 --- /dev/null +++ b/app-emulation/psemu-cdriso/psemu-cdriso-1.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# Author Per Wigren <wigren@home.se> +# $Header: /var/cvsroot/gentoo-x86/app-emulation/psemu-cdriso/psemu-cdriso-1.2.ebuild,v 1.1 2002/06/03 02:53:20 rphillips Exp $ + +DESCRIPTION="PSEmu plugin to read CD-images" +HOMEPAGE="http://www.pcsx.net" +LICENSE="GPL-2" +DEPEND="sys-libs/zlib + sys-apps/bzip2 + x11-libs/gtk+" + +SRC_URI="http://linux.pcsx.net/downloads/plugins/cdriso-${PV}.tgz" +S=${WORKDIR} + +src_compile() { + cd src + ( echo CFLAGS = ${CFLAGS} + sed 's/CFLAGS =/CFLAGS +=/' < Makefile ) >Makefile.gentoo + emake -f Makefile.gentoo +} + +src_install () { + insinto /usr/lib/psemu/plugins + doins src/libcdr* + chmod 755 ${D}/usr/lib/psemu/plugins/* + dodoc ReadMe.txt +} + |