diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-03 07:51:07 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-03 07:51:07 +0000 |
commit | ba35755e66437c345776e387d2ac4a4f6048ba13 (patch) | |
tree | dec8eb96f8dd86dbb686f1a212f827ee3cb8ea1c /games-action/heavygear2 | |
parent | die backticks (Manifest recommit) (diff) | |
download | gentoo-2-ba35755e66437c345776e387d2ac4a4f6048ba13.tar.gz gentoo-2-ba35755e66437c345776e387d2ac4a4f6048ba13.tar.bz2 gentoo-2-ba35755e66437c345776e387d2ac4a4f6048ba13.zip |
fix use invocation
Diffstat (limited to 'games-action/heavygear2')
-rw-r--r-- | games-action/heavygear2/ChangeLog | 5 | ||||
-rw-r--r-- | games-action/heavygear2/heavygear2-1.0b.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/games-action/heavygear2/ChangeLog b/games-action/heavygear2/ChangeLog index 8b99d57cf051..9292b16fea51 100644 --- a/games-action/heavygear2/ChangeLog +++ b/games-action/heavygear2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/heavygear2 # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/heavygear2/ChangeLog,v 1.4 2004/02/15 23:23:18 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/heavygear2/ChangeLog,v 1.5 2004/06/03 07:47:44 mr_bones_ Exp $ + + 03 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> heavygear2-1.0b.ebuild: + fix use invocation 15 Feb 2004; Chris Gianelloni <wolf31o2@gentoo.org> heavygear2-1.0b.ebuild: Updated to use new cdrom_get_cds routine in eutils.eclass. diff --git a/games-action/heavygear2/heavygear2-1.0b.ebuild b/games-action/heavygear2/heavygear2-1.0b.ebuild index be530afc7fac..acc030bbd377 100644 --- a/games-action/heavygear2/heavygear2-1.0b.ebuild +++ b/games-action/heavygear2/heavygear2-1.0b.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-action/heavygear2/heavygear2-1.0b.ebuild,v 1.3 2004/02/15 23:23:18 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/heavygear2/heavygear2-1.0b.ebuild,v 1.4 2004/06/03 07:47:44 mr_bones_ Exp $ inherit games @@ -28,7 +28,7 @@ Ddir=${D}/${dir} pkg_setup() { check_license || die "License check failed" cdrom_get_cds shell/movies/asteroid.mpg - if [ "`use videos`" ]; then + if use videos ; then ewarn "The installed game takes about 500MB of space!" else ewarn "The installed game takes about 400MB of space!" @@ -77,7 +77,7 @@ src_install() { } pkg_postinst() { - if [ ! "`use videos`" ]; then + if ! use videos ; then einfo "You will need to mount the Heavy Gear II CD to see the cut-scene videos." echo fi |