diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-24 06:53:24 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-24 06:53:24 +0000 |
commit | baf72412261750a67636c0cbb2ccc7d3c263426f (patch) | |
tree | ea20a74934c69c44639e1c06f5a4c446a44fe3f0 /games-emulation | |
parent | don't rdepend on sed, nasm and unzip (diff) | |
download | historical-baf72412261750a67636c0cbb2ccc7d3c263426f.tar.gz historical-baf72412261750a67636c0cbb2ccc7d3c263426f.tar.bz2 historical-baf72412261750a67636c0cbb2ccc7d3c263426f.zip |
IUSE; don't rdepend on sed; tidy
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/psemu-padjoy/ChangeLog | 6 | ||||
-rw-r--r-- | games-emulation/psemu-padjoy/Manifest | 6 | ||||
-rw-r--r-- | games-emulation/psemu-padjoy/psemu-padjoy-0.82.ebuild | 14 |
3 files changed, 16 insertions, 10 deletions
diff --git a/games-emulation/psemu-padjoy/ChangeLog b/games-emulation/psemu-padjoy/ChangeLog index b2f8435db789..f53d243a8c2f 100644 --- a/games-emulation/psemu-padjoy/ChangeLog +++ b/games-emulation/psemu-padjoy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/psemu-padjoy # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-padjoy/ChangeLog,v 1.4 2004/02/13 15:57:54 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-padjoy/ChangeLog,v 1.5 2004/03/24 06:53:24 mr_bones_ Exp $ + + 23 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> + psemu-padjoy-0.82.ebuild: + IUSE; don't rdepend on sed; tidy 13 Feb 2004; David Holm <dholm@gentoo.org> psemu-padjoy-0.82.ebuild: Added to ~ppc. diff --git a/games-emulation/psemu-padjoy/Manifest b/games-emulation/psemu-padjoy/Manifest index 4da07c540830..389914181cf7 100644 --- a/games-emulation/psemu-padjoy/Manifest +++ b/games-emulation/psemu-padjoy/Manifest @@ -1,7 +1,7 @@ -MD5 eacb9569aeebf7038cde482dad66a409 ChangeLog 1580 +MD5 834e848d229482b69777c5309f82552e ChangeLog 1703 MD5 25d2eef4c71e214de2e2148d4641af8c psemu-padjoy-0.81.ebuild 861 -MD5 ddda88cceb3989691ba3475e39a0ff48 psemu-padjoy-0.82.ebuild 948 -MD5 a30c9d4ce8f9629d6d7323eaab258343 metadata.xml 241 +MD5 9ab9605393948e15ee457546afd9e8d7 psemu-padjoy-0.82.ebuild 974 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 e4171d0010309486d615bb721570a2ff files/0.81-makefile-cflags.patch 386 MD5 9854361bcecd3f8f3c4a3f6b4820b9f8 files/digest-psemu-padjoy-0.81 57 MD5 972e128aa872de9aaf74ecbec368a9cb files/digest-psemu-padjoy-0.82 57 diff --git a/games-emulation/psemu-padjoy/psemu-padjoy-0.82.ebuild b/games-emulation/psemu-padjoy/psemu-padjoy-0.82.ebuild index 62542f6b9f1e..f12ddfb162ec 100644 --- a/games-emulation/psemu-padjoy/psemu-padjoy-0.82.ebuild +++ b/games-emulation/psemu-padjoy/psemu-padjoy-0.82.ebuild @@ -1,27 +1,29 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-padjoy/psemu-padjoy-0.82.ebuild,v 1.2 2004/02/13 15:57:54 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-padjoy/psemu-padjoy-0.82.ebuild,v 1.3 2004/03/24 06:53:24 mr_bones_ Exp $ -inherit games eutils +inherit games S="${WORKDIR}/padJoy/src" DESCRIPTION="PSEmu plugin to use joysticks/gamepads in PSX-emulators" HOMEPAGE="http://www.ammoq.com/" SRC_URI="http://members.chello.at/erich.kitzmueller/ammoq/padJoy${PV//.}.tgz" -KEYWORDS="x86 ~ppc" LICENSE="GPL-2" SLOT="0" +KEYWORDS="x86 ~ppc" +IUSE="" -DEPEND="=x11-libs/gtk+-1* +RDEPEND="=x11-libs/gtk+-1*" +DEPEND="${RDEPEND} >=sys-apps/sed-4" src_unpack() { unpack ${A} cd ${S} sed -i \ - -e "s:-O2 -fomit-frame-pointer:${CFLAGS}:" Makefile || \ - die "sed Makefile failed" + -e "s:-O2 -fomit-frame-pointer:${CFLAGS}:" Makefile \ + || die "sed Makefile failed" } src_install() { |