1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python25 1.0 |
---|
6 | |
---|
7 | name py25-quadtree |
---|
8 | version 0.1.2 |
---|
9 | revision 0 |
---|
10 | categories python |
---|
11 | platforms darwin |
---|
12 | maintainers nomaintainer |
---|
13 | description Quadtree |
---|
14 | long_description \ |
---|
15 | Quadtree: \ |
---|
16 | \ |
---|
17 | Whether for PCL in-memory feature stores, Plone content, or whatever \ |
---|
18 | -- we need a simple spatial index to speed up retrieval of objects \ |
---|
19 | that intersect with a given bounding box. \ |
---|
20 | \ |
---|
21 | The simplest, most tried-and-true, open source spatial index is \ |
---|
22 | shapelib's (http://shapelib.maptools.org) quadtree. It's been \ |
---|
23 | improving the performance of MapServer applications for years. The \ |
---|
24 | quadtree itself is completely separable from any shapefile. We can use \ |
---|
25 | it with arbitrary Python object collections. \ |
---|
26 | |
---|
27 | homepage http://trac.gispython.org/projects/PCL/wiki/QuadTree |
---|
28 | master_sites http://cheeseshop.python.org/packages/source/Q/Quadtree |
---|
29 | distname Quadtree-${version} |
---|
30 | checksums md5 2ace3a8077e4b456e74fc2be870c71f1 |
---|
31 | |
---|
32 | post-destroot { |
---|
33 | eval xinstall -m 644 ${worksrcpath}/PKG-INFO \ |
---|
34 | [glob ${worksrcpath}/*.txt] \ |
---|
35 | ${destroot}${prefix}/share/doc/${name} |
---|
36 | } |
---|
37 | |
---|
38 | livecheck.check regex |
---|
39 | livecheck.url "http://cheeseshop.python.org/packages/source/Q/Quadtree/?C=M;O=D" |
---|
40 | livecheck.regex Quadtree-(\\d+(?:\\.\\d+)*)${extract.suffix} |
---|