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 | 19212cebcc1ec3d9a30c9e46dd3f927201e9e176 (patch) | |
tree | d26d79d642c0b0598863935d9488059804c651fc /app-sci | |
parent | Stable on sparc (diff) | |
download | historical-19212cebcc1ec3d9a30c9e46dd3f927201e9e176.tar.gz historical-19212cebcc1ec3d9a30c9e46dd3f927201e9e176.tar.bz2 historical-19212cebcc1ec3d9a30c9e46dd3f927201e9e176.zip |
QA - fix use invocation
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/maxima/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/maxima/Manifest | 4 | ||||
-rw-r--r-- | app-sci/maxima/maxima-5.9.0-r2.ebuild | 10 |
3 files changed, 11 insertions, 8 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/Manifest b/app-sci/maxima/Manifest index 9a6957fc5662..8d3351cefb44 100644 --- a/app-sci/maxima/Manifest +++ b/app-sci/maxima/Manifest @@ -1,5 +1,5 @@ -MD5 11ccba2d53bf2b91fa4b0fa7e90288fd maxima-5.9.0-r2.ebuild 2454 -MD5 ec7e21978ad61af657ed42795a4d3106 ChangeLog 1674 +MD5 7d41c1c45bc7a97912d8cf7d39f5a7b8 maxima-5.9.0-r2.ebuild 2382 +MD5 3c212d79364def752b8f57b83df8211f ChangeLog 1776 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 MD5 f631a3c65646fa76dca994fe54383c83 maxima-5.9.0.ebuild 786 MD5 aaa91ea4812a84a1054b82e69d3fe05b files/digest-maxima-5.9.0-r2 65 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 |