summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2011-09-04 06:02:45 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2011-09-04 06:02:45 +0000
commit90ea2ad36a74c343a592f8f6b433dba09a1a453a (patch)
treefd2a2da3dc90135a0ed051d04f6ecd9c4d4cf7c8 /sci-mathematics/jags
parentVersion bump. (diff)
downloadgentoo-2-90ea2ad36a74c343a592f8f6b433dba09a1a453a.tar.gz
gentoo-2-90ea2ad36a74c343a592f8f6b433dba09a1a453a.tar.bz2
gentoo-2-90ea2ad36a74c343a592f8f6b433dba09a1a453a.zip
Version bump
(Portage version: 2.1.10.10/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/jags')
-rw-r--r--sci-mathematics/jags/ChangeLog7
-rw-r--r--sci-mathematics/jags/jags-3.1.0.ebuild32
2 files changed, 38 insertions, 1 deletions
diff --git a/sci-mathematics/jags/ChangeLog b/sci-mathematics/jags/ChangeLog
index 32c55110d615..d759bdab9b2b 100644
--- a/sci-mathematics/jags/ChangeLog
+++ b/sci-mathematics/jags/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-mathematics/jags
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/jags/ChangeLog,v 1.3 2011/08/06 19:54:46 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/jags/ChangeLog,v 1.4 2011/09/04 06:02:45 bicatali Exp $
+
+*jags-3.1.0 (04 Sep 2011)
+
+ 04 Sep 2011; Sébastien Fabbro <bicatali@gentoo.org> +jags-3.1.0.ebuild:
+ Version bump
*jags-3.0.0 (06 Aug 2011)
diff --git a/sci-mathematics/jags/jags-3.1.0.ebuild b/sci-mathematics/jags/jags-3.1.0.ebuild
new file mode 100644
index 000000000000..15b647d810b3
--- /dev/null
+++ b/sci-mathematics/jags/jags-3.1.0.ebuild
@@ -0,0 +1,32 @@
+# 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-3.1.0.ebuild,v 1.1 2011/09/04 06:02:45 bicatali Exp $
+
+EAPI=4
+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/3.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}"
+
+src_configure() {
+ myeconfags=(
+ --with-blas="$(pkg-config --libs blas)"
+ --with-lapack="$(pkg-config --libs lapack)"
+ )
+ autotools-utils_src_configure
+}