diff options
author | Fabian Groffen <grobian@gentoo.org> | 2010-10-31 19:17:41 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2010-10-31 19:17:41 +0000 |
commit | 7f150689882d04e15003e81299dba7440bce6d44 (patch) | |
tree | 7a239fc185266ce4a71b7fe20157b478708d719c /sci-mathematics | |
parent | Disable support for pysqlite. (diff) | |
download | gentoo-2-7f150689882d04e15003e81299dba7440bce6d44.tar.gz gentoo-2-7f150689882d04e15003e81299dba7440bce6d44.tar.bz2 gentoo-2-7f150689882d04e15003e81299dba7440bce6d44.zip |
Backport Prefix changes to 5.20.1-r2, keyworded appropriately, bug #341987
(Portage version: 2.2.01.17133-prefix/cvs/Darwin powerpc)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/maxima/ChangeLog | 5 | ||||
-rw-r--r-- | sci-mathematics/maxima/maxima-5.20.1-r2.ebuild | 14 |
2 files changed, 11 insertions, 8 deletions
diff --git a/sci-mathematics/maxima/ChangeLog b/sci-mathematics/maxima/ChangeLog index c40cd3ce8096..bc47830db8c5 100644 --- a/sci-mathematics/maxima/ChangeLog +++ b/sci-mathematics/maxima/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/maxima # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.82 2010/09/17 11:23:55 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.83 2010/10/31 19:17:41 grobian Exp $ + + 31 Oct 2010; Fabian Groffen <grobian@gentoo.org> maxima-5.20.1-r2.ebuild: + Backport Prefix changes to 5.20.1-r2, keyworded appropriately, bug #341987 *maxima-5.22.1 (17 Sep 2010) diff --git a/sci-mathematics/maxima/maxima-5.20.1-r2.ebuild b/sci-mathematics/maxima/maxima-5.20.1-r2.ebuild index d931fbc18c57..362c2e7d1f11 100644 --- a/sci-mathematics/maxima/maxima-5.20.1-r2.ebuild +++ b/sci-mathematics/maxima/maxima-5.20.1-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.20.1-r2.ebuild,v 1.1 2010/04/12 11:58:46 grozin Exp $ -EAPI=2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.20.1-r2.ebuild,v 1.2 2010/10/31 19:17:41 grobian Exp $ +EAPI=3 inherit eutils elisp-common DESCRIPTION="Free computer algebra environment based on Macsyma" @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" # Supported lisps with readline SUPP_RL="gcl clisp" @@ -73,7 +73,7 @@ RDEPEND="${RDEPEND} DEPEND="${RDEPEND} sys-apps/texinfo" -TEXMF=/usr/share/texmf-site +TEXMF="${EPREFIX}"/usr/share/texmf-site NO_INIT_PATCH_PV="5.19.1" pkg_setup() { @@ -148,11 +148,11 @@ src_configure() { done fi - econf ${myconf} + econf ${myconf} --with-lispdir="${SITELISP}/${PN}" } src_install() { - einstall emacsdir="${D}${SITELISP}/${PN}" || die "einstall failed" + einstall emacsdir="${ED}${SITELISP}/${PN}" || die "einstall failed" use tk && make_desktop_entry xmaxima xmaxima \ /usr/share/${PN}/${PV}/xmaxima/maxima-new.png \ @@ -177,7 +177,7 @@ src_install() { pkg_preinst() { # some lisps do not read compress info files (bug #176411) - for infofile in "${D}"/usr/share/info/*.bz2 ; do + for infofile in "${ED}"/usr/share/info/*.bz2 ; do bunzip2 "${infofile}" done } |