blob: 99ee7bcfbd4bf5e39b649c42b7e89e0ab8a131a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: options.mk,v 1.3 2014/01/03 12:35:06 obache Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.clutter-gst
PKG_SUPPORTED_OPTIONS= introspection
PKG_SUGGESTED_OPTIONS= introspection
.include "../../mk/bsd.options.mk"
PLIST_VARS+= introspection
.if !empty(PKG_OPTIONS:Mintrospection)
USE_TOOLS+= gmake
PLIST.introspection= yes
BUILDLINK_API_DEPENDS.gobject-introspection+= gobject-introspection>=0.6.8
BUILDLINK_DEPMETHOD.gobject-introspection+= build
.include "../../devel/gobject-introspection/buildlink3.mk"
CONFIGURE_ARGS+= --enable-introspection=yes
.else
CONFIGURE_ARGS+= --enable-introspection=no
.endif
|