pkgsrc/www/cliqz/options.mk
fox 83c50b692d Import of cliqz-1.26.3 as www/cliqz
Cliqz develops novel Internet browsers that incorporate features
such as search and anti-tracking. Cliqz desktop browser is based
on Mozilla Firefox.

Cliqz pre-installs the Cliqz add-on, which causes search terms to
be sent to Cliqz as the default search engine. In addition the
HTTPS Everywhere addon is installed, and an addon to manage consent.
2019-04-19 14:02:03 +00:00

30 lines
825 B
Makefile

# $NetBSD: options.mk,v 1.1 2019/04/19 14:02:03 fox Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.cliqz
PKG_SUPPORTED_OPTIONS= alsa pulseaudio dbus
PKG_SUGGESTED_OPTIONS+= pulseaudio dbus
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Malsa)
MOZ_CONFIGURE_ARGS+= "ac_add_options --enable-alsa"
.include "../../audio/alsa-lib/buildlink3.mk"
.else
MOZ_CONFIGURE_ARGS+= "ac_add_options --disable-alsa"
.endif
.if !empty(PKG_OPTIONS:Mpulseaudio)
.include "../../audio/pulseaudio/buildlink3.mk"
MOZ_CONFIGURE_ARGS+= "ac_add_options --enable-pulseaudio"
.else
MOZ_CONFIGURE_ARGS+= "ac_add_options --disable-pulseaudio"
.endif
.if !empty(PKG_OPTIONS:Mdbus)
.include "../../sysutils/dbus-glib/buildlink3.mk"
MOZ_CONFIGURE_ARGS+= "ac_add_options --enable-dbus"
.else
MOZ_CONFIGURE_ARGS+= "ac_add_options --disable-dbus"
.endif