Gentoo Archives: gentoo-commits

From: Christoph Junghans <kleiner_otti@×××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nfft/
Date: Sun, 30 Sep 2012 22:14:33
Message-Id: 1349043197.e40987b4707184683ff1842db8a5c18aea3c5ac9.kleiner_otti@gentoo
1 commit: e40987b4707184683ff1842db8a5c18aea3c5ac9
2 Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 30 22:13:17 2012 +0000
4 Commit: Christoph Junghans <kleiner_otti <AT> gmx <DOT> de>
5 CommitDate: Sun Sep 30 22:13:17 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e40987b4
7
8 version bump
9
10 (Portage version: 2.2.0_alpha134/git/Linux i686, unsigned Manifest commit)
11
12 ---
13 sci-libs/nfft/ChangeLog | 5 +++++
14 sci-libs/nfft/nfft-3.2.1.ebuild | 36 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 41 insertions(+), 0 deletions(-)
16
17 diff --git a/sci-libs/nfft/ChangeLog b/sci-libs/nfft/ChangeLog
18 index a0d25f7..93e7152 100644
19 --- a/sci-libs/nfft/ChangeLog
20 +++ b/sci-libs/nfft/ChangeLog
21 @@ -2,6 +2,11 @@
22 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
23 # $Header: $
24
25 +*nfft-3.2.1 (30 Sep 2012)
26 +
27 + 30 Sep 2012; Christoph Junghans <ottxor@g.o> +nfft-3.2.1.ebuild:
28 + version bump
29 +
30 *nfft-3.2.0 (07 Jul 2012)
31
32 07 Jul 2012; Christoph Junghans <ottxor@g.o> +nfft-3.2.0.ebuild,
33
34 diff --git a/sci-libs/nfft/nfft-3.2.1.ebuild b/sci-libs/nfft/nfft-3.2.1.ebuild
35 new file mode 100644
36 index 0000000..41c3801
37 --- /dev/null
38 +++ b/sci-libs/nfft/nfft-3.2.1.ebuild
39 @@ -0,0 +1,36 @@
40 +# Copyright 1999-2012 Gentoo Foundation
41 +# Distributed under the terms of the GNU General Public License v2
42 +# $Header: $
43 +
44 +EAPI="4"
45 +
46 +inherit autotools-utils eutils toolchain-funcs
47 +
48 +DESCRIPTION="library for nonequispaced discrete Fourier transform"
49 +HOMEPAGE="http://www-user.tu-chemnitz.de/~potts/nfft"
50 +SRC_URI="http://www-user.tu-chemnitz.de/~potts/nfft/download/${P}.tar.gz"
51 +
52 +LICENSE="GPL-2"
53 +SLOT="0"
54 +KEYWORDS="~x86 ~amd64"
55 +IUSE="openmp static-libs"
56 +
57 +RDEPEND="sci-libs/fftw:3.0"
58 +DEPEND="${RDEPEND}"
59 +
60 +pkg_pretend() {
61 + use openmp && ! tc-has-openmp && \
62 + die "Please switch to an openmp compatible compiler"
63 +}
64 +
65 +src_prepare() {
66 + sed -i '25s/"\?$/"/' examples/nfsft/nfsft_benchomp.c || die
67 +}
68 +
69 +src_configure() {
70 + local myeconfargs=(
71 + --enable-all
72 + $(use_enable openmp)
73 + )
74 + autotools-utils_src_configure
75 +}