From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D532758973 for ; Thu, 21 Jan 2016 19:44:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E7C0E085A; Thu, 21 Jan 2016 19:44:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E0682E01B5 for ; Thu, 21 Jan 2016 19:44:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD47C340834 for ; Thu, 21 Jan 2016 19:44:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 785371017 for ; Thu, 21 Jan 2016 19:44:34 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1453405450.c1a9f9465003e2f54483034271d225fcc6cff5f3.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/jags/jags-4.1.0.ebuild X-VCS-Directories: sci-mathematics/jags/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c1a9f9465003e2f54483034271d225fcc6cff5f3 X-VCS-Branch: master Date: Thu, 21 Jan 2016 19:44:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 00118d17-30e0-40ce-bcf4-acb55229d677 X-Archives-Hash: f6fe9f23d6bccf1725cfcf1b4a43d260 commit: c1a9f9465003e2f54483034271d225fcc6cff5f3 Author: David Seifert gentoo org> AuthorDate: Thu Jan 21 19:44:10 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Jan 21 19:44:10 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1a9f946 sci-mathematics/jags: Remove 'autotools-utils.eclass', EAPI=6 Package-Manager: portage-2.2.27 sci-mathematics/jags/jags-4.1.0.ebuild | 17 ++++++++--------- 1 file 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 fc1d9f9..8e83927 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 }