36 lines
755 B
Makefile
36 lines
755 B
Makefile
# $NetBSD: options.mk,v 1.4 2020/04/22 10:47:47 nia Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.portaudio
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
|
|
.if ${OPSYS} != "Darwin"
|
|
PKG_SUPPORTED_OPTIONS= alsa jack
|
|
PKG_SUGGESTED_OPTIONS.Linux= alsa
|
|
.endif
|
|
|
|
PKG_SUPPORTED_OPTIONS+= debug
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= alsa
|
|
.if !empty(PKG_OPTIONS:Malsa)
|
|
PLIST.alsa= yes
|
|
CONFIGURE_ARGS+= --with-alsa
|
|
.include "../../audio/alsa-lib/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-alsa
|
|
.endif
|
|
|
|
PLIST_VARS+= jack
|
|
.if !empty(PKG_OPTIONS:Mjack)
|
|
PLIST.jack= yes
|
|
CONFIGURE_ARGS+= --with-jack
|
|
.include "../../audio/jack/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-jack
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug-output
|
|
.endif
|