Commits
Leo Singer authored 7138ec73c0e
1 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 2 | |
3 3 | PortSystem 1.0 |
4 + | PortGroup obsolete 1.0 |
4 5 | |
5 6 | name sextractor |
6 - | version 2.19.5 |
7 + | replaced_by source-extractor |
8 + | version 2.25.0 |
7 9 | categories science |
8 - | platforms darwin |
9 - | maintainers {aronnax @lpsinger} openmaintainer |
10 10 | license GPL-3+ |
11 11 | |
12 - | description tool to make catalogs of sources from \ |
13 - | astronomical images |
14 - | |
15 - | long_description SExtractor stands for ``Source Extractor'': software \ |
16 - | for making catalogs of sources from astronomical images. Multi-Extension \ |
17 - | FITS is now supported. Binary output catalogs are also MEFs. ASCII \ |
18 - | output catalogs contain detections from all extensions merged together. \ |
19 - | Use the "EXT_NUMBER" catalog parameter to identify the extension on which \ |
20 - | a given source was detected. Check-images will also be written as MEFs \ |
21 - | if the input image is a MEF. |
22 - | |
23 12 | homepage http://www.astromatic.net/software/sextractor/ |
24 - | master_sites http://www.astromatic.net/download/sextractor/ |
25 - | checksums md5 2115556b5d30571306608b7c023a318f \ |
26 - | sha1 43a48391b90b915b1c256b68c29c2276bee8621d \ |
27 - | rmd160 edea782b2c37776b50b214628fb088bb97df908b |
28 - | |
29 - | depends_lib port:fftw-3 \ |
30 - | port:fftw-3-single \ |
31 - | port:atlas |
32 - | |
33 - | configure.fc ${prefix}/bin/no-possible-compiler |
34 - | configure.cflags-append {*}${configure.cppflags} |
35 - | configure.args --with-atlas=${prefix}/lib \ |
36 - | --with-atlas-incdir=${prefix}/include \ |
37 - | --with-fftw=${prefix}/lib \ |
38 - | --with-fftw-incdir=${prefix}/include |
39 - | |
40 - | post-destroot { |
41 - | set docdir ${destroot}${prefix}/share/doc |
42 - | xinstall -d ${docdir} |
43 - | copy ${worksrcpath}/doc ${docdir}/${name} |
44 - | xinstall -m 644 -W ${worksrcpath} \ |
45 - | README \ |
46 - | AUTHORS \ |
47 - | COPYRIGHT \ |
48 - | ChangeLog \ |
49 - | BUGS \ |
50 - | HISTORY \ |
51 - | THANKS \ |
52 - | ${docdir}/${name} |
53 - | } |
54 - | |
55 - | livecheck.type regex |
56 - | livecheck.url [lindex ${master_sites} 0] |
57 - | livecheck.regex ${name}-(\[0-9.\]+)\\.tar |