blob: a07bf8200e1e78d36704115aaae7bfc7dcae8b83 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/nfft/nfft-3.2.3.ebuild,v 1.1 2013/05/06 15:24:57 ottxor Exp $
EAPI="5"
inherit autotools-utils toolchain-funcs
DESCRIPTION="library for nonequispaced discrete Fourier transformations"
HOMEPAGE="http://www-user.tu-chemnitz.de/~potts/nfft"
SRC_URI="http://www-user.tu-chemnitz.de/~potts/nfft/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="openmp static-libs"
RDEPEND="sci-libs/fftw:3.0[openmp?]"
DEPEND="${RDEPEND}"
pkg_pretend() {
use openmp && ! tc-has-openmp && \
die "Please switch to an openmp compatible compiler"
}
src_configure() {
local myeconfargs=(
--enable-all
$(use_enable openmp)
)
autotools-utils_src_configure
}
|