blob: c1cd31b8e1e7a6a554b33793bcfbe1992c785293 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# $NetBSD: options.mk,v 1.2 2013/07/15 01:05:21 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.json-glib
PKG_SUPPORTED_OPTIONS= introspection nls tests
PKG_SUGGESTED_OPTIONS+= nls tests
PLIST_VARS+= introspection nls
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mintrospection)
BUILDLINK_API_DEPENDS.gobject-introspection+= gobject-introspection>=0.9.5
BUILDLINK_DEPMETHOD.gobject-introspection+= build
.include "../../devel/gobject-introspection/buildlink3.mk"
CONFIGURE_ARGS+= --enable-introspection=yes
PLIST.introspection= yes
.else
CONFIGURE_ARGS+= --enable-introspection=no
.endif
.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
.if !empty(PKG_OPTIONS:Mtests)
TEST_TARGET= check
.else
CONFIGURE_ARGS+= --disable-glibtest
.endif
|