diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-28 03:16:37 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-28 03:16:37 +0000 |
commit | 26a4cd6cb53bef8cf0827daac0ab52afb7b58ab7 (patch) | |
tree | 797c5087f05e8c4f92cac92c3d21b309d59ac4ce /app-sci | |
parent | Stable on sparc (Manifest recommit) (diff) | |
download | gentoo-2-26a4cd6cb53bef8cf0827daac0ab52afb7b58ab7.tar.gz gentoo-2-26a4cd6cb53bef8cf0827daac0ab52afb7b58ab7.tar.bz2 gentoo-2-26a4cd6cb53bef8cf0827daac0ab52afb7b58ab7.zip |
QA - fix use invocation
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/maxima/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/maxima/maxima-5.9.0-r2.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/app-sci/maxima/ChangeLog b/app-sci/maxima/ChangeLog index ad8ef325b865..c7654945eb9b 100644 --- a/app-sci/maxima/ChangeLog +++ b/app-sci/maxima/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-sci/maxima # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/ChangeLog,v 1.9 2004/06/24 22:10:07 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/ChangeLog,v 1.10 2004/06/28 03:16:37 agriffis Exp $ + + 27 Jun 2004; Aron Griffis <agriffis@gentoo.org> maxima-5.9.0-r2.ebuild: + QA - fix use invocation 02 Jun 2004; Aron Griffis <agriffis@gentoo.org> maxima-5.9.0-r2.ebuild: Fix use invocation diff --git a/app-sci/maxima/maxima-5.9.0-r2.ebuild b/app-sci/maxima/maxima-5.9.0-r2.ebuild index aecb768420c6..0a3978825bc0 100644 --- a/app-sci/maxima/maxima-5.9.0-r2.ebuild +++ b/app-sci/maxima/maxima-5.9.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/maxima-5.9.0-r2.ebuild,v 1.7 2004/06/24 22:10:07 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/maxima-5.9.0-r2.ebuild,v 1.8 2004/06/28 03:16:37 agriffis Exp $ DESCRIPTION="Free computer algebra environment, based on Macsyma" HOMEPAGE="http://maxima.sourceforge.net/" @@ -23,14 +23,14 @@ RDEPEND=">=dev-lang/tk-8.3.3" src_compile() { local myconf="" - if [ -n "$(use cmucl)" ] || [ -n "$(use clisp)" ] || [ -n "$(use gcl)" ]; then - if [ -n "$(use cmucl)" ]; then + if use cmucl || use clisp || use gcl; then + if use cmucl; then myconf="${myconf} --enable-cmucl" fi - if [ -n "$(use clisp)" ]; then + if use clisp; then myconf="${myconf} --enable-clisp" fi - if [ -n "$(use gcl)" ]; then + if use gcl; then myconf="${myconf} --enable-gcl" fi else |