Ticket #45691: Portfile

File Portfile, 1.6 KB (added by pgf, 10 years ago)
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
6PortGroup           github 1.0
7
8github.setup        geopython OWSLib 0.8.10
9fetch.type          git
10
11name                py-${github.project}
12categories-append   science
13platforms           darwin
14license             BSD
15
16maintainers         nomaintainer
17
18description         Library implementing Open Geospatial Consortium (OGC) web service interface standards
19
20long_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
23homepage            http://geopython.github.io/OWSLib/
24
25checksums
26
27python.versions     27 34
28
29if {${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 -${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}