blob: 1b7b1cf4a886a6787b105ec6d845e8ed1fa59030 (
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
32
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EGIT_REPO_URI="git://repo.or.cz/gsll.git"
inherit common-lisp-2 git
DESCRIPTION="Common Lisp interface to the GNU Scientific Library."
HOMEPAGE="http://common-lisp.net/project/gsll/"
LICENSE="LLGPL-2.1 FDL-1.2"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND=">=sci-libs/gsl-1.9
>=dev-lisp/cffi-0.10.0
dev-lisp/trivial-garbage
dev-lisp/cl-utilities"
CLSYSTEMS="${PN} ${PN}-tests"
src_install() {
common-lisp-install *.{lisp,asd} data/ floating-point/ histogram/ init/ \
interpolation/ linear-algebra/ ordinary-differential-equations/ \
random/ solve-minimize-fit/ special-functions/ statistics/ \
tests/ test-unit/
common-lisp-symlink-asdf
dohtml documentation/*.{html,css}
dodoc documentation/*.text
}
|