blob: f899f83fd35f1b17238a23f125e0b474ffa50174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/fftw/fftw-3.3.2.ebuild,v 1.7 2012/10/18 21:42:09 jlec Exp $
EAPI=4
#AUTOTOOLS_AUTORECONF=1
FORTRAN_NEEDED=fortran
inherit autotools-utils eutils flag-o-matic fortran-2 toolchain-funcs versionator
DESCRIPTION="Fast C library for the Discrete Fourier Transform"
HOMEPAGE="http://www.fftw.org/"
SRC_URI="http://www.fftw.org/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="3.0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="altivec avx doc fortran mpi neon openmp quad sse sse2 static-libs threads zbus"
DEPEND="mpi? ( virtual/mpi )"
RDEPEND="${DEPEND}"
pkg_setup() {
if use openmp; then
if [[ $(tc-getCC) == *gcc ]] && ! tc-has-openmp; then
ewarn "OpenMP is not available in your current selected gcc"
die "need openmp capable gcc"
fi
FORTRAN_NEED_OPENMP=1
fi
fortran-2_pkg_setup
FFTW_DIRS="single double longdouble"
if use quad; then
if [[ $(tc-getCC) == *gcc ]] && ! version_is_at_least 4.6 $(gcc-version); then
ewarn "quad precision only available for gcc >= 4.6"
die "need quad precision capable gcc"
fi
FFTW_DIRS+=" quad"
fi
}
src_prepare() {
# fix info file for category directory
sed -i \
-e 's/Texinfo documentation system/Libraries/' \
doc/fftw3.info || die "failed to fix info file"
# why?
#rm m4/lt* m4/libtool.m4
autotools-utils_src_prepare
}
src_configure() {
local x
# filter -Os according to docs
replace-flags -Os -O2
for x in ${FFTW_DIRS}; do
myeconfargs=(
$(use_enable fortran)
$(use_enable zbus mips-zbus-timer)
$(use_enable threads)
$(use_enable openmp)
)
if [[ $x == single ]]; then
#altivec, sse, single-paired only work for single
myeconfargs+=(
--enable-single
$(use_enable altivec)
$(use_enable avx)
$(use_enable sse)
$(use_enable mpi)
$(use_enable neon)
)
elif [[ $x == double ]]; then
myeconfargs+=(
$(use_enable avx)
$(use_enable sse2)
$(use_enable mpi)
)
elif [[ $x == longdouble ]]; then
myeconfargs+=(
--enable-long-double
$(use_enable mpi)
)
elif [[ $x == quad ]]; then
#quad does not support mpi
myeconfargs+=( --enable-quad-precision )
else
die "${x} precision not implemented in this ebuild"
fi
einfo "Configuring for ${x} precision"
AUTOTOOLS_BUILD_DIR="${S}-${x}" \
autotools-utils_src_configure
done
}
src_compile() {
for x in ${FFTW_DIRS}; do
einfo "Compiling for ${x} precision"
AUTOTOOLS_BUILD_DIR="${S}-${x}" \
autotools-utils_src_compile
done
}
src_test () {
# We want this to be a reasonably quick test, but that is still hard...
ewarn "This test series will take 30 minutes on a modern 2.5Ghz machine"
# Do not increase the number of threads, it will not help your performance
#local testbase="perl check.pl --nthreads=1 --estimate"
# ${testbase} -${p}d || die "Failure: $n"
for x in ${FFTW_DIRS}; do
cd "${S}-${x}/tests"
einfo "Testing ${x} precision"
emake smallcheck
done
}
src_install () {
local u x
DOCS=( AUTHORS ChangeLog NEWS README TODO COPYRIGHT CONVENTIONS )
HTML_DOCS=( doc/html/ )
for x in ${FFTW_DIRS}; do
AUTOTOOLS_BUILD_DIR="${S}-${x}" \
autotools-utils_src_install
done
if use doc; then
dodoc doc/*.pdf
insinto /usr/share/doc/${PF}/faq
doins -r doc/FAQ/fftw-faq.html/*
else
rm -r "${ED}"/usr/share/doc/${PF}/html
fi
for x in "${ED}"/usr/lib*/pkgconfig/*.pc; do
for u in $(usev mpi) $(usev threads) $(usex openmp omp ""); do
sed -e "s|-lfftw3[flq]\?|&_$u &|" "$x" > "${x%.pc}_$u.pc" || die
done
done
}
|