Ticket #34065: Portfile

File Portfile, 1.7 KB (added by florian@…, 11 years ago)

Portfile

Line 
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
4PortSystem          1.0
5
6name                gshhg-gmt-nc4
7version             2.2.2
8categories          science
9platforms           darwin
10supported_archs     noarch
11maintainers         eprofs.de:florian \
12                    takeshi
13license             LGPL-3
14description         Global Self-consistent Hierarchical High-resolution Geography (GSHHG)
15long_description    Global Self-consistent Hierarchical \
16    High-resolution Geography (GSHHG) is a high-resolution \
17    shoreline data set amalgamated from two databases: Global \
18    Self-consistent Hierarchical High-resolution Shorelines \
19    (GSHHS) and CIA World Data Bank II (WDBII). GSHHG contains \
20    vector descriptions at five different resolutions of land \
21    outlines, lakes, rivers, and political boundaries. To read \
22    and process the data you should install GMT, the Generic \
23    Mapping Tools (port gmt4 or gmt5).
24
25homepage            http://www.soest.hawaii.edu/pwessel/gshhs/index.html
26master_sites        http://www.soest.hawaii.edu/pwessel/gshhg \
27                    ftp://ftp.soest.hawaii.edu/pwessel/gshhs
28checksums           md5     e30c2c9bbac54ddca3f7cd8b28a72cd5 \
29                    sha1    f01c322ad1767abf99818c250b1a58b3e2c12e1c \
30                    rmd160  2752be0b58f61417d8426ba0b1d5a835a74ebaf8
31
32use_configure       no
33build {}
34
35destroot {
36    xinstall -m 755 -d ${destroot}${prefix}/share/${name}
37    eval xinstall -m 644 [glob ${worksrcpath}/*] \
38        ${destroot}${prefix}/share/${name}
39}
40
41livecheck.type      regex
42livecheck.url       ${homepage}
43livecheck.regex     {version ([0-9]+\.[0-9]+\.[0-9]+)}