diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-19 06:08:13 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-19 06:08:13 +0000 |
commit | 7737cd1cc757d393b11e659288b73791163546d7 (patch) | |
tree | 701fddb99133a451abac8921cacaa5b4c78d583f /games-action/abuse_sdl | |
parent | unmask x86 for 2.1.5 (Manifest recommit) (diff) | |
download | gentoo-2-7737cd1cc757d393b11e659288b73791163546d7.tar.gz gentoo-2-7737cd1cc757d393b11e659288b73791163546d7.tar.bz2 gentoo-2-7737cd1cc757d393b11e659288b73791163546d7.zip |
don't rdepend on sed
Diffstat (limited to 'games-action/abuse_sdl')
-rw-r--r-- | games-action/abuse_sdl/abuse_sdl-0.7.0-r2.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/games-action/abuse_sdl/abuse_sdl-0.7.0-r2.ebuild b/games-action/abuse_sdl/abuse_sdl-0.7.0-r2.ebuild index 9f230e171f50..a51670bc6ee9 100644 --- a/games-action/abuse_sdl/abuse_sdl-0.7.0-r2.ebuild +++ b/games-action/abuse_sdl/abuse_sdl-0.7.0-r2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/abuse_sdl/abuse_sdl-0.7.0-r2.ebuild,v 1.2 2004/02/20 06:13:56 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/abuse_sdl/abuse_sdl-0.7.0-r2.ebuild,v 1.3 2004/04/19 06:08:13 mr_bones_ Exp $ -inherit games eutils +inherit eutils games DESCRIPTION="port of Abuse by Crack Dot Com" HOMEPAGE="http://www.labyrinth.net.au/~trandor/abuse/" @@ -13,11 +13,12 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc" -DEPEND="virtual/x11 - >=sys-apps/sed-4 +RDEPEND="virtual/x11 >=media-libs/libsdl-1.1.6" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" -DATA=${WORKDIR}/datafiles +DATA="${WORKDIR}/datafiles" src_unpack() { cd ${WORKDIR} @@ -35,7 +36,7 @@ src_unpack() { } src_compile() { - egamesconf --datadir=${GAMES_DATADIR_BASE} || die + egamesconf --datadir="${GAMES_DATADIR_BASE}" || die emake || die "emake failed" } |