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