diff options
author | 2004-03-24 06:53:24 +0000 | |
---|---|---|
committer | 2004-03-24 06:53:24 +0000 | |
commit | 19451ac3f57c7bd3a7fd8f39c19d09358b559323 (patch) | |
tree | b5560357f01489363ebb0a624dc0267a6752cf4a /games-emulation | |
parent | don't rdepend on sed, nasm and unzip (Manifest recommit) (diff) | |
download | gentoo-2-19451ac3f57c7bd3a7fd8f39c19d09358b559323.tar.gz gentoo-2-19451ac3f57c7bd3a7fd8f39c19d09358b559323.tar.bz2 gentoo-2-19451ac3f57c7bd3a7fd8f39c19d09358b559323.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/psemu-padjoy-0.82.ebuild | 14 |
2 files changed, 13 insertions, 7 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/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() { |