Ticket #42411: Portfile-pystfio.patch

File Portfile-pystfio.patch, 2.1 KB (added by neurodroid (Christoph Schmidt-Hieber), 11 years ago)

py-stfio Portfile patch

  • ./Portfile

     
    11# -*- 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: Portfile 115709 2014-01-09 16:10:16Z eborisch@macports.org $
     2# $Id$
    33
    44PortSystem          1.0
    55PortGroup           python 1.0
    66
    77name                py-stfio
    8 version             0.13.8
    9 revision            1
     8version             0.13.12
    109categories          python science
    1110platforms           darwin
    1211license             GPL-2
     
    1413description         Electrophysiology file support for Python
    1514long_description    A Python module to read common electrophysiology file formats.
    1615homepage            http://www.stimfit.org
    17 master_sites        googlecode:stimfit
     16master_sites        http://www.stimfit.org
    1817distname            stimfit-${version}
    1918
    20 checksums           rmd160  41c5fbb25e8a88d02d5607ec819b51086544e1c8 \
    21                     sha256  684f488f042d4106c08bd22db81942bb24346736ea75b690df4553e15bf77e23
     19checksums           rmd160  10777b4313707c7e240f552c07ced189affb42fa \
     20                    sha256  a0950b7e3b0305a9939e2267fce13f2405e03be6ec19dc9b5e64fe4879a5f47c
    2221
    2322python.versions     26 27 33 34
    2423
     
    3029                    port:py${python.version}-numpy
    3130
    3231    configure.args  --disable-dependency-tracking \
    33                     --enable-module
     32                    --enable-module \
     33                    --without-biosig
    3434
    3535    configure.python \
    3636                    ${python.bin}
     
    4545    post-destroot {
    4646        set docdir ${destroot}${prefix}/share/doc/${subport}
    4747        xinstall -d ${docdir}
    48         xinstall -m 644 ${worksrcpath}/debian/copyright \
     48        xinstall -m 644 ${worksrcpath}/dist/debian/copyright \
    4949            ${worksrcpath}/COPYING ${docdir}
    5050    }
     51
     52    variant biosig description {Use biosig library for file I/O.} {
     53        depends_lib-append \
     54            port:libbiosig
     55
     56        configure.args-replace \
     57            --without-biosig \
     58            --with-biosig
     59    }
     60
     61    default_variants    +biosig
     62
    5163}