diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-09 17:04:27 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-09 17:04:27 +0000 |
commit | 52d20d64449af41c8dff17545b552f2463149cb9 (patch) | |
tree | 74e9f496832f1d6fb0847a5aeb9572602b61cbfa /games-arcade/frozen-bubble | |
parent | stable on hppa and sparc (diff) | |
download | historical-52d20d64449af41c8dff17545b552f2463149cb9.tar.gz historical-52d20d64449af41c8dff17545b552f2463149cb9.tar.bz2 historical-52d20d64449af41c8dff17545b552f2463149cb9.zip |
better die messages
Diffstat (limited to 'games-arcade/frozen-bubble')
-rw-r--r-- | games-arcade/frozen-bubble/frozen-bubble-1.0.0-r3.ebuild | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/games-arcade/frozen-bubble/frozen-bubble-1.0.0-r3.ebuild b/games-arcade/frozen-bubble/frozen-bubble-1.0.0-r3.ebuild index 5463d3396186..a46b2db38cb9 100644 --- a/games-arcade/frozen-bubble/frozen-bubble-1.0.0-r3.ebuild +++ b/games-arcade/frozen-bubble/frozen-bubble-1.0.0-r3.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/frozen-bubble/frozen-bubble-1.0.0-r3.ebuild,v 1.4 2004/02/03 01:28:31 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/frozen-bubble/frozen-bubble-1.0.0-r3.ebuild,v 1.5 2004/02/09 17:04:27 vapier Exp $ inherit games perl-module @@ -39,10 +39,10 @@ src_compile() { BINDIR=${GAMES_BINDIR} \ DATADIR=${GAMES_DATADIR} \ MANDIR=/usr/share/man \ - || die "make failed" + || die "make game failed" cd ${WORKDIR}/${NET_SERVER_P} - ./bootstrap.sh || die + ./bootstrap.sh || die "bootstrap failed" egamesconf || die } @@ -53,7 +53,7 @@ src_install() { DATADIR=${D}/${GAMES_DATADIR} \ MANDIR=${D}/usr/share/man \ install \ - || die "make install failed" + || die "make install failed" dosed /usr/games/bin/frozen-bubble dodoc AUTHORS CHANGES README @@ -64,11 +64,14 @@ src_install() { DATADIR=${D}/${GAMES_DATADIR} \ MANDIR=${D}/usr/share/man \ install \ - || die "make install failed" + || die "make install client failed" cd ${WORKDIR}/${NET_SERVER_P} - make DESTDIR=${D} sbindir=${GAMES_BINDIR} install \ - || die "make install failed" + make \ + DESTDIR=${D} \ + sbindir=${GAMES_BINDIR} \ + install \ + || die "make install server failed" dodoc TODO newdoc README README.server |