blob: 98b6332f5e0b9b0008cd25ba44c42e3d50e8b7ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: options.mk,v 1.4 2013/07/04 16:19:41 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gtexinfo
PKG_SUPPORTED_OPTIONS= nls
PKG_SUGGESTED_OPTIONS= # blank
.if ${OPSYS} == "NetBSD"
PKG_SUGGESTED_OPTIONS+= nls
.endif
PKG_OPTIONS_LEGACY_VARS= TEXINFO_LOCALE
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mnls)
USE_PKGLOCALEDIR= yes
PLIST_SRC+= ${PKGDIR}/PLIST.locale
. include "../../devel/gettext-lib/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-nls
.endif
|