[125643] trunk/dports/science

michaelld at macports.org michaelld at macports.org
Tue Sep 23 07:15:47 PDT 2014


Revision: 125643
          https://trac.macports.org/changeset/125643
Author:   michaelld at macports.org
Date:     2014-09-23 07:15:47 -0700 (Tue, 23 Sep 2014)
Log Message:
-----------
gr-air-modes: new port.

Added Paths:
-----------
    trunk/dports/science/gr-air-modes/
    trunk/dports/science/gr-air-modes/Portfile
    trunk/dports/science/gr-air-modes/files/
    trunk/dports/science/gr-air-modes/files/patch-CMakeLists.txt.diff
    trunk/dports/science/gr-air-modes/files/patch-cmake_Modules_FindPyQt4.cmake.diff
    trunk/dports/science/gr-air-modes/files/patch-cmake_Modules_GrPython.cmake.diff

Added: trunk/dports/science/gr-air-modes/Portfile
===================================================================
--- trunk/dports/science/gr-air-modes/Portfile	                        (rev 0)
+++ trunk/dports/science/gr-air-modes/Portfile	2014-09-23 14:15:47 UTC (rev 125643)
@@ -0,0 +1,138 @@
+# -*- 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
+# $Id$
+
+PortSystem          1.0
+PortGroup           cmake 1.0
+PortGroup           github 1.0
+PortGroup           active_variants 1.1
+
+github.setup        bistromath gr-air-modes cc0fa1801b077c139939bc963cff17fd65ebfca1
+version             20140214
+checksums           rmd160 69eb20b0612b6dc5fa9792232da5bd8a66e0f137 \
+                    sha256 3df54e224f742e1a67576935aea6f7b56a786f9a28cafebaa4bac619807110d3
+
+# allow gr-air-modes to work with both gnuradio and gnuradio-devel ...
+
+depends_lib-append  path:lib/libgnuradio-runtime.dylib:gnuradio
+
+# ... but not with gnuradio-legacy or gnuradio-next
+
+pre-fetch {
+    if {![catch {set installed [lindex [registry_active gnuradio-legacy] 0]}]} {
+        # gnuradio-legacy is installed; this version of gr-air-modes does not work with gnuradio-legacy
+        ui_msg "\nError: ${name} requires the gnuradio or gnuradio-devel port, and will not work with the gnuradio-legacy port.  deactivate gnuradio-legacy, and then install or activate gnuradio or gnuradio-devel.\n"
+        return -code error "Invalid port dependency: gnuradio-legacy"
+    }
+    if {![catch {set installed [lindex [registry_active gnuradio-next] 0]}]} {
+        # gnuradio-next is installed; this version of gr-air-modes does not work with gnuradio-next
+        ui_msg "\nError: ${name} requires the gnuradio or gnuradio-devel port, and will not work with the gnuradio-next port.  deactivate gnuradio-next, and then install or activate gnuradio or gnuradio-devel.\n"
+            return -code error "Invalid port dependency: gnuradio-next"
+    }
+}
+
+categories          science comms
+maintainers         michaelld openmaintainer
+description         Provides augmented functionality (blocks, GRC definitions, apps, etc) for GNU Radio.
+long_description    ${description}
+license             GPL-3
+platforms           darwin
+
+depends_build-append port:pkgconfig
+depends_lib-append	port:boost port:cppzmq
+
+# Requires qwt >= 5.2, so not the "qwt" port.  Also requires
+# py*-pyqwt which does not compile with qwt >= 6.0; so -have- to
+# use qwt52 for now.
+
+depends_lib-append  port:qwt52
+
+# do VPATH build
+
+post-extract        { file mkdir ${workpath}/build }
+configure.dir       ${workpath}/build
+build.dir           ${workpath}/build
+
+# temporary patch to fix CMake stuff on OSX
+
+patchfiles-append   patch-CMakeLists.txt.diff
+
+# temporary patch to fix Python handling
+
+patchfiles-append   patch-cmake_Modules_GrPython.cmake.diff
+
+# temporary patch to fix use of pyuic
+
+patchfiles-append   patch-cmake_Modules_FindPyQt4.cmake.diff
+
+# remove top-level library path, such that internal libraries are used
+# instead of any already-installed ones.
+
+configure.ldflags-delete -L${prefix}/lib
+
+# set last configure argument to the reletive path
+# to the top-level cmake source
+
+configure.post_args ../${worksrcdir}
+
+# be verbose when building, for debugging purposes
+
+build.post_args VERBOSE=1
+
+# set Python variants
+
+set pythons_suffixes {26 27}
+global chosen_python_suffix
+set chosen_python_suffix ""
+
+set pythons_ports {}
+foreach s ${pythons_suffixes} {
+    lappend pythons_ports python${s}
+}
+
+foreach s ${pythons_suffixes} {
+    set p python${s}
+    set v [join [split ${s} ""] "."]
+    set i [lsearch -exact ${pythons_ports} ${p}]
+    set c [lreplace ${pythons_ports} ${i} ${i}]
+    eval [subst {
+        variant ${p} description "Build ${name} for Python ${v}" \
+            conflicts ${c} {
+
+            set chosen_python_suffix ${s}
+
+            # require gnuradio to also have this Python variant
+            require_active_variants \
+                path:lib/libgnuradio-runtime.dylib:gnuradio ${p}
+
+            depends_lib-append \
+                port:${p}
+
+            # pyqt4 is checked for at configure, then required for
+            # runtime; so use depends_lib to get both.  Can use
+            # either py*-pyqt4 or py*-pyqt4-devel.
+
+            depends_lib-append \
+                path:share/py${s}-sip/PyQt4:py${s}-pyqt4
+
+            # specify that Python version to use
+            configure.args-append \
+                -DPYTHON_EXECUTABLE=${prefix}/bin/python${v} \
+                -DPYTHON_INCLUDE_DIR=${prefix}/Library/Frameworks/Python.framework/Versions/${v}/Headers \
+                -DPYTHON_LIBRARY=${prefix}/Library/Frameworks/Python.framework/Versions/${v}/Python \
+                -DGR_PYTHON_DIR=${frameworks_dir}/Python.framework/Versions/${v}/lib/python${v}/site-packages \
+                -DPYUIC4_EXECUTABLE=${prefix}/bin/pyuic4-${v}
+        }
+    }]
+}
+
+# if no python variant is set, default to 2.7
+if {![variant_isset python26] &&
+    ![variant_isset python27]} {
+    default_variants +python27
+}
+
+# make sure -python27 was not used alone
+if {![variant_isset python26] &&
+    ![variant_isset python27]} {
+    return -code error "Exactly one Python variant must be selected."
+}


