blob: b8949e212ec6b50522294d4e91e3e9d19bb92b6b (
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
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools-utils toolchain-funcs
DESCRIPTION="Galaxy redhift Bayesian analyzer"
HOMEPAGE="http://www.astro.phys.ethz.ch/exgal_ocosm/zebra/index.html"
SRC_URI="http://www.astro.phys.ethz.ch/exgal_ocosm/zebra/tar/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
RDEPEND="
sci-libs/gsl
sci-libs/lapackpp
virtual/blas
virtual/cblas
virtual/lapack"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
myeconfargs+=(
--with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
--with-cblas="$($(tc-getPKG_CONFIG) --libs cblas)"
--with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
)
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install
use doc && dodoc doc/*.pdf
if use examples; then
insinto /usr/share/doc/${PF}
doins -r scripts examples
fi
}
|