diff options
author | David Seifert <soap@gentoo.org> | 2016-01-21 20:44:10 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-01-21 20:44:10 +0100 |
commit | c1a9f9465003e2f54483034271d225fcc6cff5f3 (patch) | |
tree | 9d5d8a479c1ee3cb1c073d96b9de985a511d30da /sci-mathematics/jags | |
parent | sci-mathematics/jags: version bump (diff) | |
download | gentoo-c1a9f9465003e2f54483034271d225fcc6cff5f3.tar.gz gentoo-c1a9f9465003e2f54483034271d225fcc6cff5f3.tar.bz2 gentoo-c1a9f9465003e2f54483034271d225fcc6cff5f3.zip |
sci-mathematics/jags: Remove 'autotools-utils.eclass', EAPI=6
Package-Manager: portage-2.2.27
Diffstat (limited to 'sci-mathematics/jags')
-rw-r--r-- | sci-mathematics/jags/jags-4.1.0.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/sci-mathematics/jags/jags-4.1.0.ebuild b/sci-mathematics/jags/jags-4.1.0.ebuild index fc1d9f9f58e5..8e839279ad74 100644 --- a/sci-mathematics/jags/jags-4.1.0.ebuild +++ b/sci-mathematics/jags/jags-4.1.0.ebuild @@ -2,9 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit autotools-utils toolchain-funcs +inherit eutils toolchain-funcs MYP="JAGS-${PV}" @@ -30,18 +30,17 @@ DEPEND="${RDEPEND} S="${WORKDIR}/${MYP}" src_configure() { - local myeconfargs=( - --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" + econf \ + --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" - ) - autotools-utils_src_configure } src_compile() { - autotools-utils_src_compile all $(usex doc docs "") + emake all $(usex doc docs "") } src_install() { - autotools-utils_src_install - use doc && dodoc "${BUILD_DIR}"/doc/manual/*.pdf + default + use doc && dodoc doc/manual/*.pdf + prune_libtool_files } |