blob: 82b9fdcc33088c260639dedc0e96ff7bb2698c4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: options.mk,v 1.1 2013/05/26 23:00:21 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.tilp2
PKG_SUPPORTED_OPTIONS= nls
PKG_SUGGESTED_OPTIONS+= nls
PLIST_VARS+= nls
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mnls)
.include "../../devel/gettext-lib/buildlink3.mk"
PLIST.nls= yes
.else
CONFIGURE_ARGS+= --disable-nls
.endif
|