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 98F9113832E for ; Tue, 2 Aug 2016 15:19:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82FCF21C067; Tue, 2 Aug 2016 15:19:15 +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 07A7B21C067 for ; Tue, 2 Aug 2016 15:19:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5DC97340B19 for ; Tue, 2 Aug 2016 15:19:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 798BF7D3 for ; Tue, 2 Aug 2016 15:19:11 +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: <1470151111.594dbc365403131e810db4c6980c533c97a6bb87.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/fftw/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/fftw/fftw-3.3.5-r1.ebuild sci-libs/fftw/fftw-3.3.5.ebuild sci-libs/fftw/fftw-9999.ebuild X-VCS-Directories: sci-libs/fftw/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 594dbc365403131e810db4c6980c533c97a6bb87 X-VCS-Branch: master Date: Tue, 2 Aug 2016 15:19:11 +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: 02c24574-59f0-469b-9d9a-4682c1da6db0 X-Archives-Hash: 236a72af047a04117326022ebd7f37e6 commit: 594dbc365403131e810db4c6980c533c97a6bb87 Author: David Seifert gentoo org> AuthorDate: Tue Aug 2 08:10:41 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Aug 2 15:18:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=594dbc36 sci-libs/fftw: Fix missing .so files due to incomplete autotools-utils.eclass porting * Also reintroduce USE="neon" flag Package-Manager: portage-2.3.0 sci-libs/fftw/{fftw-3.3.5.ebuild => fftw-3.3.5-r1.ebuild} | 7 +++++-- sci-libs/fftw/fftw-9999.ebuild | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/sci-libs/fftw/fftw-3.3.5.ebuild b/sci-libs/fftw/fftw-3.3.5-r1.ebuild similarity index 96% rename from sci-libs/fftw/fftw-3.3.5.ebuild rename to sci-libs/fftw/fftw-3.3.5-r1.ebuild index 1218d51..ff0c93d 100644 --- a/sci-libs/fftw/fftw-3.3.5.ebuild +++ b/sci-libs/fftw/fftw-3.3.5-r1.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="Fast C library for the Discrete Fourier Transform" HOMEPAGE="http://www.fftw.org/" if [[ ${PV} = *9999 ]]; then - inherit autotools git-2 + inherit autotools git-r3 EGIT_REPO_URI="https://github.com/FFTW/fftw3.git" else SRC_URI="http://www.fftw.org/${P}.tar.gz" @@ -21,7 +21,7 @@ fi LICENSE="GPL-2+" SLOT="3.0/3" -IUSE="altivec cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_fma3 cpu_flags_x86_fma4 cpu_flags_x86_sse cpu_flags_x86_sse2 doc fortran mpi openmp quad static-libs test threads zbus" +IUSE="altivec cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_fma3 cpu_flags_x86_fma4 cpu_flags_x86_sse cpu_flags_x86_sse2 doc fortran mpi neon openmp quad static-libs test threads zbus" RDEPEND=" mpi? ( virtual/mpi )" @@ -83,6 +83,8 @@ multilib_src_configure() { fi local myconf=( + --enable-shared + $(use_enable static-libs static) $(use_enable "cpu_flags_x86_fma$(usex cpu_flags_x86_fma3 3 4)" fma) $(use_enable fortran) $(use_enable zbus mips-zbus-timer) @@ -99,6 +101,7 @@ multilib_src_configure() { $(use_enable cpu_flags_x86_avx2 avx2) $(use_enable cpu_flags_x86_sse sse) $(use_enable cpu_flags_x86_sse2 sse2) + $(use_enable neon) ${enable_mpi} ) ;; diff --git a/sci-libs/fftw/fftw-9999.ebuild b/sci-libs/fftw/fftw-9999.ebuild index bb09666..ff0c93d 100644 --- a/sci-libs/fftw/fftw-9999.ebuild +++ b/sci-libs/fftw/fftw-9999.ebuild @@ -21,7 +21,7 @@ fi LICENSE="GPL-2+" SLOT="3.0/3" -IUSE="altivec cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_fma3 cpu_flags_x86_fma4 cpu_flags_x86_sse cpu_flags_x86_sse2 doc fortran mpi openmp quad static-libs test threads zbus" +IUSE="altivec cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_fma3 cpu_flags_x86_fma4 cpu_flags_x86_sse cpu_flags_x86_sse2 doc fortran mpi neon openmp quad static-libs test threads zbus" RDEPEND=" mpi? ( virtual/mpi )" @@ -83,6 +83,8 @@ multilib_src_configure() { fi local myconf=( + --enable-shared + $(use_enable static-libs static) $(use_enable "cpu_flags_x86_fma$(usex cpu_flags_x86_fma3 3 4)" fma) $(use_enable fortran) $(use_enable zbus mips-zbus-timer) @@ -99,6 +101,7 @@ multilib_src_configure() { $(use_enable cpu_flags_x86_avx2 avx2) $(use_enable cpu_flags_x86_sse sse) $(use_enable cpu_flags_x86_sse2 sse2) + $(use_enable neon) ${enable_mpi} ) ;;