fefe138533
Fix PREFER_PKGSRC=yes circular dependency from gettext under NetBSD.
19 lines
490 B
Makefile
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
|