pkgsrc/audio/audacious-plugins/options.mk
mef df303ed904 (upstream) update 3.5.1 to 3.5.2
Current stable release: 3.5.2 (October 16, 2014)
(PLIST) Add two libraries,
   lib/audacious/Effect/resample.so
   lib/audacious/Effect/speed-pitch.so
(options.mk)
   Add SUGGESTED options jack and arts.
2014-10-28 02:20:26 +00:00

59 lines
1.3 KiB
Makefile

# $NetBSD: options.mk,v 1.7 2014/10/28 02:20:26 mef Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.audacious-plugins
PKG_SUPPORTED_OPTIONS= arts esound inet6 jack midi pulseaudio sid
PKG_SUGGESTED_OPTIONS+= inet6 pulseaudio jack arts
.include "../../mk/bsd.options.mk"
PLIST_VARS+= sid
.if !empty(PKG_OPTIONS:Msid)
. include "../../audio/libsidplay/buildlink3.mk"
PLIST.sid= yes
.else
CONFIGURE_ARGS+= --disable-sid
.endif
PLIST_VARS+= arts
.if !empty(PKG_OPTIONS:Marts)
. include "../../audio/arts/buildlink3.mk"
PLIST.arts= yes
.else
CONFIGURE_ARGS+= --disable-arts
.endif
PLIST_VARS+= esd
.if !empty(PKG_OPTIONS:Mesound)
. include "../../audio/esound/buildlink3.mk"
PLIST.esd= yes
.else
CONFIGURE_ARGS+= --disable-esd
.endif
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.endif
PLIST_VARS+= jack
.if !empty(PKG_OPTIONS:Mjack)
. include "../../audio/jack/buildlink3.mk"
PLIST.jack= yes
.else
CONFIGURE_ARGS+= --disable-jack
.endif
PLIST_VARS+= midi
.if !empty(PKG_OPTIONS:Mmidi)
BUILD_DEPENDS+= timidity>=0:../../audio/timidity
PLIST.midi= yes
.else
CONFIGURE_ARGS+= --disable-timidity
.endif
PLIST_VARS+= pulse
.if !empty(PKG_OPTIONS:Mpulseaudio)
. include "../../audio/pulseaudio/buildlink3.mk"
PLIST.pulse= yes
.else
CONFIGURE_ARGS+= --disable-pulse
.endif