diff options
author | David Seifert <soap@gentoo.org> | 2016-08-02 10:10:41 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-08-02 17:18:31 +0200 |
commit | 594dbc365403131e810db4c6980c533c97a6bb87 (patch) | |
tree | 2a3127786a2b4182ed8aa268e7779004bedad510 /sci-libs/fftw | |
parent | sys-auth/consolekit: drop old (diff) | |
download | gentoo-594dbc365403131e810db4c6980c533c97a6bb87.tar.gz gentoo-594dbc365403131e810db4c6980c533c97a6bb87.tar.bz2 gentoo-594dbc365403131e810db4c6980c533c97a6bb87.zip |
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
Diffstat (limited to 'sci-libs/fftw')
-rw-r--r-- | sci-libs/fftw/fftw-3.3.5-r1.ebuild (renamed from sci-libs/fftw/fftw-3.3.5.ebuild) | 7 | ||||
-rw-r--r-- | 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 index 1218d51567e1..ff0c93d32869 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 bb09666b0457..ff0c93d32869 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} ) ;; |