Ticket #54943: Portfile-py-stfio.diff

File Portfile-py-stfio.diff, 1.8 KB (added by neurodroid (Christoph Schmidt-Hieber), 7 years ago)

py-stfio Portfile patch

  • Portfile

    diff -ur a/Portfile b/Portfile
    a b  
    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
    22# $Id$
     3
    34PortSystem          1.0
    45PortGroup           python 1.0
    56
    67name                py-stfio
    7 version             0.14.13
    8 revision            2
     8version             0.15.4
    99categories          python science
    1010platforms           darwin
    1111license             GPL-2
     
    1616master_sites        ${homepage}
    1717distname            stimfit-${version}
    1818
    19 checksums           rmd160  bdf89fe65cb65c0a3f40e0abe9c832a6e623afed \
    20                     sha256  e3dd771129fea5bb6a250da4594bd2ba52e6fd73272b5d51ef2c005d38a0b7f3
     19checksums           rmd160  683df46ed12543bd4e0b668e92d1d91156b61881 \
     20                    sha256  aa7d5adc97c60e5f3748c807b98184daeeeac1149ae94281105fed128b910fe0
    2121
    22 python.versions     27 34 35
     22python.versions     27 35 36
    2323
    2424if { ${name} ne ${subport} } {
    2525    depends_build   port:swig-python
     
    5050            ${worksrcpath}/COPYING ${docdir}
    5151    }
    5252
    53     variant biosig description {Use biosig library for file I/O.} {
     53    variant biosig conflicts biosiglite description {Use external biosig library for file I/O.} {
    5454        depends_lib-append \
    5555            port:libbiosig
    5656
    5757        configure.args-replace \
    5858            --without-biosig \
    59             --with-biosig
     59            --with-biosig2
     60    }
     61
     62    variant biosiglite conflicts biosig description {Use internal biosiglite library for file I/O.} {
     63        configure.args-replace \
     64            --without-biosig \
     65            --with-biosiglite
    6066    }
    6167
    62     default_variants    +biosig
     68    default_variants    +biosiglite
    6369}