1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name nfft-3 |
---|
7 | version 3.3.0 |
---|
8 | categories math |
---|
9 | license GPL-2+ |
---|
10 | platforms darwin |
---|
11 | maintainers nfft.org:jens openmaintainer |
---|
12 | homepage http://www.nfft.org/ |
---|
13 | distname nfft-${version} |
---|
14 | worksrcdir nfft-${version} |
---|
15 | description Fast C routines to compute the Non-equispaced Discrete Fourier Transform |
---|
16 | long_description NFFT3 is a software library written in C for computing nonequispaced fast Fourier \n\ |
---|
17 | and related transformations. In detail, NFFT3 implements \n\ |
---|
18 | 1) The nonequispaced fast Fourier transform (NFFT) \n\ |
---|
19 | - the forward transform (NFFT) \n\ |
---|
20 | - the adjoint transform (adjoint NFFT) \n\ |
---|
21 | 2) Generalisations of the NFFT \n\ |
---|
22 | - to arbitrary knots in time and frequency domain (NNFFT) \n\ |
---|
23 | - to the sphere S^2 (NFSFT) \n\ |
---|
24 | - to the hyperbolic cross (NSFFT) \n\ |
---|
25 | - to real-valued data, i.e. (co)sine transforms, (NFCT, NFST) \n\ |
---|
26 | - to the rotation group (NFSOFT) \n\ |
---|
27 | 3) Generalised inverses based on iterative methods, e.g. CGNR, CGNE \n\ |
---|
28 | 4) Applications in \n\ |
---|
29 | - medical imaging \n\ |
---|
30 | * magnetic resonance imaging \n\ |
---|
31 | * computerised tomography \n\ |
---|
32 | - summation schemes \n\ |
---|
33 | * fast Gauss transform (FGT) \n\ |
---|
34 | * singular kernels \n\ |
---|
35 | * zonal kernels \n\ |
---|
36 | - polar FFT, discrete Radon transform, ridgelet transform |
---|
37 | homepage http://www.nfft.org |
---|
38 | master_sites https://www-user.tu-chemnitz.de/~potts/nfft/download/ |
---|
39 | checksums rmd160 52cac61a90a72bb25a91b3aa0d1b1692d1895e26 \ |
---|
40 | sha256 bb844b762896b17b7bf8245511a6372fcef82e55c2552f2f7ee7c65a8d746f30 |
---|
41 | depends_lib port:fftw-3 |
---|
42 | use_autoreconf no |
---|
43 | configure.args --enable-shared --enable-static --enable-all |
---|
44 | use_parallel_build yes |
---|
45 | |
---|
46 | variant kaiserbessel description {compile with Kaiser-Bessel window (default)} conflicts gaussian bspline sinc { |
---|
47 | configure.args-append --with-window=kaiserbessel |
---|
48 | } |
---|
49 | |
---|
50 | variant gaussian description {compile with Gaussian window} conflicts kaiserbessel bspline sinc { |
---|
51 | configure.args-append --with-window=gaussian |
---|
52 | } |
---|
53 | |
---|
54 | variant bspline description {compile with B-Spline window} conflicts kaiserbessel gaussian sinc { |
---|
55 | configure.args-append --with-window=bspline |
---|
56 | } |
---|
57 | |
---|
58 | variant sinc description {compile with Sinc window} conflicts kaiserbessel gaussian bspline { |
---|
59 | configure.args-append --with-window=sinc |
---|
60 | } |
---|
61 | |
---|
62 | if {![variant_isset gaussian] && ![variant_isset bspline] && ![variant_isset sinc]} { |
---|
63 | default_variants-append +kaiserbessel |
---|
64 | } |
---|