blob: 1d751deeae36ce6e1c3349f63c68ae0ee92e339e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-bind/cl-bind-0.2.ebuild,v 1.1 2005/10/03 14:26:47 mkennedy Exp $
inherit common-lisp eutils
DESCRIPTION="BIND combines LET*, DESTRUCTURING-BIND and MULTIPLE-VALUE-BIND into a single form."
HOMEPAGE="http://www.cliki.net/bind http://www.metabang.com/"
SRC_URI="http://www.metabang.com/bind_${PV}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="dev-lisp/cl-plus"
S=${WORKDIR}/bind/dev
CLPACKAGE=bind
src_install() {
common-lisp-install *.{lisp,asd}
common-lisp-system-symlink
dodoc COPYING
}
|