# -*- coding: utf-8; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
# $Id: Portfile 110788 2013-09-06 06:23:29Z stromnov@macports.org $

PortSystem          1.0
PortGroup           python 1.0

name                py-scikits-module
version             0.1
maintainers         mnick 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        24 25 26 27 32 33
python.default_version 24

if {${subport} != ${name}} {
    # 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
