diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-03 22:55:45 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-03 22:55:45 +0000 |
commit | 507c631c70fcc384ecbf8fa57336b8de5c63c847 (patch) | |
tree | 1789b678f733e3ef2a83e4880f0a5e1eaf9c9887 /games-fps/nprquake-sdl | |
parent | Fix use invocation (Manifest recommit) (diff) | |
download | gentoo-2-507c631c70fcc384ecbf8fa57336b8de5c63c847.tar.gz gentoo-2-507c631c70fcc384ecbf8fa57336b8de5c63c847.tar.bz2 gentoo-2-507c631c70fcc384ecbf8fa57336b8de5c63c847.zip |
IUSE
Diffstat (limited to 'games-fps/nprquake-sdl')
-rw-r--r-- | games-fps/nprquake-sdl/nprquake-sdl-1-r1.ebuild | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/games-fps/nprquake-sdl/nprquake-sdl-1-r1.ebuild b/games-fps/nprquake-sdl/nprquake-sdl-1-r1.ebuild index 84765aec41bb..f4a7ae3cd0d3 100644 --- a/games-fps/nprquake-sdl/nprquake-sdl-1-r1.ebuild +++ b/games-fps/nprquake-sdl/nprquake-sdl-1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/nprquake-sdl/nprquake-sdl-1-r1.ebuild,v 1.3 2004/02/20 06:40:07 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/nprquake-sdl/nprquake-sdl-1-r1.ebuild,v 1.4 2004/06/03 22:54:59 mr_bones_ Exp $ inherit games eutils @@ -11,15 +11,16 @@ SRC_URI="http://www.tempestgames.com/ryan/downloads/NPRQuake-SDL.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" +IUSE="" DEPEND="media-libs/libsdl" -S=${WORKDIR}/NPRQuake-SDL +S="${WORKDIR}/NPRQuake-SDL" src_unpack() { unpack ${A} cd ${S} - epatch ${FILESDIR}/${PV}-gentoo.patch + epatch "${FILESDIR}/${PV}-gentoo.patch" } src_compile() { @@ -33,10 +34,11 @@ src_compile() { src_install() { dodoc README CHANGELOG - newgamesbin NPRQuakeSrc/release*/bin/* nprquake-sdl - dodir ${GAMES_LIBDIR}/${PN} - cp -r build/* ${D}/${GAMES_LIBDIR}/${PN}/ - cd ${D}/${GAMES_LIBDIR}/${PN} + newgamesbin NPRQuakeSrc/release*/bin/* nprquake-sdl \ + || die "newgamesbin failed" + dodir "${GAMES_LIBDIR}/${PN}" + cp -r build/* "${D}/${GAMES_LIBDIR}/${PN}/" || die "cp failed" + cd "${D}/${GAMES_LIBDIR}/${PN}" mv dr_default.so default.so ln -s sketch.so dr_default.so prepgamesdirs |