# -*- 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 92642 2012-05-02 23:38:06Z jmr@macports.org $

PortSystem 1.0
PortGroup python 1.0

name                py-docutils
version             0.9
categories-append   textproc
license             GPL-3+ PSF-2.1.1 BSD
maintainers         jmr alexnicksay.com:alex openmaintainer
description         A set of tools for processing plaintext documentation
long_description    Docutils is a set of tools for processing plaintext \
                    documentation into useful formats, such as HTML, XML, \
                    and LaTeX. Includes reStructuredText, the easy to read, \
                    easy to use, what-you-see-is-what-you-get plaintext \
                    markup language.
platforms           darwin
supported_archs     noarch

homepage            http://docutils.sourceforge.net/
master_sites        sourceforge:project/docutils/docutils/${version}/
distname            docutils-${version}

checksums           md5    2f79520bbbdb89b1a9b5f29832b37123 \
                    sha1   6c5c949bc50073dc60536d54323cd94d9d3f2ed3 \
                    rmd160 954e242a8d7bea889308bc4608126aa3e07f0dbb

python.versions     24 25 26 27

if {$subport != $name} {
    depends_lib         port:py${python.version}-roman
    
    # we want e.g. *-2.7.py not *.py-2.7
    python.link_binaries no
    post-destroot {
        foreach f {rst2html rst2latex rst2man rst2odt rst2odt_prepstyles rst2pseudoxml rst2s5 rst2xml rstpep2html rst2xetex} {
            if {${python.version} >= 26} {
                ln -s ${python.prefix}/bin/${f}.py ${destroot}${prefix}/bin/${f}-${python.branch}.py
            } else {
                move ${destroot}${prefix}/bin/${f}.py ${destroot}${prefix}/bin/${f}-${python.branch}.py
            }
        }
    }
    livecheck.type  none
} else {
    livecheck.url   http://sourceforge.net/api/file/index/project-id/38414/rss
    livecheck.regex {docutils/([0-9.]+)}    
}
