blob: 797235d37c31095d5e7e7ae90cff3cbcdae4d182 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/fftw/fftw-3.0.1.ebuild,v 1.4 2006/02/26 23:27:19 markusle Exp $
IUSE="3dnow sse mpi"
inherit flag-o-matic
DESCRIPTION="C subroutine library for computing the Discrete Fourier Transform (DFT)"
SRC_URI="http://www.fftw.org/${P}.tar.gz"
HOMEPAGE="http://www.fftw.org"
SLOT="3.0"
LICENSE="GPL-2"
DEPEND="virtual/libc"
KEYWORDS="x86 ppc sparc alpha ~ia64 amd64"
src_unpack() {
unpack "${P}.tar.gz"
cd "${WORKDIR}"
mv ${P} ${P}-single
unpack "${P}.tar.gz"
cd "${WORKDIR}"
mv ${P} ${P}-double
}
src_compile() {
local myconf=""
local myconfsingle=""
local myconfdouble=""
# in gcc 3.2.3 at least, using sse or sse2 causes trouble with -O3
# according to the docs, -O0 can cause trouble too! So pending further
# testing, ...
if use sse; then
filter-flags -O3 -O1 -O -Os
append-flags -O2
fi
use mpi && myconf="${myconf} --enable-mpi"
#mpi is not a valid flag yet. In this revision it is used merely to block --enable-mpi option
#it might be needed if it is decided that lam is an optional dependence
if use sse; then
myconfsingle="$myconfsingle --enable-sse"
myconfdouble="$myconfdouble --enable-sse2"
elif use 3dnow; then
myconfsingle="$myconfsingle --enable-3dnow"
fi
cd "${S}-single"
econf \
--enable-shared \
--enable-threads \
--enable-float \
${myconf} ${myconfsingle} || die "./configure failed"
emake || die
#the only difference here is no --enable-float
cd "${S}-double"
econf \
--enable-shared \
--enable-threads \
${myconf} ${myconfdouble} || die "./configure failed"
emake || die
}
src_install () {
#both builds are installed in the same place
#libs have distinuguished names; include files, docs etc. identical.
cd "${S}-single"
make DESTDIR=${D} install || die
cd "${S}-double"
make DESTDIR=${D} install || die
# Install documentation.
cd "${S}-single"
dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README TODO
dodoc COPYRIGHT CONVENTIONS
cd doc/html
dohtml -r .
}
|