blob: 1eb31e46858277b6da92c9c2bff38711637bf2da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: options.mk,v 1.1 2013/05/26 22:58:30 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libticalcs2
PKG_SUPPORTED_OPTIONS= nls
PKG_SUGGESTED_OPTIONS+= nls
PLIST_VARS+= nls
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mnls)
PLIST.nls= yes
.else
CONFIGURE_ARGS+= --disable-nls
.endif
|