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 sextractor |
---|
7 | version 2.8.6 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | maintainers saao.ac.za:tim |
---|
11 | license CeCILL |
---|
12 | |
---|
13 | description sextractor is software for making catalogs of sources \ |
---|
14 | from astronomical images. |
---|
15 | |
---|
16 | long_description SExtractor stands for ``Source Extractor'': software \ |
---|
17 | for making catalogs of sources from astronomical images. Multi-Extension \ |
---|
18 | FITS is now supported. Binary output catalogs are also MEFs. ASCII \ |
---|
19 | output catalogs contain detections from all extensions merged together. \ |
---|
20 | Use the "EXT_NUMBER" catalog parameter to identify the extension on which \ |
---|
21 | a given source was detected. Check-images will also be written as MEFs \ |
---|
22 | if the input image is a MEF. |
---|
23 | |
---|
24 | homepage http://www.astromatic.net/software/sextractor/ |
---|
25 | master_sites ftp://ftp.iap.fr/pub/from_users/bertin/sextractor/ |
---|
26 | checksums md5 6c2fc529cd89bdd11b1fbafc0866131c \ |
---|
27 | sha1 103ac2d51d9bae9fcbc5dda3031d82cd127f8250 \ |
---|
28 | rmd160 98319c54ab3af0d4a91c3ffa70e7d5148b06d67a |
---|
29 | |
---|
30 | depends_lib port:fftw-3 \ |
---|
31 | port:atlas |
---|
32 | |
---|
33 | configure.fc ${prefix}/bin/no-possible-compiler |
---|
34 | configure.cflags-append -I${prefix}/include |
---|
35 | configure.ldflags-append -L${prefix}/lib |
---|
36 | configure.args --with-atlas=${prefix}/lib \ |
---|
37 | --with-atlas-incdir=${prefix}/include \ |
---|
38 | --with-fftw=${prefix}/lib \ |
---|
39 | --with-fftw-incdir=${prefix}/include |
---|
40 | |
---|
41 | post-destroot { |
---|
42 | set docdir ${destroot}${prefix}/share/doc |
---|
43 | xinstall -d ${docdir} |
---|
44 | copy ${worksrcpath}/doc ${docdir}/${name} |
---|
45 | xinstall -m 644 -W ${worksrcpath} \ |
---|
46 | README \ |
---|
47 | AUTHORS \ |
---|
48 | COPYRIGHT \ |
---|
49 | ChangeLog \ |
---|
50 | BUGS \ |
---|
51 | HISTORY \ |
---|
52 | THANKS \ |
---|
53 | ${docdir}/${name} |
---|
54 | } |
---|
55 | |
---|
56 | livecheck.type regex |
---|
57 | livecheck.url [lindex ${master_sites} 0] |
---|
58 | livecheck.regex ${name}-(\[0-9.\]+)\\.tar |
---|
59 | |
---|