summaryrefslogtreecommitdiff
blob: 02a671d590ee484ee7c6c940c8b50b0f69efa7cc (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=2

EGIT_REPO_URI="http://ecls.sourceforge.net/git/ecl/.git"

inherit eutils multilib git

DESCRIPTION="ECL is an embeddable Common Lisp implementation."
HOMEPAGE="http://common-lisp.net/project/ecl/"

LICENSE="BSD LGPL-2"
SLOT="0"
KEYWORDS=""
IUSE="X cxx debug +threads +unicode"

DEPEND="dev-libs/gmp
		app-text/texi2html
		>=dev-libs/boehm-gc-6.8
		cxx? ( dev-libs/boehm-gc[-nocxx] )"

PROVIDE="virtual/commonlisp"

src_unpack() {
	git_src_unpack

	# change LISP-IMPLEMENTATION-VERSION because upstream version for
	# live builds contains spaces which ASDF-BINARY-LOCATIONS doesn't like
	cp "${FILESDIR}"/${PV}/config.lsp.in "${S}"/src/lsp
	sed -i "s:@GENTOODATE@:$(date +%F):" "${S}"/src/lsp/config.lsp.in

	epatch "${FILESDIR}"/${PV}/headers-gentoo.patch
}

src_configure() {
	econf \
		--with-system-gmp \
		--enable-gengc \
		--enable-boehm=system \
		--enable-longdouble \
		$(use_with cxx) \
		$(use_enable debug) \
		$(use_enable threads) \
		$(use_with threads __thread) \
		$(use_enable unicode) \
		$(use_with X x) \
		$(use_with X clx) \
		|| die "econf failed"
}

src_compile() {
	#parallel fails
	emake -j1 || die "make failed"
}

src_install () {
	emake DESTDIR="${D}" install || die "Could not build ECL"

	dohtml doc/*.html
	dodoc ANNOUNCEMENT Copyright
	dodoc "${FILESDIR}"/README.Gentoo
}