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 | 6062a0646ccb8950f5cd123c57a43192e576a1aa (patch) | |
tree | a54b5acaea1eafe27f4e0a87c5f55f60162b098d /games-action/fakk2 | |
parent | die backticks (diff) | |
download | historical-6062a0646ccb8950f5cd123c57a43192e576a1aa.tar.gz historical-6062a0646ccb8950f5cd123c57a43192e576a1aa.tar.bz2 historical-6062a0646ccb8950f5cd123c57a43192e576a1aa.zip |
fix use invocation
Diffstat (limited to 'games-action/fakk2')
-rw-r--r-- | games-action/fakk2/ChangeLog | 5 | ||||
-rw-r--r-- | games-action/fakk2/fakk2-1.02.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/games-action/fakk2/ChangeLog b/games-action/fakk2/ChangeLog index 2f9516817c66..d3e033112300 100644 --- a/games-action/fakk2/ChangeLog +++ b/games-action/fakk2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/fakk2 # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/fakk2/ChangeLog,v 1.3 2004/02/15 23:20:02 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/fakk2/ChangeLog,v 1.4 2004/06/03 07:49:05 mr_bones_ Exp $ + + 03 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> fakk2-1.02.ebuild: + fix use invocation 15 Feb 2004; Chris Gianelloni <wolf31o2@gentoo.org> fakk2-1.02.ebuild: Updated to use new cdrom_get_cds routine in eutils.eclass. diff --git a/games-action/fakk2/fakk2-1.02.ebuild b/games-action/fakk2/fakk2-1.02.ebuild index e00a7ff946a3..3e4b376deda9 100644 --- a/games-action/fakk2/fakk2-1.02.ebuild +++ b/games-action/fakk2/fakk2-1.02.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/fakk2/fakk2-1.02.ebuild,v 1.2 2004/02/15 23:20:02 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/fakk2/fakk2-1.02.ebuild,v 1.3 2004/06/03 07:49:05 mr_bones_ Exp $ inherit games @@ -25,7 +25,7 @@ Ddir=${D}/${dir} pkg_setup() { check_license || die "License check failed" - if [ "`use nocd`" ]; then + if use nocd ; then ewarn "The installed game takes about 378MB of space!" fi cdrom_get_cds fakk @@ -42,7 +42,7 @@ src_install() { dodir ${dir}/fakk exeinto /opt/fakk2/fakk doexe ${CDROM_ROOT}/bin/x86/glibc-2.1/fakk/{c,f}game.so - if [ "`use nocd`" ]; then + if use nocd ; then insinto /opt/fakk2/fakk doins ${CDROM_ROOT}/fakk/pak{0,1,2,3}.pk3 fi |