diff --git a/science/cdf-to-fits/Portfile b/science/cdf-to-fits/Portfile
index 178188e592..04917e7b59 100644
a
|
b
|
|
| 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 | |
1 | 3 | PortSystem 1.0 |
2 | 4 | |
3 | 5 | name cdf-to-fits |
4 | | version 1.0 |
5 | | revision 1 |
| 6 | version 1.0-20161122 |
6 | 7 | maintainers {aronnax @lpsinger} |
7 | 8 | categories science |
8 | 9 | description CDF to FITS converter |
9 | 10 | long_description Tool for converting CDF files to FITS files |
10 | | homepage http://cdf.gsfc.nasa.gov/html/dtws.html |
11 | 11 | platforms darwin |
12 | | fetch.use_epsv no |
13 | | master_sites ftp://cdaweb.gsfc.nasa.gov/pub/cdf/conversion_tools/source/ |
| 12 | |
| 13 | homepage https://cdf.gsfc.nasa.gov/html/dttools.html |
| 14 | master_sites https://spdf.gsfc.nasa.gov/pub/software/cdf/conversion_tools/source/ |
14 | 15 | distname ${name} |
15 | 16 | dist_subdir ${name}/${version} |
16 | | extract.suffix .tar |
17 | | extract.cmd tar |
18 | | extract.pre_args -xf |
19 | | extract.post_args |
| 17 | |
| 18 | checksums rmd160 ef1d0dcc6c8a23db9393f326d0392119d6479040 \ |
| 19 | sha256 74c86c1df27782ee18fbd43cc6378f55cbad85dbf467914e8c89fc7611c7e360 |
20 | 20 | |
21 | 21 | # cdf is not universal |
22 | 22 | universal_variant no |
23 | 23 | |
24 | | checksums md5 d805504740ec92c40a85b712fe57b168 \ |
25 | | sha1 c2a6802b4819f4f39a6f24ecd940c9841e19fa16 \ |
26 | | rmd160 091fa81c6bc92a875134e041aa2da6152dfb754b |
27 | | |
28 | 24 | depends_lib port:cfitsio \ |
29 | 25 | port:cdf |
30 | 26 | |
| 27 | post-extract { |
| 28 | file attributes ${configure.dir}/configure -permissions a+x |
| 29 | } |
| 30 | |
31 | 31 | patchfiles patch-Makefile.in.diff |
32 | 32 | |
33 | 33 | configure.args --with-cfitsio-prefix=${prefix} \ |
… |
… |
post-destroot { |
42 | 42 | README \ |
43 | 43 | ${docdir} |
44 | 44 | } |
| 45 | |
| 46 | livecheck.type none |