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 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup geopython OWSLib 0.8.10 |
---|
9 | fetch.type git |
---|
10 | |
---|
11 | name py-${github.project} |
---|
12 | categories-append science |
---|
13 | platforms darwin |
---|
14 | license BSD |
---|
15 | |
---|
16 | maintainers nomaintainer |
---|
17 | |
---|
18 | description Library implementing Open Geospatial Consortium (OGC) web service interface standards |
---|
19 | |
---|
20 | long_description OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC)\ |
---|
21 | web service (hence OWS) interface standards, and their related content models. |
---|
22 | |
---|
23 | homepage http://geopython.github.io/OWSLib/ |
---|
24 | |
---|
25 | checksums |
---|
26 | |
---|
27 | python.versions 27 34 |
---|
28 | |
---|
29 | if {${name} ne ${subport}} { |
---|
30 | depends_build-append port:py${python.version}-setuptools \ |
---|
31 | port:py${python.version}-pytest |
---|
32 | |
---|
33 | depends_lib-append port:py${python.version}-dateutil \ |
---|
34 | port:py${python.version}-tz \ |
---|
35 | port:py${python.version}-lxml |
---|
36 | # Adding documentation |
---|
37 | post-destroot { |
---|
38 | set dest_doc ${destroot}${prefix}/share/doc/${subport} |
---|
39 | xinstall -d ${dest_doc} |
---|
40 | xinstall -m 755 -W ${worksrcpath} \ |
---|
41 | README.txt \ |
---|
42 | INSTALL.txt \ |
---|
43 | CHANGES.txt \ |
---|
44 | CREDITS.txt \ |
---|
45 | DEPENDENCIES.txt \ |
---|
46 | FAQ.txt \ |
---|
47 | HISTORY.txt \ |
---|
48 | LICENSE.txt \ |
---|
49 | VERSION.txt \ |
---|
50 | ${dest_doc} |
---|
51 | } |
---|
52 | |
---|
53 | livecheck.type none |
---|
54 | } |
---|