== Ruby-GNOME2 1.1.4: 2012-07-21 This is a easy to install release! === Changes ==== All * Improvements * Supported automatic required native packages install. ==== Ruby/GLib2 * Improvements * mkenums: Supported "/* < flags > */" tag. * mkenums: Supported two or more upper case characters such as "IO". * Before: GIOStatus -> g_iostatus * After: GIOStatus -> g_io_status * GIOCondition: Changed to GLib::Boxed object from integer. * GLib::Source#attach doesn't require context. * Fixes * Fixed wrong type conversion for GIOCondition. ==== Ruby/GIO2 * Improvements * Gio::Socket#create_source: Supported callback. * Fixes * Fixed return values. * Fixed wrong type conversions. ==== Ruby/GTK2 * Improvements * Re-supported GTK+ 2.10.0. [GitHub:115] [Patch by Grant Schoep] * Fixes * Fixed a typo in test script. [GitHub:109] [Reported by kimura wataru] ==== Ruby/GStreamer * Fixes * Fixed a test failure with GStreamer 0.10.36. [GitHub:111] [Reported by mtasaka]
22 lines
710 B
Makefile
22 lines
710 B
Makefile
# $NetBSD: Makefile,v 1.16 2012/07/22 09:29:16 obache Exp $
|
|
#
|
|
|
|
PKGNAME= ${RUBY_PKGPREFIX}-gnome2-gstreamer-${VERSION}
|
|
COMMENT= Ruby binding of GStreamer 0.10.x or later
|
|
CATEGORIES= multimedia
|
|
|
|
CONFLICTS+= ruby[0-9][0-9]-gnome2-gstreamer-[0-9]*
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
RUBY_EXTCONF_SUBDIRS= gstreamer
|
|
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-gnome2-glib>=${VERSION}:../../devel/ruby-gnome2-glib
|
|
|
|
do-test:
|
|
${RUN} cd ${WRKSRC}/gstreamer/test; ${SETENV} ${TEST_ENV} ${RUBY} run-test.rb
|
|
|
|
.include "../../multimedia/gstreamer0.10/buildlink3.mk"
|
|
.include "../../multimedia/gst-plugins0.10-base/buildlink3.mk"
|
|
.include "../../devel/ruby-pkg-config/tool.mk"
|
|
.include "../../meta-pkgs/ruby-gnome2/Makefile.common"
|