Ticket #33110: Portfile.2

File Portfile.2, 1.4 KB (added by petrus.hyvonen@…, 12 years ago)

Updated to unified python

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
11description         The Enthought chaco package for 2-D plotting
12long_description    Chaco is a Python plotting application toolkit that facilitates writing plotting applications at all \
13                    levels of complexity, from simple scripts with hard-coded data to large plotting programs with complex \
14                    data interrelationships and a multitude of interactive tools. While Chaco generates attractive static plots \
15                    for publication and presentation, it also works well interactive data visualization and exploration.
16
17homepage            http://code.enthought.com/projects/chaco/
18master_sites        http://www.enthought.com/repo/ets/
19distname            chaco-${version}
20
21checksums           md5     7176a774dd6e65965caf4d49067bc61c \
22                    sha1    2b85e76cd368f3f5e5bbf5f483e840927a7eddd1 \
23                    rmd160  4df41bfbeaffdca4e2213a9a210a3e9ca28a616c
24                   
25python.versions     24 25 26 27
26
27if {$subport != $name} {
28    depends_build-append    port:py${python.version}-distribute
29    depends_lib-append      port:py${python.version}-enable \
30                            port:py${python.version}-numpy
31}