4ed47a91c0
gettext is not required.
17 lines
374 B
Makefile
17 lines
374 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/10/12 13:07:11 bsiegert Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.xz
|
|
PKG_SUPPORTED_OPTIONS= nls
|
|
PKG_SUGGESTED_OPTIONS= nls
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= nls
|
|
|
|
.if !empty(PKG_OPTIONS:Mnls)
|
|
PLIST.nls= yes
|
|
CONFIGURE_ARGS+= --enable-nls
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
.endif
|