# -*- 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

PortSystem          1.0
PortGroup           python 1.0

name                py-pyobjc
version             5.2
revision            0

categories-append   devel
license             MIT
maintainers         nomaintainer
platforms           darwin
description         bidirectional bridge between python and Objective C
long_description    The PyObjC project aims to provide a bridge between \
                    the Python and Objective-C programming languages. The \
                    bridge is intended to be fully bidirectional, allowing \
                    the Python programmer to take full advantage of the \
                    power provided by various Objective-C based toolkits \
                    and the Objective-C programmer transparent access to \
                    Python based functionality.

homepage            https://pyobjc.readthedocs.io
master_sites        pypi:p/pyobjc-core/
distname            pyobjc-core-${version}
checksums           rmd160  7509b54b44db3f1d5da4c1908ef38aef8d8acee3 \
                    sha256  cd13a2e9be890064a6dd11db7790bbf38502350c532a9a9d05511abb8683b8ea \
                    size    797936

python.versions     27 34 35 36 37

if {${name} ne ${subport}} {
    depends_lib-append \
                    port:libffi \
                    port:py${python.version}-setuptools \
                    port:py${python.version}-py2app

    post-patch {
        reinplace "s|use-system-libffi = 0|\\
use-system-libffi = 1\\
deployment-target = ${macosx_deployment_target}\\
|" ${worksrcpath}/setup.cfg
    }

    if {${configure.sdkroot} eq ""} {
        set sdkroot "/"
    } else {
        set sdkroot ${configure.sdkroot}
    }

    build.env-append \
                    SDKROOT=${sdkroot}

    platform darwin 8 {
        depends_lib
        pre-fetch {
            ui_error "${subport} @${version} requires Mac OS X 10.5 or later"
            return -code error "incompatible Mac OS X version"
        }
    }

    post-destroot {
        xinstall -m 0644 -W ${worksrcpath} HISTORIC.txt License.txt README.txt \
            ${destroot}${prefix}/share/doc/${subport}
        delete ${destroot}${prefix}/share/doc/${subport}/examples
        copy ${worksrcpath}/Examples \
            ${destroot}${prefix}/share/doc/${subport}/examples
    }

    livecheck.type  none
} else {
    livecheck.type  regex
    livecheck.url   https://pypi.python.org/pypi/pyobjc-core/
    livecheck.regex {pyobjc-core ([0-9.]+)}
}