[92415] trunk/dports/python

aronnax at macports.org aronnax at macports.org
Fri Apr 27 21:47:59 PDT 2012


Revision: 92415
          https://trac.macports.org/changeset/92415
Author:   aronnax at macports.org
Date:     2012-04-27 21:47:58 -0700 (Fri, 27 Apr 2012)
Log Message:
-----------
py-pynds: new port, Python wrapper for nds2-client LIGO data access library

Added Paths:
-----------
    trunk/dports/python/py-pynds/
    trunk/dports/python/py-pynds/Portfile

Added: trunk/dports/python/py-pynds/Portfile
===================================================================
--- trunk/dports/python/py-pynds/Portfile	                        (rev 0)
+++ trunk/dports/python/py-pynds/Portfile	2012-04-28 04:47:58 UTC (rev 92415)
@@ -0,0 +1,75 @@
+# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
+# $Id$
+
+PortSystem              1.0
+PortGroup               python 1.0
+
+name                    py-pynds
+version                 0.7.0
+categories              python science
+platforms               darwin
+maintainers             aronnax ram
+description             Network Data Server Client Python Wrapper
+long_description \
+  Python wrapper for accessing streamed LIGO data using the Network \
+  Data Server version 2.
+
+homepage                http://www.lsc-group.phys.uwm.edu/daswg/
+master_sites            ${homepage}download/software/source/
+distname                pynds-${version}
+checksums               md5     fb5ad5fa944c9f5252c8385a55ac76eb \
+                        sha1    79d730534ac7fac2280f8b027f2b3017c5bfb323 \
+                        rmd160  e629494a1dabdf747845e0b69faa87746c3a2a37
+
+python.versions         25 26 27
+python.default_version  27
+
+if {${subport} != ${name}} {
+
+depends_lib-append      port:nds2-client \
+                        port:boost \
+                        port:py${python.version}-numpy
+
+if { ![file exists ${prefix}/lib/libboost_python-mt.dylib] } {
+  depends_lib-delete port:boost
+}
+
+pre-fetch {
+  if { ![file exists ${prefix}/lib/libboost_python-mt.dylib] } {
+    if { [file exists ${prefix}/lib/libboost_system-mt.dylib] } {
+      ui_error "
+****
+**** PyNDS requires port boost installed with variant +python${python.version}.
+**** Please do the following then try installing ${name} again:
+****
+****     sudo port install boost +python${python.version}
+****
+
+"
+    } else {
+      ui_error "
+****
+**** PyNDS requires port boost installed with variant +python${python.version}.
+**** Please do the following then try installing ${name} again:
+****
+****     sudo port install boost +python${python.version}
+****
+
+"
+    }
+    error "${name} requires boost +python${python.version}"
+  }
+}
+
+build.env       PYTHON_CFLAGS="-I${prefix}/include/boost" \
+                CFLAGS="-I${prefix}/include/boost"
+
+}
+
+if {${name} == ${subport}} {
+  livecheck.type      regex
+  livecheck.url       ${master_sites}
+  livecheck.regex     {pynds-(\d+(?:\.\d+)*).tar.gz}
+} else {
+  livecheck.type  none
+}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20120427/3ccf7fe8/attachment-0001.html>


More information about the macports-changes mailing list