pkgsrc/multimedia/clutter-gst/options.mk
obache e068febee9 Update clutter-gst to 2.0.8.
while here, enable introspection optin by default.

clutter-gst 2.0.8 (18/09/2013)
===============================================================================

List of changes since 2.0.6

 o Fix a crash in ClutterGstPlayer when disposing instances too fast

 o Fix a crash in ClutterGstVideoSink

 o Fix a crash in ClutterGstVideoSink when running on Wayland with X11
   backend compiled

Many Thanks to:

    Thomas Wood

clutter-gst 2.0.6 (24/05/2013)
===============================================================================

List of changes since 2.0.4

 o Fix a bug when subclassing ClutterGstPlayer class

 o Add support of X11 pixmap as video texture when decoding with
   Gstreamer-vaapi

Many Thanks to:

    Gwenole Beauchesne
    Sjoerd Simons
2014-01-03 12:35:06 +00:00

21 lines
611 B
Makefile

# $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