summaryrefslogtreecommitdiff
path: root/sci-mathematics/open-axiom/open-axiom-1.4.1-r1.ebuild
blob: 55e53283e0b0871947609dc008534345eeb7a7aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=4
inherit eutils

DESCRIPTION="The open computer algebra system (Axiom fork)"
HOMEPAGE="http://open-axiom.org"
SRC_URI="http://sourceforge.net/projects/${PN}/files/${PV}/${P}.tar.bz2"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
LISPS='sbcl clisp ecls clozurecl'
REQUIRED_USE="^^ ( $LISPS )"

# The first lisp is default
IUSE="X threads +$LISPS"



RDEPEND="X? ( x11-libs/libXpm )"

DEPEND="${RDEPEND}
sbcl?      ( >=dev-lisp/sbcl-1.0.22 !=dev-lisp/sbcl-1.0.29 )
clisp?     ( >=dev-lisp/clisp-1.44 )
ecls?      ( >=dev-lisp/ecls-11.1.1  )
clozurecl? ( >=dev-lisp/clozurecl-1.3 )"



src_configure() {
	local l lisp;
	for l in $LISPS; do
		use $l && break;
	done

	case $l in
		clozurecl) lisp=ccl;;
		ecls)      lisp=ecl;;
		*)         lisp=$l;;
	esac

	econf \
		$(use_with X x) \
		--disable-gcl \
		--with-lisp=$lisp \
		--with-gnu-ld \
		$(use_enable threads threads) \
		|| die "econf failed"
}

src_compile() {
	# Parallel make broken
	emake -j1 || die "emake failed"

}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc ChangeLog* NEWS README AUTHORS MAINTAINERS TODO STYLES INSTALL
	doicon ${FILESDIR}/open-axiom.png
	make_desktop_entry \
		open-axiom \
		OpenAxiom \
		open-axiom \
		"" \
		"Terminal=true"
}