# -*- 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
# $Id: Portfile 92875 2012-05-09 13:25:15Z deric@macports.org $

PortSystem          1.0
PortGroup           python 1.0

name                py-yaml
version             3.10
categories          python devel
platforms           darwin
license             MIT
maintainers         deric lightnin akitada openmaintainer
description         YAML 1.1 parser and emitter for Python
long_description    PyYAML is a YAML parser and emitter for Python, which \
                    supports YAML 1.1, unicode input and output, low-level \
                    event-based parser and emitter API, high-level API for \
                    serializing and deserializing native Python objects.

homepage            http://pyyaml.org/wiki/PyYAML
master_sites        http://pyyaml.org/download/pyyaml/
distname            PyYAML-${version}
checksums           md5     74c94a383886519e9e7b3dd1ee540247 \
                    sha1    476dcfbcc6f4ebf3c06186229e8e2bd7d7b20e73 \
                    rmd160  0fe20d93030c15b0ea6dcfc8dfee0f1f0d418aeb

python.versions 25 26 27
python.default_version 27

if {$subport != $name} {
    
    if { ${python.version} > 24 } {
        variant libyaml description {Enable LibYAML bindings} {
            depends_lib-append      port:libyaml \
                                    port:py${python.version}-pyrex
            patchfiles              patch-setup.py
        }

        post-patch {
            reinplace "s|__PREFIX__|${prefix}|g" ${worksrcpath}/setup.py
        }    
    }

    post-destroot {
        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${subport}
        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${subport}/examples
        xinstall -m 755 -d \
          ${destroot}${prefix}/share/doc/${subport}/examples/yaml-highlight
        xinstall -m 644 -W ${worksrcpath} LICENSE README \
          ${destroot}${prefix}/share/doc/${subport}
        xinstall -m 644 -W ${worksrcpath}/examples/yaml-highlight yaml_hl.cfg \
          yaml_hl.py \
          ${destroot}${prefix}/share/doc/${subport}/examples/yaml-highlight
    }
    
}

livecheck.url http://pyyaml.org/download/pyyaml/
livecheck.regex PyYAML-(\[0-9+\]\.\[0-9\]+)\.tar\.gz
