blob: 77365b2c84bb14f575a457b1d3a2e1c61d73b634 (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/clisp/clisp-2.31.ebuild,v 1.8 2004/06/24 23:45:03 agriffis Exp $
inherit eutils gcc
DESCRIPTION="A portable, bytecode-compiled implementation of Common Lisp"
HOMEPAGE="http://clisp.sourceforge.net/"
SRC_URI="mirror://sourceforge/clisp/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="x86"
IUSE="X threads fastcgi postgres ldap nls"
DEPEND="dev-libs/libsigsegv
dev-lisp/common-lisp-controller
fastcgi? ( dev-libs/fcgi )
postgres? ( dev-db/postgresql )
X? ( virtual/x11 )
ldap? ( net-nds/openldap )
readline? ( sys-libs/readline )
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PV}/bindings-glibc-linux.lisp-gentoo.patch
epatch ${FILESDIR}/${PV}/bindings-wildcard-fnmatch.c-gentoo.patch
epatch ${FILESDIR}/${PV}/fastcgi-Makefile.in-gentoo.patch
}
src_compile() {
export CC="$(gcc-getCC) ${CFLAGS}"
unset CFLAGS CXXFLAGS
local myconf="--with-dynamic-ffi
--with-unicode
--with-module=regexp
--with-module=syscalls
--with-module=wildcard
--with-module=bindings/glibc"
use readline || myconf="${myconf} --with-noreadline"
use nls || myconf="${myconf} --with-nogettext"
use X && myconf="${myconf} --with-module=clx/new-clx"
use postgres && myconf="${myconf} --with-module=postgresql"
use fastcgi && myconf="${myconf} --with-module=fastcgi"
# the following modules are not supported
# use ldap && myconf="${myconf} --with-module=dirkey"
# use threads && myconf="${myconf} --with-threads=POSIX_THREADS"
./configure --prefix=/usr ${myconf} build || die "./configure failed"
cd build
./makemake ${myconf} >Makefile
make config.lisp
sed 's,"vi","nano",g' <config.lisp >config.gentoo && mv config.gentoo config.lisp || die
make || die
}
src_install() {
cd build && make DESTDIR=${D} prefix=/usr install-bin || die
doman clisp.1
dodoc SUMMARY README* NEWS MAGIC.add GNU-GPL COPYRIGHT \
ANNOUNCE clisp.dvi clisp.html
rm -f ${D}/usr/lib/clisp/base/*
(cd ${D}/usr/lib/clisp/base && ln -s ../full/* .)
chmod a+x ${D}/usr/lib/clisp/clisp-link
# install common-lisp-controller profile
exeinto /usr/lib/common-lisp/bin
doexe ${FILESDIR}/clisp.sh
insinto /usr/lib/clisp
doins ${FILESDIR}/install-clc.lisp
keepdir /usr/lib/common-lisp/clisp
}
pkg_preinst() {
local clisp_dir=/usr/lib/clisp
local old_mem=$clisp_dir/full/lispinit.mem
local new_mem=$clisp_dir/full/lispinit-new.mem
local clean_mem=$clisp_dir/full/lispinit-clean.mem
local lisp_run=$clisp_dir/full/lisp.run
rm -f $old_mem $new_mem $clean_mem $lisp_run
}
pkg_postinst() {
chown cl-builder:cl-builder /usr/lib/common-lisp/clisp
rm -rf /usr/lib/common-lisp/clisp/*
/usr/bin/clc-autobuild-impl clisp yes
/usr/sbin/register-common-lisp-implementation clisp
}
pkg_prerm() {
rm -rf /usr/lib/common-lisp/clisp/*
}
|