Ticket #41334: Portfile

File Portfile, 1.4 KB (added by petrrr, 11 years ago)

Portfile for python/py-pyshp

Line 
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
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-pyshp
8version             1.2.0
9categories-append   gis
10platforms           darwin
11supported_archs     noarch
12
13maintainers         bo.ingv.it:Peter.Danecek openmaintainer
14
15license             MIT
16
17description         Python Shapefile Library
18
19long_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
26homepage            http://code.google.com/p/pyshp/
27
28distname            pyshp-${version}
29master_sites        http://pypi.python.org/packages/source/p/pyshp
30
31checksums           md5     9075f34109f0bb4b45a90fd1fb5db94b \
32                    rmd160  1e507e974a1c2f5f599d7201921ceaf8aa916138 \
33                    sha256  16e9a9b5caae5b69149c7be09415381b61af4f85f2087d08c0698c75e70000e7
34
35python.versions     26 27 32 33 34
36
37if {${subport} ne ${name}} {
38    depends_build-append    port:py${python.version}-setuptools
39}