Ticket #13278: Portfile

File Portfile, 1.4 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 16 years ago)
Line 
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
4PortSystem 1.0
5PortGroup python25 1.0
6
7name                    py25-quadtree
8version                 0.1.2
9revision                0
10categories              python
11platforms               darwin
12maintainers             nomaintainer
13description             Quadtree
14long_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
27homepage                http://trac.gispython.org/projects/PCL/wiki/QuadTree
28master_sites http://cheeseshop.python.org/packages/source/Q/Quadtree
29distname Quadtree-${version}
30checksums               md5 2ace3a8077e4b456e74fc2be870c71f1
31
32post-destroot {
33        eval xinstall -m 644 ${worksrcpath}/PKG-INFO \
34        [glob ${worksrcpath}/*.txt] \
35        ${destroot}${prefix}/share/doc/${name}
36}
37
38livecheck.check regex
39livecheck.url "http://cheeseshop.python.org/packages/source/Q/Quadtree/?C=M;O=D"
40livecheck.regex Quadtree-(\\d+(?:\\.\\d+)*)${extract.suffix}