Property changes on: trunk/dports/science/gr-air-modes/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/science/gr-air-modes/files/patch-CMakeLists.txt.diff
===================================================================
--- trunk/dports/science/gr-air-modes/files/patch-CMakeLists.txt.diff	                        (rev 0)
+++ trunk/dports/science/gr-air-modes/files/patch-CMakeLists.txt.diff	2014-09-23 14:15:47 UTC (rev 125643)
@@ -0,0 +1,39 @@
+--- CMakeLists.txt.orig
++++ CMakeLists.txt
+@@ -34,7 +34,8 @@ if(NOT CMAKE_BUILD_TYPE)
+ endif(NOT CMAKE_BUILD_TYPE)
+ set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "")
+ 
+-list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)
++#make sure our local CMake Modules path comes first
++list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules)
+ 
+ ########################################################################
+ # Compiler specific setup
+@@ -79,6 +80,26 @@ if(NOT GNURADIO_RUNTIME_FOUND)
+ endif()
+ 
+ ########################################################################
++# On Apple only, set install name and use rpath correctly, if not already set
++########################################################################
++if(APPLE)
++    if(NOT CMAKE_INSTALL_NAME_DIR)
++        set(CMAKE_INSTALL_NAME_DIR
++            ${CMAKE_INSTALL_PREFIX}/${GR_LIBRARY_DIR} CACHE
++            PATH "Library Install Name Destination Directory" FORCE)
++    endif(NOT CMAKE_INSTALL_NAME_DIR)
++    if(NOT CMAKE_INSTALL_RPATH)
++        set(CMAKE_INSTALL_RPATH
++            ${CMAKE_INSTALL_PREFIX}/${GR_LIBRARY_DIR} CACHE
++            PATH "Library Install RPath" FORCE)
++    endif(NOT CMAKE_INSTALL_RPATH)
++    if(NOT CMAKE_BUILD_WITH_INSTALL_RPATH)
++        set(CMAKE_BUILD_WITH_INSTALL_RPATH ON CACHE
++            BOOL "Do Build Using Library Install RPath" FORCE)
++    endif(NOT CMAKE_BUILD_WITH_INSTALL_RPATH)
++endif(APPLE)
++
++########################################################################
+ # Find PyZMQ bindings
+ ########################################################################
+ include(GrPython)

