blob: 23ea721209493f53961a77532e8e7416e79530bd (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/slime/slime-2.0.0.20061118.ebuild,v 1.5 2007/04/07 15:07:57 josejx Exp $
inherit elisp eutils
DESCRIPTION="SLIME, the Superior Lisp Interaction Mode (Extended)"
HOMEPAGE="http://common-lisp.net/project/slime/"
# use ${FILESDIR}/new-slime-ball to create new snapshots
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE="doc"
DEPEND="virtual/emacs
virtual/commonlisp
doc? ( sys-apps/texinfo )"
CLPACKAGE=swank
src_compile() {
elisp-comp *.el || die
use doc && make -C doc slime.info
}
src_install() {
elisp-install ${PN} *
elisp-site-file-install ${FILESDIR}/70slime-gentoo.el
dodoc README* ChangeLog HACKING NEWS PROBLEMS
dodir /usr/share/common-lisp/systems
dosym /usr/share/emacs/site-lisp/${PN}/swank.asd \
/usr/share/common-lisp/systems/
if use doc; then
doinfo doc/slime.info
fi
}
|