Ticket #33195: Portfile

File Portfile, 1.4 KB (added by petrus.hyvonen@…, 12 years ago)

new portfile

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-apptools
8version             4.0.1
9categories-append   devel
10maintainers         vcn.com:jjstickel openmaintainer
11description         The Enthought apptools package
12long_description    The Enthought Tool Suite includes a set of packages\
13                    that we have found useful in creating a number of\ applications. They implement functionality that is\
14                    commonly needed by many applications.\
15                    These packages are distributed together as the \
16                    AppTools project.
17platforms           darwin
18homepage            http://code.enthought.com/projects/app_tools.php
19master_sites        http://www.enthought.com/repo/ets/
20distname            apptools-${version}
21
22checksums           md5     cd988ecf41f790dbd2a266d237c673d2 \
23                    sha1    0ffa78ea4857e5192c494a67c93f5a7014df1c0e \
24                    rmd160  6fc5ca5db74185ffca836879a7d9078dd0ed3f10
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}-traitsui 
33}
34