Ticket #28759: Portfile.7

File Portfile.7, 1.3 KB (added by jdswinbank (John Swinbank), 12 years ago)

Updated Portfile for gcc-4.6

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                wcslib
6version             4.8.4
7revision            1
8categories          science
9platforms           darwin
10maintainers         transientskp.org:swinbank
11description         Library for handling World Coordinate System in FITS files
12long_description    A C library, with a set of Fortran wrappers, that \
13                    implements the World Coordinate System (WCS) standard \
14                    in FITS (Flexible Image Transport System).
15homepage            http://www.atnf.csiro.au/people/mcalabre/WCS/index.html
16master_sites        ftp://ftp.atnf.csiro.au/pub/software/wcslib/
17use_bzip2           yes
18checksums           md5     e11147f58feca75110ffe770c0f53a3b \
19                    sha1    66c0be7b71aa66d0db7e68bb75c02e9f406c18c5 \
20                    rmd160  23e9e4439eced5427986582ae534241499a7d560
21depends_lib         port:cfitsio
22configure.args      --disable-fortran
23
24livecheck.type      regex
25livecheck.url       http://www.atnf.csiro.au/people/mcalabre/WCS/CHANGES
26livecheck.regex     "WCSLIB version (\\d+\\.\\d+\(\\.\\d+\)?)"
27
28variant gcc46 description {Build with GCC 4.6; enables Fortran support}  {
29    configure.compiler      macports-gcc-4.6
30    depends_lib-append      port:gcc46 \
31                            port:pgplot
32    configure.args-delete   --disable-fortran
33}