Ticket #33216: Portfile

File Portfile, 1.2 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-envisage
8version             4.1.0
9categories-append   devel
10maintainers         vcn.com:jjstickel openmaintainer
11supported_archs     noarch
12
13description         The Enthought envisage package
14long_description    Envisage is a Python-based framework for building extensible applications
15platforms           darwin
16homepage            http://code.enthought.com/projects/envisage/
17master_sites        http://www.enthought.com/repo/ets/
18distname            envisage-${version}
19
20checksums           md5     cbb851c437190bb11df84455176321af \
21                    sha1    189b07131daf2f24488bb1bf145545115a809c46 \
22                    rmd160  73a67deffed70eb5c050b6067b5eb6d8bb7eaae5
23
24python.versions        25 26 27
25python.default_version 27
26
27if {$subport != $name} {
28    depends_build-append    port:py${python.version}-distribute
29    depends_lib-append      port:py${python.version}-apptools \
30                            port:py${python.version}-traits port:py${python.version}-traitsui
31}
32