Ticket #61828: Portfile.2

File Portfile.2, 1.5 KB (added by jjstickel (Jonathan Stickel), 3 years ago)

py-chaco

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
3PortSystem          1.0
4PortGroup           python 1.0
5PortGroup           github 1.0
6
7github.setup        enthought chaco 4.8.0
8
9name                py-chaco
10categories-append   devel
11license             BSD PSF
12maintainers         nomaintainer
13platforms           darwin
14description         The Enthought chaco package for 2-D plotting
15long_description    Chaco is a Python plotting application toolkit that\
16                    facilitates writing plotting applications at all levels\
17                    of complexity, from simple scripts with hard-coded data to\
18                    large plotting programs with complex data\
19                    interrelationships and a multitude of interactive\
20                    tools. While Chaco generates attractive static plots for\
21                    publication and presentation, it also works well\
22                    interactive data visualization and exploration.
23
24checksums           rmd160  846a6673a63a14b5221c9e51b1d9fb12871ef3aa \
25                    sha256  f07008ac77997438762fc5d80caf85ba83c3761a0f45b12605ffd5dc7b385608 \
26                    size    1
27
28python.versions     36 37 38
29
30if {${name} ne ${subport}} {
31    depends_build-append    port:py${python.version}-setuptools
32    depends_lib-append      port:py${python.version}-enable \
33                            port:py${python.version}-numpy
34}