Ticket #43677: Portfile.2

File Portfile.2, 1.2 KB (added by mf2k (Frank Schima), 10 years ago)
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           github 1.0
6PortGroup           python 1.0
7
8github.setup        pyne pyne 0.4-rc1
9
10name                py-pyne
11categories-append   science
12platforms           darwin
13license             BSD
14
15python.versions     27 33 34
16
17maintainers         nomaintainer
18
19description         Python for Nuclear Engineering
20long_description    PyNE is a toolkit for making common tasks in nuclear\
21                    engineering easier, faster, better
22
23homepage            http://www.pyne.io/
24
25checksums           rmd160  ba83371193d5057ff10bd8ac127fdce34f47c70c \
26                    sha256  234a39484871d018ec2809c273bcb194391e4d804e53b7024a40529c31feb5cf
27
28if {${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}