Ticket #33110: py-chaco_Portfile

File py-chaco_Portfile, 1.5 KB (added by jjstickel (Jonathan Stickel), 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-chaco
8version             4.1.0
9categories-append   devel
10maintainers         nomaintainer
11platforms           darwin
12description         The Enthought chaco package for 2-D plotting
13long_description    Chaco is a Python plotting application toolkit that\
14                    facilitates writing plotting applications at all levels\
15                    of complexity, from simple scripts with hard-coded data to\
16                    large plotting programs with complex data\
17                    interrelationships and a multitude of interactive\
18                    tools. While Chaco generates attractive static plots for\
19                    publication and presentation, it also works well\
20                    interactive data visualization and exploration.
21license             bsd
22homepage            https://github.com/enthought/chaco
23master_sites        http://www.enthought.com/repo/ets/
24distname            chaco-${version}
25
26checksums           sha256 cdc80d77661fa955a4a4466b5b3f55808beedfc48f8f14b33f2ba81ccb360cc7 \
27                    rmd160 4df41bfbeaffdca4e2213a9a210a3e9ca28a616c
28                   
29python.versions     25 26 27
30python.default_version 27
31
32if {$subport != $name} {
33    depends_build-append    port:py${python.version}-distribute
34    depends_lib-append      port:py${python.version}-enable \
35                            port:py${python.version}-numpy
36}