[131864] trunk/dports/science
michaelld at macports.org
michaelld at macports.org
Mon Jan 19 18:33:45 PST 2015
Revision: 131864
https://trac.macports.org/changeset/131864
Author: michaelld at macports.org
Date: 2015-01-19 18:33:44 -0800 (Mon, 19 Jan 2015)
Log Message:
-----------
gr-dvbt: new port.
Added Paths:
-----------
trunk/dports/science/gr-dvbt/
trunk/dports/science/gr-dvbt/Portfile
Added: trunk/dports/science/gr-dvbt/Portfile
===================================================================
--- trunk/dports/science/gr-dvbt/Portfile (rev 0)
+++ trunk/dports/science/gr-dvbt/Portfile 2015-01-20 02:33:44 UTC (rev 131864)
@@ -0,0 +1,76 @@
+# -*- 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
+
+github.setup BogdanDIA gr-dvbt 58165b9fadb6d1bb25af8844c64fc2d4df797887
+version 20150114
+checksums rmd160 071c476429e881bc3eccc4f588c81dbb485fc7eb \
+ sha256 6bff59616ad34e1ff8c30f920f16c18b1ebf150efc44121d5b97f546bb2d7732
+
+categories science comms
+maintainers michaelld openmaintainer
+description Implements DVB-T encoder/decoder according to ETSI 300 744 in GNU Radio.
+long_description ${description}
+license GPL-3
+platforms darwin
+
+depends_build-append port:pkgconfig
+depends_lib-append port:boost \
+ port:cppunit \
+ port:doxygen \
+ port:swig-python
+
+# allow gr-osmosdr 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-osmosdr 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-osmosdr 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"
+ }
+}
+
+# do VPATH build
+
+post-extract { file mkdir ${workpath}/build }
+configure.dir ${workpath}/build
+build.dir ${workpath}/build
+
+# 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
+
+# specify the Python dependencies
+
+depends_lib-append \
+ port:python27
+
+# specify the Python version to use
+
+configure.args-append \
+ -DPYTHON_EXECUTABLE=${prefix}/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 \
+ -DPYTHON_INCLUDE_DIR=${prefix}/Library/Frameworks/Python.framework/Versions/2.7/Headers \
+ -DPYTHON_LIBRARY=${prefix}/Library/Frameworks/Python.framework/Versions/2.7/Python \
+ -DGR_PYTHON_DIR=${frameworks_dir}/Python.framework/Versions/2.7/lib/python2.7/site-packages
Property changes on: trunk/dports/science/gr-dvbt/Portfile
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20150119/c0eef9dc/attachment-0001.html>
More information about the macports-changes
mailing list