Added: trunk/dports/science/gr-air-modes/files/patch-cmake_Modules_FindPyQt4.cmake.diff
===================================================================
--- trunk/dports/science/gr-air-modes/files/patch-cmake_Modules_FindPyQt4.cmake.diff	                        (rev 0)
+++ trunk/dports/science/gr-air-modes/files/patch-cmake_Modules_FindPyQt4.cmake.diff	2014-09-23 14:15:47 UTC (rev 125643)
@@ -0,0 +1,13 @@
+--- cmake/Modules/FindPyQt4.cmake.orig
++++ cmake/Modules/FindPyQt4.cmake
+@@ -42,7 +42,9 @@ ELSE(EXISTS PYQT4_VERSION AND EXISTS PYUIC4_EXECUTABLE)
+     SET(PYQT4_FOUND TRUE)
+   ENDIF(pyqt_config)
+ 
+-  FIND_PROGRAM(PYUIC4_EXECUTABLE NAMES pyuic4)
++  IF(NOT PYUIC4_EXECUTABLE)
++    FIND_PROGRAM(PYUIC4_EXECUTABLE NAMES pyuic4)
++  ENDIF(NOT PYUIC4_EXECUTABLE)
+   IF(PYUIC4_EXECUTABLE)
+     SET(PYUIC4_FOUND TRUE)
+   ENDIF(PYUIC4_EXECUTABLE)

Added: trunk/dports/science/gr-air-modes/files/patch-cmake_Modules_GrPython.cmake.diff
===================================================================
--- trunk/dports/science/gr-air-modes/files/patch-cmake_Modules_GrPython.cmake.diff	                        (rev 0)
+++ trunk/dports/science/gr-air-modes/files/patch-cmake_Modules_GrPython.cmake.diff	2014-09-23 14:15:47 UTC (rev 125643)
@@ -0,0 +1,66 @@
+--- cmake/Modules/GrPython.cmake.orig
++++ cmake/Modules/GrPython.cmake
+@@ -36,11 +36,11 @@ if(PYTHON_EXECUTABLE)
+ else(PYTHON_EXECUTABLE)
+ 
+     #use the built-in find script
+-    find_package(PythonInterp)
++    find_package(PythonInterp 2)
+ 
+     #and if that fails use the find program routine
+     if(NOT PYTHONINTERP_FOUND)
+-        find_program(PYTHON_EXECUTABLE NAMES python python2.7 python2.6 python2.5)
++        find_program(PYTHON_EXECUTABLE NAMES python python2 python2.7 python2.6 python2.5)
+         if(PYTHON_EXECUTABLE)
+             set(PYTHONINTERP_FOUND TRUE)
+         endif(PYTHON_EXECUTABLE)
+@@ -48,8 +48,15 @@ else(PYTHON_EXECUTABLE)
+ 
+ endif(PYTHON_EXECUTABLE)
+ 
++if (CMAKE_CROSSCOMPILING)
++    set(QA_PYTHON_EXECUTABLE "/usr/bin/python")
++else (CMAKE_CROSSCOMPILING)
++    set(QA_PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE})
++endif(CMAKE_CROSSCOMPILING)
++
+ #make the path to the executable appear in the cmake gui
+ set(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE} CACHE FILEPATH "python interpreter")
++set(QA_PYTHON_EXECUTABLE ${QA_PYTHON_EXECUTABLE} CACHE FILEPATH "python interpreter for QA tests")
+ 
+ #make sure we can use -B with python (introduced in 2.6)
+ if(PYTHON_EXECUTABLE)
+@@ -96,11 +103,13 @@ endmacro(GR_PYTHON_CHECK_MODULE)
+ ########################################################################
+ # Sets the python installation directory GR_PYTHON_DIR
+ ########################################################################
++if(NOT DEFINED GR_PYTHON_DIR)
+ execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "
+ from distutils import sysconfig
+ print sysconfig.get_python_lib(plat_specific=True, prefix='')
+ " OUTPUT_VARIABLE GR_PYTHON_DIR OUTPUT_STRIP_TRAILING_WHITESPACE
+ )
++endif()
+ file(TO_CMAKE_PATH ${GR_PYTHON_DIR} GR_PYTHON_DIR)
+ 
+ ########################################################################
+@@ -183,7 +192,7 @@ function(GR_PYTHON_INSTALL)
+         file(TO_NATIVE_PATH ${PYTHON_EXECUTABLE} pyexe_native)
+ 
+         if (CMAKE_CROSSCOMPILING)
+-           set(pyexe_native /usr/bin/env python)
++           set(pyexe_native "/usr/bin/env python")
+         endif()
+ 
+         foreach(pyfile ${GR_PYTHON_INSTALL_PROGRAMS})
+@@ -198,8 +207,9 @@ function(GR_PYTHON_INSTALL)
+             add_custom_command(
+                 OUTPUT ${pyexefile} DEPENDS ${pyfile}
+                 COMMAND ${PYTHON_EXECUTABLE} -c
+-                \"open('${pyexefile}', 'w').write('\#!${pyexe_native}\\n'+open('${pyfile}').read())\"
++                "open('${pyexefile}','w').write('\#!${pyexe_native}\\n'+open('${pyfile}').read())"
+                 COMMENT "Shebangin ${pyfile_name}"
++                VERBATIM
+             )
+ 
+             #on windows, python files need an extension to execute
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140923/2edfba71/attachment-0001.html>


More information about the macports-changes mailing list