diff options
author | 2002-06-03 02:53:20 +0000 | |
---|---|---|
committer | 2002-06-03 02:53:20 +0000 | |
commit | 374b06953c1041eff535d1da3ac9d2e921382b98 (patch) | |
tree | 5eedba8c721b40f0363f342915e3ad78ec7ffbf2 /app-emulation/psemu-padjoy | |
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-padjoy')
-rw-r--r-- | app-emulation/psemu-padjoy/ChangeLog | 13 | ||||
-rw-r--r-- | app-emulation/psemu-padjoy/files/digest-psemu-padjoy-0.61 | 1 | ||||
-rw-r--r-- | app-emulation/psemu-padjoy/psemu-padjoy-0.61.ebuild | 26 |
3 files changed, 40 insertions, 0 deletions
diff --git a/app-emulation/psemu-padjoy/ChangeLog b/app-emulation/psemu-padjoy/ChangeLog new file mode 100644 index 000000000000..39784bdcc31b --- /dev/null +++ b/app-emulation/psemu-padjoy/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for app-emulation/psemu-padjoy +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-emulation/psemu-padjoy/ChangeLog,v 1.1 2002/06/03 02:53:20 rphillips Exp $ + +*psemu-padjoy-0.61 (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-padjoy/files/digest-psemu-padjoy-0.61 b/app-emulation/psemu-padjoy/files/digest-psemu-padjoy-0.61 new file mode 100644 index 000000000000..46d8255325a9 --- /dev/null +++ b/app-emulation/psemu-padjoy/files/digest-psemu-padjoy-0.61 @@ -0,0 +1 @@ +MD5 7c3f21846fb34abd8e284c36adcd4b5c padJoy061.tgz 36857 diff --git a/app-emulation/psemu-padjoy/psemu-padjoy-0.61.ebuild b/app-emulation/psemu-padjoy/psemu-padjoy-0.61.ebuild new file mode 100644 index 000000000000..cf4d09243058 --- /dev/null +++ b/app-emulation/psemu-padjoy/psemu-padjoy-0.61.ebuild @@ -0,0 +1,26 @@ +# 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-padjoy/psemu-padjoy-0.61.ebuild,v 1.1 2002/06/03 02:53:20 rphillips Exp $ + +DESCRIPTION="PSEmu plugin to use joysticks/gamepads in PSX-emulators" +HOMEPAGE="http://www.ammoq.com" +LICENSE="" # No mention of a license.. That makes it Public Domain? +DEPEND="x11-libs/gtk+" +SRC_URI="http://members.chello.at/erich.kitzmueller/ammoq/padJoy061.tgz" +S=${WORKDIR}/padJoy + +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/libpad* + chmod 755 ${D}/usr/lib/psemu/plugins/* + dodoc readme.txt +} + |