Ticket #51448: Portfile

File Portfile, 1.6 KB (added by coquelleni@…, 8 years ago)

This Portfile cancels and replaces the previous one.

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-pyFAI
8version             0.11.0
9master_sites        http://pypi.python.org/packages/source/p/pyFAI/
10homepage            https://github.com/pyFAI/pyFAI
11license             GPL-3
12platforms           darwin
13universal_variant   no
14description         Azimuthal Integration library
15long_description    pyFAI is an azimuthal integration library that tries to be fast (as fast as C\
16                    and even more using OpenCL and GPU).\
17                    It is based on histogramming of the 2theta/Q positions of each (center of)\
18                    pixel weighted by the intensity of each pixel, but parallel version use a\
19                    SparseMatrix-DenseVector multiplication.
20maintainers         ill.fr:coquelleni openmaintainer
21checksums           rmd160  2b50e0af8a6d808d1b725ba510ff8d5a07f0329f\
22                    sha256  0b58a8c2abcf14d4bf7d237fb14b54ef231c77b799a985d626eb05f3dc4c4a8c
23distname            pyFAI-${version}
24python.versions     27 34 35
25compiler.blacklist  *clang*
26       
27if {${name} ne ${subport}} {
28depends_build-append \
29                    port:py${python.version}-cython
30
31depends_lib-append \
32                    port:py${python.version}-numpy \
33                    port:py${python.version}-scipy \
34                    port:py${python.version}-matplotlib \
35                    port:py${python.version}-h5py \
36                    port:py${python.version}-pyopencl
37}