diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-03 23:01:53 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-03 23:01:53 +0000 |
commit | 9957ad619197a681a3a8172ee4178fb78bf2f6fd (patch) | |
tree | 9eb21c6495d8859debc3f3478e0ff81f46ed6473 /gnome-extra/guppi | |
parent | touch (Manifest recommit) (diff) | |
download | gentoo-2-9957ad619197a681a3a8172ee4178fb78bf2f6fd.tar.gz gentoo-2-9957ad619197a681a3a8172ee4178fb78bf2f6fd.tar.bz2 gentoo-2-9957ad619197a681a3a8172ee4178fb78bf2f6fd.zip |
Fix use invocation
Diffstat (limited to 'gnome-extra/guppi')
-rw-r--r-- | gnome-extra/guppi/ChangeLog | 6 | ||||
-rw-r--r-- | gnome-extra/guppi/guppi-0.40.3-r1.ebuild | 10 | ||||
-rw-r--r-- | gnome-extra/guppi/guppi-0.40.3-r2.ebuild | 8 |
3 files changed, 14 insertions, 10 deletions
diff --git a/gnome-extra/guppi/ChangeLog b/gnome-extra/guppi/ChangeLog index 732513b0170e..d08444fe92a2 100644 --- a/gnome-extra/guppi/ChangeLog +++ b/gnome-extra/guppi/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for gnome-extra/guppi # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/guppi/ChangeLog,v 1.13 2004/03/02 15:39:51 augustus Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/guppi/ChangeLog,v 1.14 2004/06/03 23:01:53 agriffis Exp $ + + 03 Jun 2004; Aron Griffis <agriffis@gentoo.org> guppi-0.40.3-r1.ebuild, + guppi-0.40.3-r2.ebuild: + Fix use invocation 02 Mar 2004; <augustus@gentoo.org> guppi-0.40.3-r2.ebuild: Added ~amd64 keyword. diff --git a/gnome-extra/guppi/guppi-0.40.3-r1.ebuild b/gnome-extra/guppi/guppi-0.40.3-r1.ebuild index fca5b595957d..8d58b3916873 100644 --- a/gnome-extra/guppi/guppi-0.40.3-r1.ebuild +++ b/gnome-extra/guppi/guppi-0.40.3-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/guppi/guppi-0.40.3-r1.ebuild,v 1.14 2004/02/22 20:52:08 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/guppi/guppi-0.40.3-r1.ebuild,v 1.15 2004/06/03 23:01:53 agriffis Exp $ IUSE="python nls readline" @@ -35,18 +35,18 @@ src_compile() { local myconf - if [ "`use python`" ] + if use python then myconf="${myconf} --enable-python" else myconf="${myconf} --disable-python" fi - if [ -z "`use nls`" ] ; then + if ! use nls ; then myconf="${myconf} --disable-nls" fi - if [ -z "`use readline`" ] ; then + if ! use readline ; then myconf="${myconf} --disable-guile-readline" fi diff --git a/gnome-extra/guppi/guppi-0.40.3-r2.ebuild b/gnome-extra/guppi/guppi-0.40.3-r2.ebuild index 87d391c4ff14..5558a4782240 100644 --- a/gnome-extra/guppi/guppi-0.40.3-r2.ebuild +++ b/gnome-extra/guppi/guppi-0.40.3-r2.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/gnome-extra/guppi/guppi-0.40.3-r2.ebuild,v 1.8 2004/03/02 15:39:51 augustus Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/guppi/guppi-0.40.3-r2.ebuild,v 1.9 2004/06/03 23:01:53 agriffis Exp $ IUSE="python nls readline" @@ -35,18 +35,18 @@ src_compile() { local myconf - if [ "`use python`" ] + if use python then myconf="${myconf} --enable-python" else myconf="${myconf} --disable-python" fi - if [ -z "`use nls`" ] ; then + if ! use nls ; then myconf="${myconf} --disable-nls" fi - if [ -z "`use readline`" ] ; then + if ! use readline ; then myconf="${myconf} --disable-guile-readline" fi |