diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2005-08-29 23:26:50 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2005-08-29 23:26:50 +0000 |
commit | 9eb5afc534d2a9db153ff7729da2b3fc0da68e87 (patch) | |
tree | 32595d25a2265f811331f49799451ffa91130d0b /sci-mathematics | |
parent | Update avr to require 3.4.4-r1 since 3.4.4 no longer exists. (diff) | |
download | gentoo-2-9eb5afc534d2a9db153ff7729da2b3fc0da68e87.tar.gz gentoo-2-9eb5afc534d2a9db153ff7729da2b3fc0da68e87.tar.bz2 gentoo-2-9eb5afc534d2a9db153ff7729da2b3fc0da68e87.zip |
Readded ~amd64 support, partially fixes bug #98763.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/maxima/ChangeLog | 6 | ||||
-rw-r--r-- | sci-mathematics/maxima/maxima-5.9.1-r3.ebuild | 11 |
2 files changed, 12 insertions, 5 deletions
diff --git a/sci-mathematics/maxima/ChangeLog b/sci-mathematics/maxima/ChangeLog index 44bb2023b4f7..3eb1b2372e09 100644 --- a/sci-mathematics/maxima/ChangeLog +++ b/sci-mathematics/maxima/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-mathematics/maxima # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.8 2005/08/20 20:55:56 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.9 2005/08/29 23:26:50 ribosome Exp $ + + 29 Aug 2005; Olivier Fisette <ribosome@gentoo.org> maxima-5.9.1-r3.ebuild: + Readded ~amd64 support, thanks to a patch by Matthew Kennedy + <mkennedy@gentoo.org>. Partially fixes bug #98763. *maxima-5.9.1-r3 (20 Aug 2005) diff --git a/sci-mathematics/maxima/maxima-5.9.1-r3.ebuild b/sci-mathematics/maxima/maxima-5.9.1-r3.ebuild index 1d966f9e3b7e..59298bbbdf43 100644 --- a/sci-mathematics/maxima/maxima-5.9.1-r3.ebuild +++ b/sci-mathematics/maxima/maxima-5.9.1-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.9.1-r3.ebuild,v 1.1 2005/08/20 20:55:56 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.9.1-r3.ebuild,v 1.2 2005/08/29 23:26:50 ribosome Exp $ inherit eutils elisp-common @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/maxima/${P}.tar.gz" LICENSE="GPL-2 AECA" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~x86 ~amd64" IUSE="cmucl clisp gcl sbcl tetex emacs auctex" DEPEND="tetex? ( virtual/tetex ) @@ -18,10 +18,12 @@ DEPEND="tetex? ( virtual/tetex ) auctex? ( app-emacs/auctex ) >=sys-apps/texinfo-4.3 x86? ( !clisp? ( !sbcl? ( !gcl? ( !cmucl? ( dev-lisp/cmucl ) ) ) ) ) + amd64? ( !gcl? ( dev-lisp/sbcl ) ) clisp? ( >=dev-lisp/clisp-2.33.2-r1 ) x86? ( cmucl? ( >=dev-lisp/cmucl-19a ) ) x86? ( gcl? ( >=dev-lisp/gcl-2.6.7 ) ) - x86? ( sbcl? ( >=dev-lisp/sbcl-0.8.14 ) )" + x86? ( sbcl? ( >=dev-lisp/sbcl-0.8.14 ) ) + amd64? ( gcl? ( >=dev-lisp/gcl-2.6.7 ) )" RDEPEND=">=dev-lang/tk-8.3.3 >=media-gfx/gnuplot-4.0-r1" @@ -56,7 +58,8 @@ src_compile() { myconf="${myconf} --enable-sbcl" fi else - myconf="${myconf} --enable-cmucl" + use x86 && myconf="${myconf} --enable-cmucl" + use amd64 && myconf="${myconf} --enable-sbcl" fi ./configure --prefix=/usr ${myconf} || die |