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.1 |
---|
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 | |
---|
26 | checksums rmd160 38443939bb5da0ad29c05373c3f42fa7fab96a57 \ |
---|
27 | sha256 7102593eb8b570c9828ce4026a60ea1ad10b7a3c728179b5ff8780a61313cc9f |
---|
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 | } |
---|