diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-03 21:06:51 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-03 21:06:51 +0000 |
commit | 94b2f1dae835697fe38688c7dfaaeee69bdd33f7 (patch) | |
tree | 63d90be264282a0617e9fafc2f5ba7ba69e23c5f /games-simulation/cannonsmash | |
parent | Finally killed eclipse-sdk-bin (diff) | |
download | historical-94b2f1dae835697fe38688c7dfaaeee69bdd33f7.tar.gz historical-94b2f1dae835697fe38688c7dfaaeee69bdd33f7.tar.bz2 historical-94b2f1dae835697fe38688c7dfaaeee69bdd33f7.zip |
Fix use invocation
Diffstat (limited to 'games-simulation/cannonsmash')
-rw-r--r-- | games-simulation/cannonsmash/ChangeLog | 5 | ||||
-rw-r--r-- | games-simulation/cannonsmash/cannonsmash-0.6.5.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/games-simulation/cannonsmash/ChangeLog b/games-simulation/cannonsmash/ChangeLog index 5fc9c969c7c4..b2957cfc2542 100644 --- a/games-simulation/cannonsmash/ChangeLog +++ b/games-simulation/cannonsmash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-simulation/cannonsmash # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/cannonsmash/ChangeLog,v 1.4 2004/03/27 11:28:30 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/cannonsmash/ChangeLog,v 1.5 2004/06/03 21:06:51 agriffis Exp $ + + 03 Jun 2004; Aron Griffis <agriffis@gentoo.org> cannonsmash-0.6.5.ebuild: + Fix use invocation 27 Mar 2004; David Holm <dholm@gentoo.org> cannonsmash-0.6.6.ebuild: Added to ~ppc. diff --git a/games-simulation/cannonsmash/cannonsmash-0.6.5.ebuild b/games-simulation/cannonsmash/cannonsmash-0.6.5.ebuild index 655ac9ccc2fa..ef811a7f7931 100644 --- a/games-simulation/cannonsmash/cannonsmash-0.6.5.ebuild +++ b/games-simulation/cannonsmash/cannonsmash-0.6.5.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-simulation/cannonsmash/cannonsmash-0.6.5.ebuild,v 1.2 2004/02/20 07:33:25 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/cannonsmash/cannonsmash-0.6.5.ebuild,v 1.3 2004/06/03 21:06:51 agriffis Exp $ inherit eutils games @@ -29,7 +29,7 @@ src_unpack() { unpack csmash-${PV}.tar.gz cd ${S} epatch ${FILESDIR}/${PV}-loadparts.patch - if [ `use oggvorbis` ] ; then + if use oggvorbis ; then cp ${DISTDIR}/${MY_OGG} ${S}/ || die "unpacking ogg" sed -i "s:${MY_OGG}:${GAMES_DATADIR}/csmash/${MY_OGG}:" ttinc.h || die "setting ogg loc" fi @@ -47,7 +47,7 @@ src_install() { egamesinstall \ datadir=${D}/${GAMES_DATADIR_BASE} \ || die - if [ `use oggvorbis` ] ; then + if use oggvorbis ; then insinto ${GAMES_DATADIR}/csmash doins ${MY_OGG} fi |