# -*- 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 127532 2014-10-29 10:08:22Z stromnov@macports.org $

PortSystem          1.0
PortGroup           python 1.0

name                py-scikits-module
version             0.1
maintainers         stromnov openmaintainer

description         provides the files common to all scikits
long_description    ${description}

platforms           darwin
license             BSD

homepage            http://scikits.appspot.com

supported_archs     noarch

python.versions     26 27 33 34

if {${name} ne ${subport}} {
    # Nothing to see here, move along
    distfiles
    build {}

    destroot {
        set scikits_dir ${destroot}${python.pkgd}/scikits
        file mkdir ${scikits_dir}
        file copy ${portpath}/${filesdir}/__init__.py ${scikits_dir}
    }
}

livecheck.type      none
