1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name wcslib |
---|
6 | version 4.7 |
---|
7 | categories science |
---|
8 | platforms darwin |
---|
9 | maintainers transientskp.org:swinbank |
---|
10 | description Library for handling World Coordinate System in FITS files |
---|
11 | long_description A C library with a set of Fortran wrappers, that \ |
---|
12 | implements the World Coordinate System (WCS) standard \ |
---|
13 | in FITS (Flexible Image Transport System). |
---|
14 | homepage http://www.atnf.csiro.au/people/mcalabre/WCS/index.html |
---|
15 | master_sites ftp://ftp.atnf.csiro.au/pub/software/wcslib/ |
---|
16 | use_bzip2 yes |
---|
17 | checksums md5 139edd8acf971f74493b70b88de3fb2c \ |
---|
18 | sha1 8cef9943381367aa938ce45b8eacf51ca57ce851 \ |
---|
19 | rmd160 071ca016684cdfb1b23738532f10155c11ec62af |
---|
20 | patchfiles patch-pgsbox-GNUmakefile.diff |
---|
21 | depends_lib port:cfitsio \ |
---|
22 | port:pgplot |
---|
23 | default_variants +gcc45 |
---|
24 | |
---|
25 | livecheck.type regex |
---|
26 | livecheck.url http://www.atnf.csiro.au/people/mcalabre/WCS/CHANGES |
---|
27 | livecheck.regex "WCSLIB version (\\d+\\.\\d+)" |
---|
28 | |
---|
29 | variant no_cfitsio description {Eschew CFITSIO} { |
---|
30 | depends_lib-delete port:cfitsio |
---|
31 | configure.args-append --without-cfitsio |
---|
32 | } |
---|
33 | |
---|
34 | variant no_pgplot description {Eschew PGPLOT} { |
---|
35 | depends_lib-delete port:pgplot |
---|
36 | configure.args-append --without-pgplot |
---|
37 | } |
---|
38 | |
---|
39 | variant no_fortran requires no_pgplot description {Eschew Fortran} { |
---|
40 | configure.args-append --disable-fortran |
---|
41 | } |
---|
42 | |
---|
43 | variant gcc44 description {Build with GCC 4.4} conflicts gcc45 { |
---|
44 | configure.compiler macports-gcc-4.4 |
---|
45 | depends_lib-append port:gcc44 |
---|
46 | } |
---|
47 | |
---|
48 | variant gcc45 description {Build with GCC 4.5} conflicts gcc44 { |
---|
49 | configure.compiler macports-gcc-4.5 |
---|
50 | depends_lib-append port:gcc45 |
---|
51 | } |
---|