pkgsrc/ham/gnuradio-core/options.mk
joerg b1b98bb087 Avoid rebuilding everything for doxygen, just the docs are fine. Don't
keep an insanely long hand-maintained list of Python files, go with
wildcards. Simplify various build commands.
2020-05-19 13:58:24 +00:00

41 lines
1.3 KiB
Makefile

# $NetBSD: options.mk,v 1.6 2020/05/19 13:58:24 joerg Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gnuradio
PKG_SUPPORTED_OPTIONS= ninja-build filter-design alsa
# ninja-build is said supported, but not working
# alas is said supported, but not good on NetBSD
# Adding ninja-build to following line (now) stops
# [164/850] cd /PATH/ham/gnuradio-core/work/gnuradio-3.7.5/build/gr-audio/swig && ""
# FAILED: cd /PATH/ham/gnuradio-core/work/gnuradio-3.7.5/build/gr-audio/swig && ""
# : permission denied
PKG_SUGGESTED_OPTIONS= filter-design
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mninja-build)
CMAKE_ARGS+= -GNinja
BUILD_DEPENDS+= ninja-build-[0-9]*:../../devel/ninja-build
do-build:
cd ${WRKSRC}/${BUILD_DIRS} && ${PKGSRC_SETENV} ${MAKE_ENV} ninja
.else
do-build:
cd ${WRKSRC}/${BUILD_DIRS} && ${BUILD_MAKE_CMD}
.endif
.if !empty(PKG_OPTIONS:Mfilter-design)
# Running gr_filter_design asks for the package
DEPENDS+= ${PYPKGPREFIX}-scipy-[0-9]*:../../math/py-scipy12
.endif
.if !empty(PKG_OPTIONS:Malsa)
.include "../../audio/alsa-lib/buildlink3.mk"
ALSA_ENABLED=
CONF_FILES+= ${EGDIR}/gr-audio-alsa.conf ${PKG_SYSCONFDIR}/gr-audio-alsa.conf
PLIST_SRC+= ${PKGDIR}/PLIST.alsa
.else
# disable ALSA, see patches/patch-gr-audio_lib_CMakeLists.txt
ALSA_ENABLED= \#
.endif