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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-chaco |
---|
8 | version 4.1.0 |
---|
9 | categories-append devel |
---|
10 | maintainers nomaintainer |
---|
11 | platforms darwin |
---|
12 | description The Enthought chaco package for 2-D plotting |
---|
13 | long_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. |
---|
21 | license bsd |
---|
22 | homepage https://github.com/enthought/chaco |
---|
23 | master_sites http://www.enthought.com/repo/ets/ |
---|
24 | distname chaco-${version} |
---|
25 | |
---|
26 | checksums sha256 cdc80d77661fa955a4a4466b5b3f55808beedfc48f8f14b33f2ba81ccb360cc7 \ |
---|
27 | rmd160 4df41bfbeaffdca4e2213a9a210a3e9ca28a616c |
---|
28 | |
---|
29 | python.versions 25 26 27 |
---|
30 | python.default_version 27 |
---|
31 | |
---|
32 | if {$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 | } |
---|