blob: 249bab1412c9df1c87b6557d38cd2549f127f356 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/jags/jags-2.2.0.ebuild,v 1.1 2011/02/12 11:50:38 tomka Exp $
EAPI=2
inherit autotools-utils
MYP="JAGS-${PV}"
DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
HOMEPAGE="http://www-fis.iarc.fr/~martyn/software/jags/"
SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/2.x/Source/${MYP}.tar.gz"
LICENSE="GPL-2"
IUSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
RDEPEND="virtual/blas
virtual/lapack"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S="${WORKDIR}/${MYP}"
DOCS=(README NEWS TODO AUTHORS)
src_configure() {
myeconfags=(
--with-blas="$(pkg-config --libs blas)"
--with-lapack="$(pkg-config --libs lapack)"
)
autotools-utils_src_configure
}
|