Ticket #42411: Portfile-pystfio.patch
File Portfile-pystfio.patch, 2.1 KB (added by neurodroid (Christoph Schmidt-Hieber), 11 years ago) |
---|
-
./Portfile
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 # $Id : Portfile 115709 2014-01-09 16:10:16Z eborisch@macports.org$2 # $Id$ 3 3 4 4 PortSystem 1.0 5 5 PortGroup python 1.0 6 6 7 7 name py-stfio 8 version 0.13.8 9 revision 1 8 version 0.13.12 10 9 categories python science 11 10 platforms darwin 12 11 license GPL-2 … … 14 13 description Electrophysiology file support for Python 15 14 long_description A Python module to read common electrophysiology file formats. 16 15 homepage http://www.stimfit.org 17 master_sites googlecode:stimfit16 master_sites http://www.stimfit.org 18 17 distname stimfit-${version} 19 18 20 checksums rmd160 41c5fbb25e8a88d02d5607ec819b51086544e1c8\21 sha256 684f488f042d4106c08bd22db81942bb24346736ea75b690df4553e15bf77e2319 checksums rmd160 10777b4313707c7e240f552c07ced189affb42fa \ 20 sha256 a0950b7e3b0305a9939e2267fce13f2405e03be6ec19dc9b5e64fe4879a5f47c 22 21 23 22 python.versions 26 27 33 34 24 23 … … 30 29 port:py${python.version}-numpy 31 30 32 31 configure.args --disable-dependency-tracking \ 33 --enable-module 32 --enable-module \ 33 --without-biosig 34 34 35 35 configure.python \ 36 36 ${python.bin} … … 45 45 post-destroot { 46 46 set docdir ${destroot}${prefix}/share/doc/${subport} 47 47 xinstall -d ${docdir} 48 xinstall -m 644 ${worksrcpath}/d ebian/copyright \48 xinstall -m 644 ${worksrcpath}/dist/debian/copyright \ 49 49 ${worksrcpath}/COPYING ${docdir} 50 50 } 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 51 63 }