diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2011-08-06 19:54:46 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2011-08-06 19:54:46 +0000 |
commit | ae0b3cfa11136be04004b85f6f7adf49c5065c16 (patch) | |
tree | 9277986fd4d30684a895ab23d20e365943d073e1 /sci-mathematics | |
parent | upstream patch for newer numpy, bug #376597 (diff) | |
download | gentoo-2-ae0b3cfa11136be04004b85f6f7adf49c5065c16.tar.gz gentoo-2-ae0b3cfa11136be04004b85f6f7adf49c5065c16.tar.bz2 gentoo-2-ae0b3cfa11136be04004b85f6f7adf49c5065c16.zip |
Version bump
(Portage version: 2.1.10.10/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/jags/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/jags/jags-3.0.0.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/sci-mathematics/jags/ChangeLog b/sci-mathematics/jags/ChangeLog index 4889fb9b6932..32c55110d615 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.2 2011/02/25 18:09:37 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/jags/ChangeLog,v 1.3 2011/08/06 19:54:46 bicatali Exp $ + +*jags-3.0.0 (06 Aug 2011) + + 06 Aug 2011; Sébastien Fabbro <bicatali@gentoo.org> +jags-3.0.0.ebuild: + Version bump 25 Feb 2011; Fabian Groffen <grobian@gentoo.org> jags-2.2.0.ebuild: Marked ~amd64-linux and ~x86-linux, bug #355983 diff --git a/sci-mathematics/jags/jags-3.0.0.ebuild b/sci-mathematics/jags/jags-3.0.0.ebuild new file mode 100644 index 000000000000..8affc479a770 --- /dev/null +++ b/sci-mathematics/jags/jags-3.0.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.0.0.ebuild,v 1.1 2011/08/06 19:54:46 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 +} |