blob: d67270bf2c4be366c4461ce5d70023aa512af7ed (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit common-lisp-2 git
DESCRIPTION="Grid Structured Data library."
HOMEPAGE="http://common-lisp.net/project/gsll/"
EGIT_REPO_URI="git://repo.or.cz/gsd.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="doc"
RDEPEND=">=dev-lisp/cffi-0.10.5
dev-lisp/trivial-garbage
dev-lisp/fsbv
dev-lisp/asdf-system-connections
dev-lisp/iterate
dev-lisp/alexandria
dev-lisp/lisp-unit"
CLSYSTEMS="c-array/c-array grid/grid grid/grid-tests"
src_install() {
common-lisp-install c-array grid
common-lisp-symlink-asdf
use doc && dohtml -r documentation/grid
}
|