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 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-pyshp |
---|
8 | version 1.2.0 |
---|
9 | categories-append gis |
---|
10 | platforms darwin |
---|
11 | supported_archs noarch |
---|
12 | |
---|
13 | maintainers bo.ingv.it:Peter.Danecek openmaintainer |
---|
14 | |
---|
15 | license MIT |
---|
16 | |
---|
17 | description Python Shapefile Library |
---|
18 | |
---|
19 | long_description PyShp library provides read and write support for the \ |
---|
20 | ESRI shapefile format in pure Python. This format is a \ |
---|
21 | popular Geographic Information System vector data format \ |
---|
22 | created by ESRI. You can read and write shp, shx, and dbf \ |
---|
23 | files with all types of geometry. Everything in the \ |
---|
24 | public ESRI shapefile specification is implemented. |
---|
25 | |
---|
26 | homepage http://code.google.com/p/pyshp/ |
---|
27 | |
---|
28 | distname pyshp-${version} |
---|
29 | master_sites http://pypi.python.org/packages/source/p/pyshp |
---|
30 | |
---|
31 | checksums md5 9075f34109f0bb4b45a90fd1fb5db94b \ |
---|
32 | rmd160 1e507e974a1c2f5f599d7201921ceaf8aa916138 \ |
---|
33 | sha256 16e9a9b5caae5b69149c7be09415381b61af4f85f2087d08c0698c75e70000e7 |
---|
34 | |
---|
35 | python.versions 26 27 32 33 34 |
---|
36 | |
---|
37 | if {${subport} ne ${name}} { |
---|
38 | depends_build-append port:py${python.version}-setuptools |
---|
39 | } |
---|