53d3ace148
Clutter-GTK is a library providing facilities to integrate Clutter into GTK+ applications. It provides a GTK+ widget, GtkClutterEmbed, for embedding the default ClutterStage into any GtkContainer.
21 lines
615 B
Makefile
21 lines
615 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/01/04 13:34:16 obache Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.clutter-gtk0.10
|
|
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.9.3
|
|
BUILDLINK_DEPMETHOD.gobject-introspection+= build
|
|
.include "../../devel/gobject-introspection/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-introspection=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-introspection=no
|
|
.endif
|