Ticket #28759: Portfile.4

File Portfile.4, 1.3 KB (added by jdswinbank (John Swinbank), 13 years ago)

Updated Portfile for wcslib 4.8.2

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                wcslib
6version             4.8.2
7categories          science
8platforms           darwin
9maintainers         transientskp.org:swinbank
10description         Library for handling World Coordinate System in FITS files
11long_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).
14homepage            http://www.atnf.csiro.au/people/mcalabre/WCS/index.html
15master_sites        ftp://ftp.atnf.csiro.au/pub/software/wcslib/
16use_bzip2           yes
17checksums           md5     fd7c0c8f610c1f5793ff20a46fecead3 \
18                    sha1    3e901d372d459b023a453e22a521b1f369d1d465 \
19                    rmd160  1921b393c435f02f66f644797caa1ca52b5afc28
20depends_lib         port:cfitsio
21configure.args      --disable-fortran
22
23livecheck.type      regex
24livecheck.url       http://www.atnf.csiro.au/people/mcalabre/WCS/CHANGES
25livecheck.regex     "WCSLIB version (\\d+\\.\\d+)"
26
27variant gcc45 description {Build with GCC 4.5; enables Fortran support}  {
28    configure.compiler      macports-gcc-4.5
29    depends_lib-append      port:gcc45 \
30                            port:pgplot
31    configure.args-delete   --disable-fortran
32}