blob: 1d84fbaaeb08d0239fb06d3bbdf78c299c40d55e (
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-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.1.0.ebuild,v 1.2 2005/10/03 04:59:29 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}/
CLPACKAGE=bind
src_install() {
common-lisp-install *.{lisp,asd}
common-lisp-system-symlink
}
|