Ticket #33212: Portfile

File Portfile, 1.6 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-blockcanvas
8version             4.0.1
9categories-append   devel
10maintainers         vcn.com:jjstickel openmaintainer
11description         The Enthought visual environment for creating simulation experiments
12long_description    The blockcanvas project provides a visual environment for\
13                    creating simulation experiments, where function and data\ are separated. Thus, you can define your simulation\ algorithm by visually connecting function blocks into\
14                    a data flow network, and then run it with various data\
15                    sets (known as contexts) likewise, you can use the same\ context in a different functional simulation.
16
17platforms           darwin
18homepage            http://github.enthought.com/blockcanvas
19master_sites        http://www.enthought.com/repo/ets/
20distname            blockcanvas-${version}
21
22checksums           md5     b397dec9e83423f19349aebbcb9c3f75 \
23                    sha1    90003d92d77f3c7254ea1f5d34c0d00d527dcb77 \
24                    rmd160  62dd66603eebbfdd67156e8c33b65f657b1015c7
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                            port:py${python.version}-scimath\ port:py${python.version}-etsdevtools \
33                            port:py${python.version}-chaco
34}
35