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 wxWidgets 1.0 |
5 | 6 | |
6 | 7 | name stimfit |
7 | | version 0.14.13 |
8 | | revision 2 |
| 8 | version 0.15.4 |
9 | 9 | categories science |
10 | 10 | platforms darwin |
11 | 11 | license GPL-2 |
… |
… |
|
15 | 15 | homepage http://www.stimfit.org |
16 | 16 | master_sites ${homepage} |
17 | 17 | |
18 | | checksums rmd160 bdf89fe65cb65c0a3f40e0abe9c832a6e623afed \ |
19 | | sha256 e3dd771129fea5bb6a250da4594bd2ba52e6fd73272b5d51ef2c005d38a0b7f3 |
| 18 | checksums rmd160 683df46ed12543bd4e0b668e92d1d91156b61881 \ |
| 19 | sha256 aa7d5adc97c60e5f3748c807b98184daeeeac1149ae94281105fed128b910fe0 |
20 | 20 | |
21 | 21 | wxWidgets.use wxPython-3.0 |
22 | 22 | |
… |
… |
|
57 | 57 | --with-lapack-lib=${prefix}/lib/libatlas.a |
58 | 58 | } |
59 | 59 | |
60 | | variant biosig description {Use biosig library for file I/O.} { |
| 60 | variant biosig conflicts biosiglite description {Use external biosig library for file I/O.} { |
61 | 61 | depends_lib-append \ |
62 | 62 | port:libbiosig |
63 | 63 | |
64 | 64 | configure.args-replace \ |
65 | 65 | --without-biosig \ |
66 | | --with-biosig |
| 66 | --with-biosig2 |
| 67 | } |
| 68 | |
| 69 | variant biosiglite conflicts biosig description {Use internal biosiglite library for file I/O.} { |
| 70 | configure.args-replace \ |
| 71 | --without-biosig \ |
| 72 | --with-biosiglite |
67 | 73 | } |
68 | 74 | |
69 | 75 | configure.ldflags-append \ |
… |
… |
|
74 | 80 | default_variants +python27 |
75 | 81 | # } |
76 | 82 | default_variants-append \ |
77 | | +biosig |
| 83 | +biosiglite |
78 | 84 | |
79 | 85 | destroot.destdir DESTDIR=${destroot}${applications_dir} |
80 | 86 | |