blob: 210c8f333835bf052471efc2bf834bca5a36eaf2 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-clx-sbcl/cl-clx-sbcl-0.5.4-r1.ebuild,v 1.4 2004/06/26 13:08:01 dholm Exp $
inherit common-lisp eutils
DESCRIPTION="CLX for SBCL"
HOMEPAGE="http://ftp.linux.org.uk/pub/lisp/sbcl/ http://www.cliki.net/CLX"
SRC_URI="http://ftp.linux.org.uk/pub/lisp/sbcl/clx_${PV}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND="dev-lisp/common-lisp-controller
dev-lisp/sbcl"
CLPACKAGE=clx
S=${WORKDIR}/clx_${PV}
src_unpack() {
unpack ${A}
# this patch prevents building on clisp or cmucl
epatch ${FILESDIR}/${PV}-gentoo.patch
find ${S} -type d -name CVS -exec rm -rf \;
}
src_install() {
for i in . demo test debug; do
insinto /usr/share/common-lisp/source/clx/${i}
doins ${S}/${i}/*.lisp
done
insinto /usr/share/common-lisp/source/clx
doins clx.asd
common-lisp-system-symlink
dodoc CHANGES NEWS README*
}
|