pkgsrc/devel/gmake/options.mk
ryoon fefe138533 Remove nls option for NetBSD
Fix PREFER_PKGSRC=yes circular dependency from gettext under NetBSD.
2016-01-01 01:42:53 +00:00

19 lines
490 B
Makefile

# $NetBSD: options.mk,v 1.3 2016/01/01 01:42:53 ryoon Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gmake
PKG_SUPPORTED_OPTIONS= nls
PKG_OPTIONS_LEGACY_VARS+= GMAKE_LOCALE
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mnls)
USE_PKGLOCALEDIR= yes
PLIST_SRC+= ${PKGDIR}/PLIST.locale
USE_TOOLS+= msgfmt
. include "../../devel/gettext-lib/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-libintl-prefix
CONFIGURE_ARGS+= --without-libiconv-prefix
CONFIGURE_ARGS+= --disable-nls
.endif