716093eea5
The GFM is an application allowing to manipulate single/group/tigroup files. It can: * create a new file * open an existing file * save file * rename variables * remove variables * create folders * group files into a group/tigroup file * ungroup a group/tigroup file into single files
16 lines
394 B
Makefile
16 lines
394 B
Makefile
# $NetBSD: options.mk,v 1.1 2013/05/26 23:06:05 rodent Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gfm
|
|
PKG_SUPPORTED_OPTIONS= nls
|
|
PKG_SUGGESTED_OPTIONS+= nls
|
|
PLIST_VARS+= nls
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mnls)
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
PLIST.nls= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
.endif
|