blob: 295bb230d8538d9438567faa81bb3b03f47eec01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: options.mk,v 1.3 2020/12/07 13:05:37 pin Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.lxqt
PKG_OPTIONS_OPTIONAL_GROUPS= wm
PKG_OPTIONS_GROUP.wm= openbox xfce4-wm
PKG_SUGGESTED_OPTIONS= openbox
# wip/kwin and wm/xfce4-wm are known to work alternate options.
# See https://github.com/lxqt/lxqt/wiki/ConfigWindowManagers
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mopenbox)
DEPENDS+= openbox>=3.6.1:../../wm/openbox
DEPENDS+= obconf-qt>=0.16.0:../../wm/obconf-qt
.endif
.if !empty(PKG_OPTIONS:Mxfce4-wm)
DEPENDS+= xfce4-wm>=4.14.4:../../wm/xfce4-wm
.endif
|