From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C40F21395E2 for ; Mon, 14 Nov 2016 17:36:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2FDBE0A72; Mon, 14 Nov 2016 17:36:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9066E0A69 for ; Mon, 14 Nov 2016 17:36:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DBFFA341686 for ; Mon, 14 Nov 2016 17:36:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50B3624BF for ; Mon, 14 Nov 2016 17:36:17 +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: <1479144652.1c54d75d8b9f76664d6d88694d308f90182d00a2.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/harminv/files/, sci-physics/harminv/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/harminv/files/harminv-1.3.1-configure.ac.patch sci-physics/harminv/harminv-1.3.1-r1.ebuild X-VCS-Directories: sci-physics/harminv/ sci-physics/harminv/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 1c54d75d8b9f76664d6d88694d308f90182d00a2 X-VCS-Branch: master Date: Mon, 14 Nov 2016 17:36:17 +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: bf85344e-5aac-40e9-ac1a-cfc16d584c24 X-Archives-Hash: 8a88ce613b7f979e08df23cefcd50642 commit: 1c54d75d8b9f76664d6d88694d308f90182d00a2 Author: Gerhard Bräunlich gmx net> AuthorDate: Sat Nov 12 15:23:22 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Nov 14 17:30:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c54d75d sci-physics/harminv-1.3.1-r1: EAPI bump 4 -> 6 Package-Manager: portage-2.3.0 Closes: https://github.com/gentoo/gentoo/pull/2822 Signed-off-by: David Seifert gentoo.org> .../harminv/files/harminv-1.3.1-configure.ac.patch | 4 +-- sci-physics/harminv/harminv-1.3.1-r1.ebuild | 34 ++++++++++++++++++++++ 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/sci-physics/harminv/files/harminv-1.3.1-configure.ac.patch b/sci-physics/harminv/files/harminv-1.3.1-configure.ac.patch index 2830d5b..508a8c1 100644 --- a/sci-physics/harminv/files/harminv-1.3.1-configure.ac.patch +++ b/sci-physics/harminv/files/harminv-1.3.1-configure.ac.patch @@ -1,5 +1,5 @@ ---- configure.ac.orig 2007-09-27 09:27:28.731439558 +0100 -+++ configure.ac 2007-09-27 09:37:45.755835491 +0100 +--- a/configure.ac ++++ b/configure.ac @@ -9,7 +9,7 @@ # *not* the same as the "public" version number. CURRENT:REVISION:AGE SHARED_VERSION_INFO="2:4:0" diff --git a/sci-physics/harminv/harminv-1.3.1-r1.ebuild b/sci-physics/harminv/harminv-1.3.1-r1.ebuild new file mode 100644 index 00000000..a7bacff --- /dev/null +++ b/sci-physics/harminv/harminv-1.3.1-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools toolchain-funcs + +DESCRIPTION="Extraction of complex frequencies and amplitudes from time series" +HOMEPAGE="http://ab-initio.mit.edu/harminv/" +SRC_URI="http://ab-initio.mit.edu/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +RDEPEND="virtual/lapack" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${P}-configure.ac.patch ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ + --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" +}