blob: 061d03509f46b11fed87f8b3bfc73375b7e4e78f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: options.mk,v 1.5 2008/04/12 22:43:09 jlam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xfce4-print
PKG_SUPPORTED_OPTIONS= cups
.include "../../mk/bsd.options.mk"
PLIST_VARS+= cups
.if !empty(PKG_OPTIONS:Mcups)
.include "../../print/cups/buildlink3.mk"
PLIST.cups= yes
.else
CONFIGURE_ARGS+= --disable-cups
.endif
|