Ticket #17318: Portfile

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

python/py25-shapely/Portfile

Line 
1# $Id$
2
3PortSystem      1.0
4PortGroup       python25 1.0
5
6name            py25-shapely
7version         1.0.10
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 5474bddfdd609c3d9856a6673808e0ed \
29                sha1 17d1b3a9dfd98d290afe589d0cc11642e5d12e92 \
30                rmd160 db7ede1a7c584fc2ff10a95a06b185d9c7db5b50
31
32patchfiles      patch-shapely_geos.py
33
34post-patch {
35    reinplace "s|@PREFIX@|${prefix}|g" ${worksrcpath}/shapely/geos.py
36}