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 | e6086baf08a56b8bc47632d7ac4203bd413d2ab5 (patch) | |
tree | bd0d30a582abc1dfaabbc8c3b4da4f714107902d /app-emulation/psemu-padxwin | |
parent | dependency fix (diff) | |
download | gentoo-2-e6086baf08a56b8bc47632d7ac4203bd413d2ab5.tar.gz gentoo-2-e6086baf08a56b8bc47632d7ac4203bd413d2ab5.tar.bz2 gentoo-2-e6086baf08a56b8bc47632d7ac4203bd413d2ab5.zip |
New package. Fixes #3266-#3274
Diffstat (limited to 'app-emulation/psemu-padxwin')
-rw-r--r-- | app-emulation/psemu-padxwin/ChangeLog | 13 | ||||
-rw-r--r-- | app-emulation/psemu-padxwin/files/digest-psemu-padxwin-1.4 | 1 | ||||
-rw-r--r-- | app-emulation/psemu-padxwin/psemu-padxwin-1.4.ebuild | 26 |
3 files changed, 40 insertions, 0 deletions
diff --git a/app-emulation/psemu-padxwin/ChangeLog b/app-emulation/psemu-padxwin/ChangeLog new file mode 100644 index 000000000000..c94beb0a9974 --- /dev/null +++ b/app-emulation/psemu-padxwin/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for app-emulation/psemu-padxwin +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-emulation/psemu-padxwin/ChangeLog,v 1.1 2002/06/03 02:53:20 rphillips Exp $ + +*psemu-padxwin-1.4 (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-padxwin/files/digest-psemu-padxwin-1.4 b/app-emulation/psemu-padxwin/files/digest-psemu-padxwin-1.4 new file mode 100644 index 000000000000..d9c6e45e4bd7 --- /dev/null +++ b/app-emulation/psemu-padxwin/files/digest-psemu-padxwin-1.4 @@ -0,0 +1 @@ +MD5 bf121090983eb4aca2efc59f8a469232 padXwin-1.4.tgz 12674 diff --git a/app-emulation/psemu-padxwin/psemu-padxwin-1.4.ebuild b/app-emulation/psemu-padxwin/psemu-padxwin-1.4.ebuild new file mode 100644 index 000000000000..8347b153718f --- /dev/null +++ b/app-emulation/psemu-padxwin/psemu-padxwin-1.4.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-padxwin/psemu-padxwin-1.4.ebuild,v 1.1 2002/06/03 02:53:20 rphillips Exp $ + +DESCRIPTION="PSEmu plugin to use the keyboard as a gamepad" +HOMEPAGE="http://www.pcsx.net" +LICENSE="" # No mention of a license... +DEPEND="x11-libs/gtk+" +SRC_URI="http://linux.pcsx.net/downloads/plugins/padXwin-${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/libpad* + chmod 755 ${D}/usr/lib/psemu/plugins/* + dodoc ReadMe.txt +} + |