blob: 1e99f629515127765f8532c3c2fa6c65162c1804 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/slime-cvs/slime-cvs-0-r3.ebuild,v 1.3 2005/03/18 08:22:27 mkennedy Exp $
ECVS_SERVER="common-lisp.net:/project/slime/cvsroot"
if [ -z "${ECVS_BRANCH}" ]; then
ECVS_BRANCH="HEAD"
fi
ECVS_MODULE="slime"
ECVS_USER="anonymous"
ECVS_PASS="anonymous"
ECVS_CVS_OPTIONS="-dP"
inherit elisp cvs
DESCRIPTION="SLIME, the Superior Lisp Interaction Mode (Extended)"
HOMEPAGE="http://common-lisp.net/project/slime/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="doc"
DEPEND="virtual/emacs
dev-lisp/common-lisp-controller
virtual/commonlisp
doc? ( virtual/tetex sys-apps/texinfo )"
S="${WORKDIR}/slime"
CLPACKAGE=swank
src_compile() {
echo "(add-to-list 'load-path \".\")" >load-path
emacs --batch -q -l load-path -f batch-byte-compile *.el || die
use doc && make -C doc all slime.pdf
}
src_install() {
elisp-install ${PN} *.{el,elc} ${FILESDIR}/swank-loader.lisp
elisp-site-file-install ${FILESDIR}/70slime-gentoo.el
dodoc README* ChangeLog
zcat ${D}/usr/share/doc/${PF}/ChangeLog.gz \
>${D}/usr/share/emacs/site-lisp/slime-cvs/ChangeLog
insinto /usr/share/common-lisp/source/swank
doins *.lisp ${FILESDIR}/swank.asd
dodir /usr/share/common-lisp/systems
dosym /usr/share/common-lisp/source/swank/swank.asd \
/usr/share/common-lisp/systems
if use doc; then
dodoc doc/slime.{ps,pdf}
doinfo doc/slime.info
fi
}
pkg_preinst() {
unregister-common-lisp-source $CLPACKAGE || die
}
pkg_postrm() {
if ! [ -d /usr/share/common-lisp/source/$CLPACKAGE ]; then
unregister-common-lisp-source $CLPACKAGE || die
fi
elisp-site-regen || die
}
pkg_postinst() {
register-common-lisp-source $CLPACKAGE || die
elisp-site-regen || die
while read line; do einfo "${line}"; done <<EOF
SLIME notes for Gentoo
----------------------
If you're interested in hacking this ebuild, slime-cvs uses its own
swank.asd system definition file and swank-loader.lisp.
As always with CVS ebuilds, DO NOT report problems to upstream.
Always report problems to the Gentoo Bugzilla at
http://bugs.gentoo.org.
Matthew Kennedy <mkennedy@gentoo.org>
EOF
}
|