blob: 630969ec7e2b681b9abac565361c012b9421205c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: options.mk,v 1.1 2006/08/24 17:59:04 wennmach Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.arla
PKG_SUPPORTED_OPTIONS= x11
PKG_SUGGESTED_OPTIONS=
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mx11)
CONFIGURE_ARGS+= --with-x
PLIST_SUBST+= X11_SUPPORT=
.include "../../mk/x11.buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-x
PLIST_SUBST+= X11_SUPPORT='@comment '
.endif
|