blob: 32cb53f058dda6c79c864ccbda0cb252e86e133a (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2
DESCRIPTION="A native Common Lisp LDAP client implementation of part of RFC 2251."
HOMEPAGE="http://homepage.mac.com/ignavusinfo/trivial-ldap/ http://www.cliki.net/trivial-ldap"
SRC_URI="http://homepage.mac.com/ignavusinfo/${PN}/${P}.tar.gz"
LICENSE="Clarified-Artistic"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND="dev-lisp/usocket
dev-lisp/cl-plus-ssl"
src_install() {
common-lisp-install ${PN}.{lisp,asd}
common-lisp-symlink-asdf
dohtml trivial-ldap.html
docinto examples && dodoc example.lisp
}
|