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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-etsdevtools |
---|
8 | version 4.0.0 |
---|
9 | categories-append devel |
---|
10 | maintainers vcn.com:jjstickel openmaintainer |
---|
11 | description Tools to support Python development |
---|
12 | long_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 | |
---|
16 | platforms darwin |
---|
17 | homepage http://code.enthought.com/projects/ets_dev_tools/ |
---|
18 | master_sites http://www.enthought.com/repo/ets/ |
---|
19 | distname etsdevtools-${version} |
---|
20 | |
---|
21 | checksums md5 5f5b2800b63619c1e8e02c3790133910 \ |
---|
22 | sha1 0de3fb0d4b1c23429ce591b9755489ac4addeedd \ |
---|
23 | rmd160 fb8c922ac8bb0685d27d9506ad2d54510621eac6 |
---|
24 | |
---|
25 | |
---|
26 | python.versions 25 26 27 |
---|
27 | python.default_version 27 |
---|
28 | |
---|
29 | if {$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 | |
---|