Ticket #45194: patch-Portfile-ndmanager.diff
File patch-Portfile-ndmanager.diff, 3.0 KB (added by NicosPavlov, 10 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 2 # $Id$ 3 3 4 #Portfile made obsolete 2014/09/28 4 5 PortSystem 1.0 5 6 6 7 name ndmanager 7 8 version 1.2.3 8 categories science 9 platforms darwin 10 maintainers gmail.com:FlorianFranzen 11 license GPL-2+ 9 revision 1 12 10 13 description Simple graphical application to help manage experimental recording parameters and process data 11 replaced_by ndmanager2 14 12 15 long_description Manageable recording parameters are e.g., number of channels and sampling \ 16 rate of the acquisition system. Can process data by filtering, spike \ 17 extraction, PCA, etc. NDManager is part of a larger data analysis framework, \ 18 see Klusters, NeuroScope and FMAToolbox. 13 platforms darwin 14 maintainers nomaintainer 15 supported_archs noarch 16 description this port is only a stub and has been made obsolete by ${replaced_by} 17 default long_description ${description} 19 18 20 homepage http://ndmanager.sourceforge.net/ 21 master_sites sourceforge:project/ndmanager/ndmanager/ndmanager-${version} 22 distname ${name}_${version} 23 worksrcdir ${name} 19 homepage http://www.macports.org/ 24 20 25 checksums rmd160 9bfba2b130e0673987190ac74dc985332493eb52 \ 26 sha256 775bc655712bb09f0c90402a0dcd441fb266f3992ce349312a3c9878b3c8dfd9 21 archive_sites 22 distfiles 27 23 28 depends_lib port:kdelibs3 \ 29 port:qt3 \ 30 port:libxml2 24 pre-configure { 25 ui_error "KDE3 is considered obsolete, and is being replaced by KDE4. Consequently, ${subport} has been made obsolete by the port ${replaced_by}. Please install ${replaced_by} instead. 26 To do this, it is required to fully uninstall KDE3 first, to then install KDE4 by running 27 sudo port uninstall --follow-dependents kdelibs3 28 WARNING: By running this command, all KDE3 ports will be uninstalled. Please ensure that there are replacements for all the programs you are using." 29 return -code error "obsolete port" 30 } 31 31 32 patchfiles patch_src_Makefile-tmpldir_prefix.diff 33 34 configure.args --with-qt-dir=${prefix}/lib/qt3 \ 35 --with-qt-includes=${prefix}/lib/qt3/include \ 36 --with-qt-libraries=${prefix}/lib/qt3/lib \ 37 --with-kde3=yes \ 38 --with-extra-libs=${prefix}/lib/kde3 \ 39 --with-extra-includes=${prefix}/lib/kde3/include \ 40 --without-arts 41 42 livecheck.regex /${name}_(\[0-9.\]+)${extract.suffix} 32 livecheck.type none