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 | |
---|
6 | name geos |
---|
7 | version 3.3.8 |
---|
8 | revision 0 |
---|
9 | categories science |
---|
10 | platforms darwin |
---|
11 | license LGPL-2.1 |
---|
12 | |
---|
13 | maintainers gaige.net:opendarwin |
---|
14 | |
---|
15 | description GEOS Geometry Engine - Open Source |
---|
16 | |
---|
17 | long_description A C++ port of the Java Topology Suite, providing OpenGIS \ |
---|
18 | Simple Features for SQL spatial predicate functions \ |
---|
19 | and spatial operators, as well as specific JTS topology \ |
---|
20 | functions. |
---|
21 | |
---|
22 | homepage http://trac.osgeo.org/geos/ |
---|
23 | master_sites http://download.osgeo.org/geos/ |
---|
24 | |
---|
25 | use_bzip2 yes |
---|
26 | |
---|
27 | checksums rmd160 cb47808b3c80fa92ebee7dd6d9ef9c18499c5cd0 \ |
---|
28 | sha256 ebecd4d1a71bcc28e5e883296cd8c52a80d5596335e74728f320989734fa503b |
---|
29 | |
---|
30 | compiler.blacklist llvm-gcc-4.2 |
---|
31 | |
---|
32 | use_parallel_build yes |
---|
33 | |
---|
34 | post-destroot { |
---|
35 | set docdir ${prefix}/share/doc/${name} |
---|
36 | xinstall -d ${destroot}${docdir} |
---|
37 | xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README \ |
---|
38 | TODO ${destroot}${docdir} |
---|
39 | } |
---|
40 | |
---|
41 | test.run yes |
---|
42 | test.cmd make |
---|
43 | test.target check |
---|
44 | |
---|
45 | livecheck.type regex |
---|
46 | livecheck.url ${homepage} |
---|
47 | livecheck.regex {geos-(\d+(?:\.\d+)*)} |
---|