Ticket #33183: Portfile

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

Now the correct py-scimath file

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-scimath
8version                 4.0.1
9categories-append       devel
10maintainers             vcn.com:jjstickel openmaintainer
11description             The Enthought scimath package
12long_description        The SciMath project includes packages to support\
13                        scientific and mathematical calculations,\ enthought.interpolate, enthought.mathematics,\ enthought.units
14platforms               darwin
15homepage                http://code.enthought.com/projects/sci_math/
16master_sites            http://www.enthought.com/repo/ets/
17distname                scimath-${version}
18
19
20checksums           md5     41270fb38e81112deb20ef25a2a430ac \
21                    sha1    537f65077ccfea2b38f9f17db522f489ac9d3e91 \
22                    rmd160  7d5200c69ae6df7bfca38090790d8a45e46dcb50
23
24python.versions        25 26 27
25python.default_version 27
26
27if {$subport != $name} {
28    depends_build-append    port:py${python.version}-distribute
29    depends_lib-append      port:py${python.version}-traits \
30                            port:py${python.version}-numpy \
31                            port:py${python.version}-scipy
32}
33