blob: 619cea793a4891000d06ee0dead3ef2046c309a0 (
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl-mt/sbcl-mt-0.8.4.20.ebuild,v 1.2 2003/10/22 19:53:13 mkennedy Exp $
inherit common-lisp-common
DESCRIPTION="Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. This is the multreaded version of SBCL"
HOMEPAGE="http://sbcl.sourceforge.net/"
BV_X86=0.8.1
DEB_PV=1
SRC_URI="http://ftp.debian.org/debian/pool/main/s/sbcl-mt/sbcl-mt_${PV}.orig.tar.gz
http://ftp.debian.org/debian/pool/main/s/sbcl-mt/sbcl-mt_${PV}-${DEB_PV}.diff.gz
x86? ( mirror://sourceforge/sbcl/sbcl-${BV_X86}-x86-linux-binary.tar.bz2 )"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86"
PROVIDE="virtual/commonlisp"
# the SRC_URI trickery needs this
DEPEND=">=sys-apps/portage-2.0.27
dev-lisp/common-lisp-controller
doc? ( app-text/openjade )"
S=${WORKDIR}/${P}
src_unpack() {
if use x86; then
unpack sbcl-${BV_X86}-x86-linux-binary.tar.bz2
mv sbcl-${BV_X86} x86-binary
fi
unpack sbcl-mt_${PV}.orig.tar.gz
unpack sbcl-mt_${PV}-${DEB_PV}.diff.gz
epatch sbcl-mt_${PV}-${DEB_PV}.diff
cp ${FILESDIR}/customize-target-features.lisp ${S}/
}
src_compile() {
local bindir
use x86 && bindir=../x86-binary
# use ppc && bindir=../ppc-binary
# use sparc && bindir=../sparc-binary
# use mips && bindir=../mips-binary
# TODO: allow the user to chose between SBCL, CMUCL and CLISP for bootstrapping
PATH=${bindir}/src/runtime:${PATH} SBCL_HOME=${bindir}/output GNUMAKE=make \
./make.sh 'sbcl --sysinit /dev/null --userinit /dev/null --noprogrammer --core ${bindir}/output/sbcl.core' || die
if use doc; then
cd doc && chmod +x make-doc.sh
./make-doc.sh
fi
}
src_install() {
unset SBCL_HOME
insinto /etc/
doins ${FILESDIR}/sbcl-mt.rc
exeinto /usr/lib/common-lisp/bin
doexe debian/sbcl-mt.sh
INSTALL_ROOT=${D}/usr sh install.sh
mv ${D}/usr/lib/sbcl ${D}/usr/lib/sbcl-mt
mv ${D}/usr/bin/sbcl ${D}/usr/bin/sbcl-mt
# dosym /usr/lib/sbcl-mt/asdf-install/asdf-install /usr/bin/sbcl-asdf-install
rm ${D}/usr/bin/sbcl-asdf-install
mv ${D}/usr/lib/sbcl-mt/sbcl.core ${D}/usr/lib/sbcl-mt/sbcl-dist.core
insinto /usr/lib/sbcl-mt
doins debian/install-clc.lisp
dodir /usr/share
mv ${D}/usr/man ${D}/usr/share/
mv ${D}/usr/share/man/man1/sbcl.1 ${D}/usr/share/man/man1/sbcl-mt.1
# doman debian/sbcl-asdf-install.1
use doc && dohtml doc/html/*
dodoc BUGS COPYING CREDITS INSTALL NEWS OPTIMIZATIONS PRINCIPLES \
README STYLE TLA TODO
do-debian-credits
find ${D} -type f -name .cvsignore -exec rm -f '{}' \;
find ${D} -type f -name \*.c -exec chmod 644 '{}' \;
# Since the Portage emerge step kills file timestamp information,
# we need to compensate by ensuring all .fasl files are more recent
# than their .lisp source.
dodir /usr/share/sbcl-mt
tar cpvzf ${D}/usr/share/sbcl-mt/portage-timestamp-compensate \
-C ${D}/usr/lib/sbcl-mt .
}
pkg_postinst() {
tar xvpzf /usr/share/sbcl-mt/portage-timestamp-compensate -C /usr/lib/sbcl-mt
# force existing CLC-managed sources to re-compile (possibly unnecessary)
rm -rf /usr/lib/common-lisp/sbcl-mt/* &>/dev/null || true
/usr/bin/clc-autobuild-impl sbcl-mt yes
/usr/sbin/register-common-lisp-implementation sbcl-mt
}
# we do the clean up in postrm since the existence of /usr/bin/scbl-mt
# in postrm implies that we're doing an upgrade and DONT want our new
# version unreigistered.
# pkg_prerm() {
# /usr/sbin/unregister-common-lisp-implementation sbcl-mt
# }
pkg_postrm() {
# Since we keep our own time stamps we must manually remove them
# here.
if [ ! -x /usr/bin/sbcl-mt ]; then
rm -rf /usr/lib/sbcl-mt || true
einfo "Unregistering Common Lisp implementation ${PN}"
rm -f /usr/lib/common-lisp/bin/${PN}.sh || die
fi
}
|