Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/
Date: Sun, 29 Dec 2013 10:11:21
Message-Id: 1388278958.d6083b505183e3be523f0ce2f52c72556a8a34df.jlec@gentoo
1 commit: d6083b505183e3be523f0ce2f52c72556a8a34df
2 Author: zcj <ustcscgy <AT> 163 <DOT> com>
3 AuthorDate: Sun Dec 29 00:26:58 2013 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 01:02:38 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d6083b50
7
8 sci-mathematics/open-axiom: version bump to 1.4.2
9
10 ---
11 sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild | 40 ++++++++++++++++++++++
12 1 file changed, 40 insertions(+)
13
14 diff --git a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
15 new file mode 100644
16 index 0000000..ebcb994
17 --- /dev/null
18 +++ b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
19 @@ -0,0 +1,40 @@
20 +# Copyright 1999-2013 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI=5
25 +
26 +DESCRIPTION="Symbolic and algebraic computations system"
27 +HOMEPAGE="http://www.open-axiom.org/"
28 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
29 +
30 +LICENSE="BSD"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~x86"
33 +
34 +IUSE="X"
35 +
36 +RDEPEND="X? ( x11-libs/libXpm )"
37 +DEPEND="${RDEPEND}
38 + app-text/noweb
39 + >=dev-lisp/sbcl-1.0.22"
40 +
41 +src_configure() {
42 + # There is an option to compile with other lisps. However:
43 + # - gcl is getting obsolete and unmaintained and is hard masked
44 + # - could not make it work with ecls
45 + econf \
46 + --with-lisp=sbcl \
47 + $(use_with X x)
48 +}
49 +
50 +src_compile() {
51 + # unfortunately could not track down the broken parallel build
52 + # -j5 ok but -j30 sbcl stalled
53 + emake -j1
54 +}
55 +
56 +src_install() {
57 + emake DESTDIR="${D}" install
58 + dodoc ChangeLog* NEWS README AUTHORS MAINTAINERS TODO STYLES
59 +}