blob: 43d11166e864243785d51fc04f9a23b9a0441659 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils common-lisp-2
DESCRIPTION="ASDF is Another System Definition Facility for Common Lisp"
HOMEPAGE="http://www.cliki.net/asdf"
SRC_URI="http://common-lisp.net/~sionescu/files/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND="!dev-lisp/cl-${PN}"
src_install() {
common-lisp-install {asdf,wild-modules,asdf-install}.lisp
dodoc README
docinto examples && dodoc test/*
}
|