blob: 67ea52f0b811e2ee50efb4bffff6311b8cb64bb2 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-db-sockets/cl-db-sockets-0.57.1.ebuild,v 1.4 2003/09/06 22:35:54 msterret Exp $
inherit common-lisp
DESCRIPTION="Dan Barlow's sockets library for Common Lisp programs."
HOMEPAGE="http://cclan.sourceforge.net
http://packages.debian.org/unstable/devel/cl-db-sockets.html"
SRC_URI="http://ftp.debian.org/debian/pool/main/c/cl-db-sockets/${PN}_${PV}.orig.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-lisp/common-lisp-controller
virtual/commonlisp
dev-lisp/cl-rt
dev-lisp/sbcl"
CLPACKAGE=db-sockets
S=${WORKDIR}/${P}
# TODO: need to port constants-arch.lisp (use SBCL to generate it for
# other implementations)
src_compile() {
make || die
}
src_install() {
exeinto /usr/lib/db-sockets
doexe alien/alien.so
common-lisp-install array-data.lisp constants.lisp def-to-lisp.lisp \
defpackage.lisp doc.lisp foreign-glue.lisp inet.lisp malloc.lisp \
misc.lisp name-service.lisp sockets.lisp sockopt.lisp split.lisp \
tests.lisp unix.lisp constants-arch.lisp ${FILESDIR}/db-sockets.asd
common-lisp-system-symlink
dohtml *.html
dodoc INSTALL NEWS README* TODO
}
|