blob: aa26316a7fc7d3a94b89506c16cdcdc6e928941e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-ssl/cl-ssl-0.2.2004.01.04.ebuild,v 1.6 2005/04/17 00:51:42 mkennedy Exp $
inherit common-lisp
DEB_PV=
DESCRIPTION="Common Lisp UFFI interface of the OpenSSL library."
HOMEPAGE="http://packages.debian.org/unstable/devel/cl-ssl.html"
SRC_URI="http://ftp.debian.org/debian/pool/main/c/cl-ssl/cl-ssl_${PV/.2004/+cvs.2004}.tar.gz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="x86 ~amd64 ~ppc"
IUSE=""
DEPEND="dev-libs/openssl
dev-lisp/cl-uffi"
CLPACKAGE=cl-ssl
S=${WORKDIR}/${PN}-${PV/.2004/+cvs.2004}
src_compile() {
make -C cl-ssl linux || die
}
src_install() {
common-lisp-install cl-ssl/*.asd cl-ssl/*.lisp
common-lisp-system-symlink
dodoc COPYING README preamble.html
exeinto /usr/lib/cl-ssl
doexe cl-ssl/ssl.so
do-debian-credits
}
|