pkgsrc/x11/mate-applets/options.mk
youri b8e1018c28 Import mate-applets-1.14.0nb1 as x11/mate-applets.
This package contains applets for use with the MATE panel.  Therefore, it
requires mate-core to be installed.  To build all applets additional
libraries may be needed.

This list is by no means definitive.

MATE-Applets is a fork of GNOME-Applets.
2016-05-21 18:49:33 +00:00

34 lines
806 B
Makefile

# $NetBSD: options.mk,v 1.1 2016/05/21 18:49:33 youri Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mate-applets
PKG_SUPPORTED_OPTIONS= hal inet6 polkit upower
PKG_SUGGESTED_OPTIONS+= hal inet6 polkit upower
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if !empty(PKG_OPTIONS:Mhal)
.include "../../sysutils/hal/buildlink3.mk"
CONFIGURE_ARGS+= --with-hal
.else
CONFIGURE_ARGS+= --without-hal
.endif
.if !empty(PKG_OPTIONS:Mpolkit)
.include "../../security/polkit/buildlink3.mk"
CONFIGURE_ARGS+= --enable-polkit
.else
CONFIGURE_ARGS+= --disable-polkit
.endif
.if !empty(PKG_OPTIONS:Mupower)
.include "../../sysutils/upower/buildlink3.mk"
CONFIGURE_ARGS+= --with-upower
.else
CONFIGURE_ARGS+= --without-upower
.endif