ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= QSpectrumAnalyzer
|
|
DISTVERSION= 2.1.0
|
|
PORTREVISION= 6
|
|
CATEGORIES= misc hamradio python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Spectrum analyzer for multiple SDR platforms
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYNUMPY} \
|
|
${PYTHON_PKGNAMEPREFIX}pyqtgraph>=0.10.0:graphics/py-pyqtgraph@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}soapy_power>=1.5.0:misc/py-soapy_power@${PY_FLAVOR}
|
|
|
|
USES= fortran python:3.4+ pyqt:5
|
|
USE_PYQT= core gui widgets
|
|
USE_PYTHON= distutils concurrent autoplist
|
|
|
|
PLIST_FILES= bin/${PORTNAME:tl}.shadow
|
|
|
|
post-patch: # change from Qt.py that doesn't work to PyQt5
|
|
@${FIND} ${WRKSRC} -name "*.py" | ${XARGS} ${REINPLACE_CMD} -i '' -e ' \
|
|
s|from Qt import |from PyQt5 import | ; \
|
|
s|, __binding__|| ; \
|
|
s|QtCore.Signal|QtCore.pyqtSignal| ; \
|
|
s|QtCore.Slot|QtCore.pyqtSlot|'
|
|
|
|
post-install:
|
|
@${MV} ${STAGEDIR}${PREFIX}/bin/${PORTNAME:tl} ${STAGEDIR}${PREFIX}/bin/${PORTNAME:tl}.shadow
|
|
@(echo "#!/bin/sh"; \
|
|
echo ""; \
|
|
echo "LD_PRELOAD=${PREFIX}/lib/gcc6/libgcc_s.so ${PREFIX}/bin/${PORTNAME:tl}.shadow \"$$@\"" \
|
|
) > ${STAGEDIR}${PREFIX}/bin/${PORTNAME:tl}
|
|
@${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${PORTNAME:tl}
|
|
|
|
.include <bsd.port.mk>
|