diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-04-09 21:22:13 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-04-09 21:22:13 +0000 |
commit | 7da20e07c7df4ad10b37d8f44e51528ec53d6739 (patch) | |
tree | 2225d2c5340f75f0165613893e3d5dc13e269c51 /app-office/gnumeric | |
parent | cleanup (diff) | |
download | gentoo-2-7da20e07c7df4ad10b37d8f44e51528ec53d6739.tar.gz gentoo-2-7da20e07c7df4ad10b37d8f44e51528ec53d6739.tar.bz2 gentoo-2-7da20e07c7df4ad10b37d8f44e51528ec53d6739.zip |
small fix
Diffstat (limited to 'app-office/gnumeric')
-rw-r--r-- | app-office/gnumeric/gnumeric-1.0.5-r2.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/app-office/gnumeric/gnumeric-1.0.5-r2.ebuild b/app-office/gnumeric/gnumeric-1.0.5-r2.ebuild index 934164ac2de0..e2f621e1bb83 100644 --- a/app-office/gnumeric/gnumeric-1.0.5-r2.ebuild +++ b/app-office/gnumeric/gnumeric-1.0.5-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Martin Schlemmer <azarah@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.0.5-r2.ebuild,v 1.1 2002/04/09 20:59:39 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.0.5-r2.ebuild,v 1.2 2002/04/09 21:22:13 azarah Exp $ #provide Xmake and Xemake . /usr/portage/eclass/inherit.eclass @@ -60,38 +60,38 @@ src_compile() { if [ -z "`use nls`" ] ; then myconf="--disable-nls" fi - if [ "`use gb`" ]; then + if [ -n "`use gb`" ]; then myconf="${myconf} --with-gb" else myconf="${myconf} --without-gb" fi #broken as we cannot use guile-1.5 (break gnucash) - if [ "`use guile`" ]; then + if [ -n "`use guile`" ]; then myconf="${myconf} --without-guile" else myconf="${myconf} --without-guile" fi - if [ "`use perl`" ]; then + if [ -n "`use perl`" ]; then myconf="${myconf} --with-perl" else myconf="${myconf} --without-perl" fi - if [ "`use python`" ]; then + if [ -n "`use python`" ]; then myconf="${myconf} --with-python" else myconf="${myconf} --without-python" fi - if [ "`use libgda`" ]; then + if [ -n "`use libgda`" ]; then myconf="${myconf} --with-gda --with-bonobo" else myconf="${myconf} --without-gda" fi - if [ "`use evo`" ]; then + if [ -n "`use evo`" ]; then myconf="${myconf} --with-evolution" fi - if [ "`use bonobo`" ]; then + if [ -n "`use bonobo`" ]; then myconf="${myconf} --with-bonobo" - else + elif [ -z "`use libgda`" ]; then myconf="${myconf} --without-bonobo" fi |