diff options
author | wiz <wiz@pkgsrc.org> | 2022-07-08 14:26:11 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2022-07-08 14:26:11 +0000 |
commit | 55caf2e3a7f093e40537cc5dd5894ad97d6e583f (patch) | |
tree | 91d1c6eae8d6a0a2d95de1b5a210325991d069d8 /ham/uhd | |
parent | 34db021f70872abf29217ea22d0fec964941b8bb (diff) | |
download | pkgsrc-55caf2e3a7f093e40537cc5dd5894ad97d6e583f.tar.gz |
uhd: switch to python 3
Bump PKGREVISION.
Diffstat (limited to 'ham/uhd')
-rw-r--r-- | ham/uhd/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/ham/uhd/Makefile b/ham/uhd/Makefile index c3f6d789fc7..b7fcd5df2dc 100644 --- a/ham/uhd/Makefile +++ b/ham/uhd/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.68 2022/06/30 11:18:30 nia Exp $ +# $NetBSD: Makefile,v 1.69 2022/07/08 14:26:11 wiz Exp $ DISTNAME= uhd-4.1.0.5 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= ham MASTER_SITES= ${MASTER_SITE_GITHUB:=EttusResearch/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -19,11 +19,13 @@ CMAKE_ARGS+= -DENABLE_MAN_PAGE_COMPRESSION=OFF CMAKE_ARGS+= -DPKG_MAN_DIR=${PKGMANDIR}/man1 CMAKE_ARGS+= -DRST2HTML_EXECUTABLE=${PREFIX}/bin/rst2html-${PYVERSSUFFIX}.py CMAKE_ARGS+= -Wno-dev + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + .include "../../lang/python/pyversion.mk" + CMAKE_ARGS+= -DPYTHON_EXECUTABLE=${PYTHONBIN} -.if !empty(_PYTHON_VERSION:M3*) CMAKE_ARGS+= -DENABLE_PYTHON3=ON -.endif # Upstream says C++11 is required, even though it is not documented. # It is documented that gcc 4.8 is required, when using gcc. |