Ticket #33194: Portfile

File Portfile, 1.3 KB (added by petrus.hyvonen@…, 12 years ago)
Line 
1# -*- 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
2# $Id$
3
4PortSystem              1.0
5PortGroup               python 1.0
6
7name                py-etsdevtools
8version             4.0.0
9categories-append   devel
10maintainers         vcn.com:jjstickel openmaintainer
11description         Tools to support Python development
12long_description    The etsdevtools project includes a set of packages that \
13                    can be used during the development of a software project,\
14                    for understanding, debugging, testing, and inspecting code.
15                   
16platforms           darwin
17homepage            http://code.enthought.com/projects/ets_dev_tools/
18master_sites        http://www.enthought.com/repo/ets/
19distname            etsdevtools-${version}
20
21checksums           md5     5f5b2800b63619c1e8e02c3790133910 \
22                    sha1    0de3fb0d4b1c23429ce591b9755489ac4addeedd \
23                    rmd160  fb8c922ac8bb0685d27d9506ad2d54510621eac6
24
25
26python.versions        25 26 27
27python.default_version 27
28
29if {$subport != $name} {
30    depends_build-append    port:py${python.version}-distribute
31    depends_lib-append      port:py${python.version}-traits \
32                            port:py${python.version}-numpy
33}
34