Ticket #46718: Portfile.5

File Portfile.5, 3.0 KB (added by macports@…, 9 years ago)
Line 
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
4PortSystem          1.0
5
6name                nfft-3
7version             3.3.0
8categories          math
9license             GPL-2+
10platforms           darwin
11maintainers         nfft.org:jens openmaintainer
12homepage            http://www.nfft.org/
13distname            nfft-${version}
14worksrcdir          nfft-${version}
15description         Fast C routines to compute the Non-equispaced Discrete Fourier Transform
16long_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
37homepage            http://www.nfft.org
38master_sites        https://www-user.tu-chemnitz.de/~potts/nfft/download/
39checksums           rmd160 52cac61a90a72bb25a91b3aa0d1b1692d1895e26 \
40                    sha256 bb844b762896b17b7bf8245511a6372fcef82e55c2552f2f7ee7c65a8d746f30
41depends_lib         port:fftw-3
42use_autoreconf      no
43configure.args      --enable-shared --enable-static --enable-all
44use_parallel_build  yes
45
46variant kaiserbessel description {compile with Kaiser-Bessel window (default)} conflicts gaussian bspline sinc {
47    configure.args-append   --with-window=kaiserbessel
48}
49
50variant gaussian description {compile with Gaussian window} conflicts kaiserbessel bspline sinc {
51    configure.args-append   --with-window=gaussian
52}
53
54variant bspline description {compile with B-Spline window} conflicts kaiserbessel gaussian sinc {
55    configure.args-append   --with-window=bspline
56}
57
58variant sinc description {compile with Sinc window} conflicts kaiserbessel gaussian bspline {
59    configure.args-append   --with-window=sinc
60}
61
62if {![variant_isset gaussian] && ![variant_isset bspline] && ![variant_isset sinc]} {
63    default_variants-append +kaiserbessel
64}