diff options
author | db <db@FreeBSD.org> | 2018-01-14 23:31:51 +0800 |
---|---|---|
committer | Koop Mast <kwm@rainbow-runner.nl> | 2018-02-04 06:23:56 +0800 |
commit | cac7239eea79d46d377f4f36ab9241d752677fab (patch) | |
tree | 5bca4cd4a909db0f930d5084e5413848af14fb26 /comms | |
parent | 60e217757db3f0415deb5a327e1e19b524b360c5 (diff) | |
download | freebsd-ports-gnome-cac7239eea79d46d377f4f36ab9241d752677fab.tar.gz freebsd-ports-gnome-cac7239eea79d46d377f4f36ab9241d752677fab.tar.zst freebsd-ports-gnome-cac7239eea79d46d377f4f36ab9241d752677fab.zip |
@snkmail.com
n shebangs to use the specified PYTHON_CMD (stage-qa fix) [1]
Add missing html file in plist (check-orphans) [2]
Also we don't need -DENABLE_BAD_BOOST=ON since the ports version of boost is now at 1.65.
info about ENABLE_BAD_BOOST in GrBoost.cmake...
# Boost 1.52 disabled, see https://svn.boost.org/trac/boost/ticket/7669
# Similar problems with Boost 1.46 and 1.47.
stage-qa, check-orphans and poudriere testport all pass now with the attached patch.
[1]
====> Running Q/A tests (stage-qa)
Error: '/usr/local/bin/python2' is an invalid shebang you need USES=shebangfix for 'bin/volk_modtool'
Error: '/usr/local/bin/python2' is an invalid shebang you need USES=shebangfix for 'bin/gnuradio-companion'
Error: '/usr/local/bin/python2' is an invalid shebang you need USES=shebangfix for 'bin/polar_channel_construction'
.
.
[2]
===> Checking for items in STAGEDIR missing from pkg-plist
Error: Orphaned: %%PORTDOCS%%%%DOCSDIR%%/html/gr-trellis.html
PR: ports/225126
Submitted by: John Hein <z7dr6ut7gs@snkmail.com>
Diffstat (limited to 'comms')
-rw-r--r-- | comms/gnuradio/Makefile | 7 | ||||
-rw-r--r-- | comms/gnuradio/pkg-plist | 1 |
2 files changed, 4 insertions, 4 deletions
diff --git a/comms/gnuradio/Makefile b/comms/gnuradio/Makefile index 603900617ab4..252c5c9b5b29 100644 --- a/comms/gnuradio/Makefile +++ b/comms/gnuradio/Makefile @@ -52,6 +52,7 @@ CMAKE_ARGS+= -DSWIG_EXECUTABLE:STRING="${LOCALBASE}/bin/swig3.0"\ -DICONV_LIB:STRING="X${ICONV_LIB}" \ -DENABLE_GR_CTRLPORT="YES" \ -DLOCALBASE:STRING="${LOCALBASE}" \ + -DPYTHON_EXECUTABLE:STRING="${PYTHON_CMD}" \ -DCMAKE_INSTALL_RPATH:STRING="${LOCALBASE}/lib/gcc${_GCC_VER}" # for detailed debugging uncomment the next line #CMAKE_ARGS+= --debug-output --trace @@ -87,11 +88,9 @@ DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen \ xmlto:textproc/xmlto \ freefont-ttf>0:x11-fonts/freefont-ttf DOXYGEN_CMAKE_ON= -DENABLE_DOXYGEN:STRING="ON" \ - -DENABLE_DOCS:STRING="ON" \ - -DENABLE_BAD_BOOST="ON" + -DENABLE_DOCS:STRING="ON" DOXYGEN_CMAKE_OFF= -DENABLE_DOXYGEN:STRING="OFF" \ - -DENABLE_DOCS:STRING="OFF" \ - -DENABLE_BAD_BOOST="ON" + -DENABLE_DOCS:STRING="OFF" HAVE_PORTDOCS= YES UHD_CMAKE_ON= -DENABLE_GR_UHD:STRING="ON" diff --git a/comms/gnuradio/pkg-plist b/comms/gnuradio/pkg-plist index 02d06413dd4d..a5e49b41190f 100644 --- a/comms/gnuradio/pkg-plist +++ b/comms/gnuradio/pkg-plist @@ -1206,6 +1206,7 @@ lib/libvolk.so.1.%%MAJOR_VERSION%% %%PORTDOCS%%%%DOCSDIR%%/README.qtgui %%PORTDOCS%%%%DOCSDIR%%/README.uhd %%PORTDOCS%%%%DOCSDIR%%/README.vocoder +%%PORTDOCS%%%%DOCSDIR%%/html/gr-trellis.html %%PORTDOCS%%%%DOCSDIR%%/xml/test_tcm.py.xml %%PORTDOCS%%%%DOCSDIR%%/xml/test_viterbi_equalization1.py.xml %%PYTHON_SITELIBDIR%%/gnuradio/__init__.py |