Ticket #17341: Portfile

File Portfile, 1.2 KB (added by stromnov (Andrey Stromnov), 16 years ago)

python/py25-shapely/Portfile

Line 
1# $Id$
2
3PortSystem      1.0
4PortGroup       python25 1.0
5
6name            py25-shapely
7version         1.0.11
8categories      python devel
9platforms       darwin
10maintainers     landonf openmaintainer
11description     Shapely is a Python package for manipulation \
12                and analysis of 2D geospatial geometries
13
14long_description \
15                Shapely is a Python package for manipulation and \
16                analysis of 2D geospatial geometries. It is based on \
17                GEOS (http://geos.refractions.net). Shapely 1.0 is not \
18                concerned with data formats or coordinate reference \
19                systems.
20
21homepage        http://trac.gispython.org/projects/PCL/wiki/Shapely
22master_sites    http://pypi.python.org/packages/source/S/Shapely/
23distname        Shapely-${version}
24
25depends_lib     port:python25 \
26                port:geos
27
28checksums       md5 e936529836e2823ce777dfc44a18a9b6 \
29                sha1 fd72bc7476e71d2605ae8cc05d48d1c89b916fe4 \
30                rmd160 adb049b2ebd97665d146342469e87550f1f9fffb
31
32patchfiles      patch-shapely_geos.py
33
34post-patch {
35    reinplace "s|@PREFIX@|${prefix}|g" ${worksrcpath}/shapely/geos.py
36}