# -*- 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 119849 2014-05-08 04:02:45Z jmr@macports.org $

PortSystem          1.0
PortGroup           python 1.0

name                py-setuptools
version             3.6
categories-append   devel
license             {PSF ZPL}
maintainers         jmr openmaintainer
description         distutils enhancement for build and distribution
long_description \
    setuptools is a collection of enhancements to the Python distutils that \
    allow you to more easily build and distribute Python packages, \
    especially ones that have dependencies on other packages.

platforms           darwin
supported_archs     noarch

homepage            https://pypi.python.org/pypi/setuptools/
master_sites        https://pypi.python.org/packages/source/s/setuptools/
distname            setuptools-${version}

checksums           md5    8f3a1dcdc14313c8334eb6af4f66ea0a \
                    rmd160 341c75f63cedffa1db90f4d0228d7a9f56604e50 \
                    sha256 afaf5f78b9b0b6439af11224601b2130494051701912e4d9915647e51d9de0e7

python.versions     24 25 26 27 31 32 33 34
python.link_binaries no
python.move_binaries no

if {$subport ne $name} {
    if {${python.version} <= 25} {
        version     1.4.2
        distname    setuptools-${version}
        checksums   md5    13951be6711438073fbe50843e7f141f \
                    rmd160 b48086a2aae718fe433a8c882d2d9209aa157b0a \
                    sha256 263986a60a83aba790a5bffc7d009ac88114ba4e908e5c90e453b3bf2155dbbd
    }

    post-destroot {
       xinstall -m 755 -d ${destroot}${prefix}/share/doc/${subport}
       xinstall -m 644 -W ${worksrcpath} CHANGES.txt \
          DEVGUIDE.txt README.txt ${destroot}${prefix}/share/doc/${subport}
       if {${python.version} <= 25} {
          delete "${destroot}${prefix}/bin/easy_install"
       } else {
          ln -s "${python.prefix}/bin/easy_install-${python.branch}" "${destroot}${prefix}/bin/"
       }
    }
    livecheck.type      none
} else {
    livecheck.type      regex
    livecheck.url       ${homepage}
    livecheck.regex     setuptools/(\\d+(\\.\\d+)+)
}
