diff options
-rw-r--r-- | games-arcade/crack-attack/crack-attack-1.1.10.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/games-arcade/crack-attack/crack-attack-1.1.10.ebuild b/games-arcade/crack-attack/crack-attack-1.1.10.ebuild index c2fc820012b3..cd3309848cb3 100644 --- a/games-arcade/crack-attack/crack-attack-1.1.10.ebuild +++ b/games-arcade/crack-attack/crack-attack-1.1.10.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-arcade/crack-attack/crack-attack-1.1.10.ebuild,v 1.3 2004/01/29 08:57:25 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/crack-attack/crack-attack-1.1.10.ebuild,v 1.4 2004/02/09 08:04:06 mr_bones_ Exp $ inherit games flag-o-matic gcc @@ -11,6 +11,7 @@ SRC_URI="http://aluminumangel.org/cgi-bin/download_counter.cgi?attack_linux+atta LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 hppa" +IUSE="" RDEPEND="media-libs/glut" DEPEND="${RDEPEND} @@ -20,8 +21,8 @@ src_unpack() { unpack ${A} cd ${S} sed -i \ - -e 's:-O6:@CXXFLAGS@:' src/Makefile.in || \ - die "sed src/Makefile.in failed" + -e 's:-O6:@CXXFLAGS@:' src/Makefile.in \ + || die "sed src/Makefile.in failed" } src_compile() { @@ -33,7 +34,7 @@ src_compile() { src_install() { make DESTDIR=${D} install || die "make install failed" - dodoc AUTHORS ChangeLog README - dohtml -A xpm doc/* + dodoc AUTHORS ChangeLog README || die "dodoc failed" + dohtml -A xpm doc/* || die "dohtml failed" prepgamesdirs } |