diff -ur a/Portfile b/Portfile
a
|
b
|
|
1 | 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 | 2 | # $Id$ |
| 3 | |
3 | 4 | PortSystem 1.0 |
4 | 5 | PortGroup python 1.0 |
5 | 6 | |
6 | 7 | name py-stfio |
7 | | version 0.14.13 |
8 | | revision 2 |
| 8 | version 0.15.4 |
9 | 9 | categories python science |
10 | 10 | platforms darwin |
11 | 11 | license GPL-2 |
… |
… |
|
16 | 16 | master_sites ${homepage} |
17 | 17 | distname stimfit-${version} |
18 | 18 | |
19 | | checksums rmd160 bdf89fe65cb65c0a3f40e0abe9c832a6e623afed \ |
20 | | sha256 e3dd771129fea5bb6a250da4594bd2ba52e6fd73272b5d51ef2c005d38a0b7f3 |
| 19 | checksums rmd160 683df46ed12543bd4e0b668e92d1d91156b61881 \ |
| 20 | sha256 aa7d5adc97c60e5f3748c807b98184daeeeac1149ae94281105fed128b910fe0 |
21 | 21 | |
22 | | python.versions 27 34 35 |
| 22 | python.versions 27 35 36 |
23 | 23 | |
24 | 24 | if { ${name} ne ${subport} } { |
25 | 25 | depends_build port:swig-python |
… |
… |
|
50 | 50 | ${worksrcpath}/COPYING ${docdir} |
51 | 51 | } |
52 | 52 | |
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.} { |
54 | 54 | depends_lib-append \ |
55 | 55 | port:libbiosig |
56 | 56 | |
57 | 57 | configure.args-replace \ |
58 | 58 | --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 |
60 | 66 | } |
61 | 67 | |
62 | | default_variants +biosig |
| 68 | default_variants +biosiglite |
63 | 69 | } |