blob: b3099f2105ee7f252241f364ad0259675d3c4da3 (
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.8.18.ebuild,v 1.4 2005/03/16 07:36:15 mkennedy Exp $
inherit common-lisp-common eutils
BV_X86=0.8.1
BV_PPC=0.8.8
BV_SPARC=0.7.13
BV_MIPS=0.7.10
DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp."
HOMEPAGE="http://sbcl.sourceforge.net/"
SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2
mirror://sourceforge/sbcl/${P}-html.tar.bz2
x86? ( mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 )
ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 )
sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 )
mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz )"
LICENSE="MIT"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~mips"
IUSE="threads doc nosource unicode ldb"
DEPEND=">=dev-lisp/common-lisp-controller-3.91
>=dev-lisp/cl-defsystem3-3.3i-r3
>=dev-lisp/cl-asdf-1.84
sys-apps/texinfo
doc? ( virtual/tetex )"
PROVIDE="virtual/commonlisp"
pkg_setup() {
if use hardened; then
die 'So-called "hardened" USE features are incompatible with SBCL.'
fi
}
src_unpack() {
if use x86; then
unpack ${PN}-${BV_X86}-x86-linux-binary.tar.bz2
mv ${PN}-${BV_X86} x86-binary
elif use ppc; then
unpack ${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2
mv ${PN}-${BV_PPC}-ppc-linux ppc-binary
elif use sparc; then
unpack ${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2
echo mv ${PN}-${BV_SPARC} sparc-binary || die
mv ${PN}-${BV_SPARC} sparc-binary || die
elif use mips; then
unpack ${PN}-${BV_SPARC}-mips-linux-binary.tar.gz
mv ${PN}-${BV_SPARC}-mips-linux mips-binary
fi
unpack ${P}-source.tar.bz2
epatch ${FILESDIR}/${PV}/sbcl-gentoo.patch
epatch ${FILESDIR}/${PV}/sbcl-no-tests-gentoo.patch
cp ${FILESDIR}/${PV}/customize-target-features.lisp-prefix \
${S}/customize-target-features.lisp
use x86 && use threads \
&& echo '(enable :sb-thread)' \
>>${S}/customize-target-features.lisp
use ldb \
&& echo '(enable :sb-ldb)' \
>>${S}/customize-target-features.lisp
echo '(enable :sb-futex)' >>${S}/customize-target-features.lisp
echo '(disable :sb-test)' >>${S}/customize-target-features.lisp
! use unicode \
&& echo '(disable :sb-unicode)' \
>>${S}/customize-target-features.lisp
cat ${FILESDIR}/${PV}/customize-target-features.lisp-suffix \
>>${S}/customize-target-features.lisp
find ${S} -type f -name .cvsignore -exec rm -f '{}' \;
find ${S} -type d -name CVS \) -exec rm -rf '{}' \;
find ${S} -type f -name \*.c -exec chmod 644 '{}' \;
}
src_compile() {
local bindir
use x86 && bindir=../x86-binary
use ppc && bindir=../ppc-binary
use sparc && bindir=../sparc-binary
use mips && bindir=../mips-binary
PATH=${bindir}/src/runtime:${PATH} SBCL_HOME=${bindir}/output GNUMAKE=make \
./make.sh 'sbcl
--sysinit /dev/null
--userinit /dev/null
--no-debugger
--core ${bindir}/output/sbcl.core' \
|| die
cd ${S}/doc/manual
make info
use doc && make ps pdf
}
src_install() {
unset SBCL_HOME
insinto /etc/
doins ${FILESDIR}/${PV}/sbclrc # Gentoo specific (from Debian)
exeinto /usr/lib/common-lisp/bin
doexe ${FILESDIR}/${PV}/sbcl.sh # Gentoo specific (from Debian)
dodir /usr/share/man
INSTALL_ROOT=${D}/usr sh install.sh
mv ${D}/usr/lib/sbcl/sbcl.core ${D}/usr/lib/sbcl/sbcl-dist.core
insinto /usr/lib/sbcl
doins ${FILESDIR}/${PV}/install-clc.lisp # Gentoo specific (from Debian)
doman doc/sbcl-asdf-install.1
dodoc BUGS COPYING CREDITS INSTALL NEWS OPTIMIZATIONS PRINCIPLES README STYLE SUPPORT TLA TODO
dodoc ${FILESDIR}/${PV}/README.Gentoo
dohtml doc/html/*
doinfo ${S}/doc/manual/*.info
use doc && dodoc ${S}/doc/manual/*.{pdf,ps}
keepdir /usr/lib/common-lisp/sbcl
if ! use nosource; then
# install the SBCL source
find ${S}/src -type f -name \*.fasl |xargs rm -f
mv ${S}/src ${D}/usr/lib/sbcl/
fi
impl-save-timestamp-hack sbcl || die
}
pkg_postinst() {
standard-impl-postinst sbcl
}
pkg_postrm() {
standard-impl-postrm sbcl /usr/bin/sbcl
}
|