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 | PortGroup compilers 1.0 |
---|
6 | |
---|
7 | name voacapl |
---|
8 | version 0.6.7 |
---|
9 | categories science |
---|
10 | platforms darwin |
---|
11 | license Permissive |
---|
12 | maintainers gmail.com:allan.que openmaintainer |
---|
13 | description HF radio propagation prediction and ionospheric communications analysis |
---|
14 | long_description Voice of America Coverage Analysis Program - free professional \ |
---|
15 | HF propagation prediction software from NTIA/ITS, originally \ |
---|
16 | developed for Voice of America (VOA) |
---|
17 | homepage http://www.voacap.com |
---|
18 | master_sites http://www.qsl.net/hz1jw/voacapl/downloads/ |
---|
19 | |
---|
20 | checksums rmd160 f882ff16cbc61431ec5450d093f444e47e918b74 \ |
---|
21 | sha256 a55afe8d10728573b147dfd6e73dc87a1e81d281c60547f5a800a2220e699278 |
---|
22 | |
---|
23 | compilers.choose f77 |
---|
24 | compilers.setup require_fortran |
---|
25 | |
---|
26 | patch { |
---|
27 | reinplace "s|echo \$SRC_ROOT_DIR||" ${worksrcpath}/makeitshfbc |
---|
28 | } |
---|
29 | |
---|
30 | post-configure { |
---|
31 | # install bombs out due to the length of the destination path |
---|
32 | # switch to relative directories |
---|
33 | # starting from parent of the working directory |
---|
34 | reinplace "s|\$(DESTDIR)\/\$(datadir)\/voacapl\/|../destroot${prefix}/share/voacapl\/|g" \ |
---|
35 | ${worksrcpath}/Makefile |
---|
36 | } |
---|
37 | |
---|
38 | notes "Run \'makeitshfbc\' to create the ~/itshfbc directory structure." |
---|