blob: 74c1f6ad09872b0c580f0789076e6f5548b14b18 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls-cvs/ecls-cvs-1.ebuild,v 1.1 2003/10/07 16:30:08 mkennedy Exp $
ECVS_SERVER="cvs.sourceforge.net:/cvsroot/ecls"
ECVS_MODULE="ecls"
ECVS_USER="anonymous"
ECVS_CVS_OPTIONS="-dP"
inherit cvs
IUSE="X"
S=${WORKDIR}/${ECVS_MODULE}
DESCRIPTION="ECL stands for Embeddable Common-Lisp. The ECL project is an effort to modernize Giusseppe Attardi's ECL environment to produce an implementation of the Common-Lisp language which complies to the ANSI X3J13 definition of the language."
SRC_URI=""
HOMEPAGE="http://ecls.sourceforge.net/"
RESTRICT="$RESTRICT nostrip"
SLOT="0"
LICENSE="BSD LGPL-2"
KEYWORDS="~x86"
DEPEND="X? ( virtual/x11 )
=dev-libs/gmp-4*"
src_compile() {
use X && myconf="--with-x" || myconf="--without-x"
econf --enable-local-gmp \
--disable-local-boehm \
--with-tcp \
--with-ffi \
--with-clos-streams \
${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 install || die
dohtml doc/*.html
dodoc ANNOUNCEMENT Copyright LGPL
}
|