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 github 1.0 |
---|
6 | PortGroup python 1.0 |
---|
7 | |
---|
8 | github.setup pyne pyne 0.4-rc1 |
---|
9 | |
---|
10 | name py-pyne |
---|
11 | categories-append science |
---|
12 | platforms darwin |
---|
13 | license BSD |
---|
14 | |
---|
15 | python.versions 27 33 34 |
---|
16 | |
---|
17 | maintainers nomaintainer |
---|
18 | |
---|
19 | description Python for Nuclear Engineering |
---|
20 | long_description PyNE is a toolkit for making common tasks in nuclear\ |
---|
21 | engineering easier, faster, better |
---|
22 | |
---|
23 | homepage http://www.pyne.io/ |
---|
24 | |
---|
25 | checksums rmd160 ba83371193d5057ff10bd8ac127fdce34f47c70c \ |
---|
26 | sha256 234a39484871d018ec2809c273bcb194391e4d804e53b7024a40529c31feb5cf |
---|
27 | |
---|
28 | if {${name} ne ${subport}} { |
---|
29 | build.target build |
---|
30 | build.args --hdf5=${prefix} \ |
---|
31 | |
---|
32 | destroot.args --hdf5=${prefix} \ |
---|
33 | |
---|
34 | depends_build-append \ |
---|
35 | port:py${python.version}-cython |
---|
36 | |
---|
37 | depends_lib-append port:hdf5-18 \ |
---|
38 | port:py${python.version}-numpy \ |
---|
39 | port:py${python.version}-scipy \ |
---|
40 | port:py${python.version}-tables |
---|
41 | } |
---|