blob: 7d2fff449758096d7226a9d911cfcbb03923daa6 (
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
|
# 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/sbcl-0.8.4-r2.ebuild,v 1.1 2003/10/12 01:37:57 mkennedy Exp $
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. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)"
HOMEPAGE="http://sbcl.sourceforge.net/"
BV_X86=0.8.1
BV_PPC=0.7.13
BV_SPARC=0.7.13
BV_MIPS=0.7.10
DEB_PV=1
SRC_URI="http://ftp.debian.org/debian/pool/main/s/sbcl/sbcl_${PV}.orig.tar.gz
http://ftp.debian.org/debian/pool/main/s/sbcl/sbcl_${PV}-${DEB_PV}.diff.gz
x86? ( mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 )
ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-binary-linux-ppc.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 )
mirror://sourceforge/sbcl/sbcl-${PV}-html.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~mips"
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 ${PN}-${BV_X86}-x86-linux-binary.tar.bz2
mv ${PN}-${BV_X86} x86-binary
elif use ppc; then
unpack ${PN}-${BV_PPC}-ppc-binary-linux.tar.bz2
mv ${PN}-${BV_PPC}-ppc-linux ppc-binary
elif use sparc; then
unpack ${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2
mv ${PN}-${BV_SPARC}-sparc-linux sparc-binary
elif use mips; then
unpack ${PN}-${BV_SPARC}-mips-linux-binary.tar.gz
mv ${PN}-${BV_SPARC}-mips-linux mips-binary
fi
unpack sbcl_${PV}.orig.tar.gz
unpack sbcl_${PV}-${DEB_PV}.diff.gz
epatch sbcl_${PV}-${DEB_PV}.diff
}
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'
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.rc
exeinto /usr/lib/common-lisp/bin
doexe ${FILESDIR}/sbcl.sh
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}/install-clc.lisp
dodir /usr/share
mv ${D}/usr/man ${D}/usr/share/
doman debian/sbcl-asdf-install.1
use doc && dohtml doc/html/*
dodoc BUGS COPYING CREDITS INSTALL NEWS OPTIMIZATIONS PRINCIPLES README STYLE TLA TODO \
debian/README.Debian debian/changelog debian/copyright
find ${D} -type f -name .cvsignore |xargs rm -f
}
pkg_postinst() {
einfo ">>> Fixing permissions for executables and directories..."
find /usr/share/common-lisp/source -type d -o \( -type f -perm +111 \) |xargs chmod 755
einfo ">>> fix permissions for non-executable files..."
find /usr/share/common-lisp/source -type f ! -perm -111 |xargs chmod 644
# force recompile
rm -rf /usr/lib/common-lisp/sbcl/
# since the Portage emerge step kills file timestamp information,
# we need to compensate by ensuring all fasl files are more recent
# than their source.
sleep 5 && find /usr/lib/sbcl -type f -name \*.fasl |xargs touch
/usr/sbin/register-common-lisp-implementation sbcl
}
pkg_prerm() {
/usr/sbin/unregister-common-lisp-implementation sbcl
}
|