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 psfex |
---|
7 | version 3.17.1 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | maintainers gmail.com:Deil.Christoph openmaintainer |
---|
11 | license GPL-3+ |
---|
12 | |
---|
13 | description tool to extract the point spread function from astronomical images |
---|
14 | |
---|
15 | long_description PSFEx (“PSF Extractor”) extracts models of the \ |
---|
16 | Point Spread Function (PSF) from FITS images processed with SExtractor, \ |
---|
17 | and measures the quality of images. \ |
---|
18 | The generated PSF models can be used for model-fitting photometry \ |
---|
19 | or morphological analyses. |
---|
20 | |
---|
21 | homepage http://www.astromatic.net/software/psfex/ |
---|
22 | master_sites http://www.astromatic.net/download/psfex/ |
---|
23 | checksums rmd160 0cebd0f364f3cbe359cf91d35f9e37d9978cbd2b \ |
---|
24 | sha256 53f1b449ab7da7e6e0a989c41b82885f52c8f08270ceb4378bb1ec7ef754af89 |
---|
25 | |
---|
26 | depends_lib port:fftw-3 \ |
---|
27 | port:atlas \ |
---|
28 | port:plplot |
---|
29 | |
---|
30 | configure.fc ${prefix}/bin/no-possible-compiler |
---|
31 | eval configure.cflags-append ${configure.cppflags} |
---|
32 | configure.args --with-atlas=${prefix}/lib \ |
---|
33 | --with-atlas-incdir=${prefix}/include \ |
---|
34 | --with-fftw=${prefix}/lib \ |
---|
35 | --with-fftw-incdir=${prefix}/include \ |
---|
36 | --with-plplot=${prefix}/lib \ |
---|
37 | --with-plplot-incdir=${prefix}/include/plplot |
---|
38 | |
---|
39 | post-destroot { |
---|
40 | set docdir ${destroot}${prefix}/share/doc |
---|
41 | xinstall -d ${docdir} |
---|
42 | copy ${worksrcpath}/doc ${docdir}/${name} |
---|
43 | xinstall -m 644 -W ${worksrcpath} \ |
---|
44 | README \ |
---|
45 | AUTHORS \ |
---|
46 | COPYRIGHT \ |
---|
47 | ChangeLog \ |
---|
48 | BUGS \ |
---|
49 | HISTORY \ |
---|
50 | THANKS \ |
---|
51 | ${docdir}/${name} |
---|
52 | } |
---|
53 | |
---|
54 | livecheck.type regex |
---|
55 | livecheck.url [lindex ${master_sites} 0] |
---|
56 | livecheck.regex ${name}-(\[0-9.\]+)\\.tar |
---|