blob: 9c93d7300d600f0aafe70da2915143a0b6449343 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-0.9e.ebuild,v 1.1 2005/01/13 22:44:00 mkennedy Exp $
inherit eutils
DESCRIPTION="ECL is an embeddable Common Lisp implementation."
SRC_URI="mirror://sourceforge/ecls/ecl-${PV}-fix-1.tgz"
HOMEPAGE="http://ecls.sourceforge.net/"
SLOT="0"
LICENSE="BSD LGPL-2"
KEYWORDS="~x86"
DEPEND="X? ( virtual/x11 )
=dev-libs/gmp-4*
dev-libs/boehm-gc
app-text/texi2html"
IUSE="X"
S=${WORKDIR}/ecl-${PV}
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PV}-texinfo-gentoo.patch || die
epatch ${FILESDIR}/${PV}-headers-gentoo.patch || die
}
src_compile() {
myconf="--enable-local-gmp --enable-local-boehm --with-tcp"
myconf="$myconf --with-ffi --with-clos-streams --with-cmuformat `use_with X x`"
einfo "Configuring with: $myconf"
econf ${myconf} || die
make || die
}
src_install () {
make bindir=${D}/usr/bin \
infodir=${D}/usr/share/info \
mandir=${D}/usr/share/man \
libdir=${D}/usr/lib/ecl \
docdir=${D}/usr/share/doc/${PF} install || true
dohtml doc/*.html
dodoc ANNOUNCEMENT Copyright LGPL
}
|