Ticket #33216: py-envisage_Portfile

File py-envisage_Portfile, 1.3 KB (added by jjstickel (Jonathan Stickel), 12 years ago)

added license, etc.

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         gmail.com:jjstickel openmaintainer
11description         The Enthought envisage package
12long_description    Envisage is a Python-based framework for building\
13    extensible applications, that is, applications whose functionality can\
14    be extended by adding plug-ins. Envisage provides a standard mechanism\
15    for features to be added to an application, whether by the original\
16    developer or by someone else.
17license             BSD
18platforms           darwin
19homepage            https://github.com/enthought/envisage
20master_sites        http://www.enthought.com/repo/ets/
21distname            envisage-${version}
22
23checksums           sha256  51a401f382982e5750c0e4ed8e245fef7f4c2da850bd3241d12c442b6ea7aa05 \
24                    rmd160  73a67deffed70eb5c050b6067b5eb6d8bb7eaae5
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}-apptools
32}