diff options
author | Sven Neumann <s.neumann@raumfeld.com> | 2009-10-07 14:15:23 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-10-07 14:51:26 +0200 |
commit | 8e7a4936cf5b6c52ed8ed6b7f2067cb3066e6bd1 (patch) | |
tree | ce4286035d10d30fbed3b1c80a9fb96324452d1d | |
parent | 82cefcbbdaea9483e0a80503721bdb4d1ba604b5 (diff) |
gst-plugins-base: update to new upstream release 0.10.25
Update gst-plugins-base to version 0.10.25. Also add new
config option to enable/disable the Pango font renderer
plug-in.
Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/multimedia/gst-plugins-base/Config.in | 4 | ||||
-rw-r--r-- | package/multimedia/gst-plugins-base/gst-plugins-base.mk | 9 |
2 files changed, 12 insertions, 1 deletions
diff --git a/package/multimedia/gst-plugins-base/Config.in b/package/multimedia/gst-plugins-base/Config.in index 8883a433f..f08be7eb7 100644 --- a/package/multimedia/gst-plugins-base/Config.in +++ b/package/multimedia/gst-plugins-base/Config.in @@ -72,6 +72,10 @@ config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_OGG bool "ogg (*.ogg audio/video)" select BR2_PACKAGE_LIBOGG +config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PANGO + bool "pango font renderer" + select BR2_PACKAGE_PANGO + config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_THEORA bool "theora (*.ogg video)" select BR2_PACKAGE_LIBTHEORA diff --git a/package/multimedia/gst-plugins-base/gst-plugins-base.mk b/package/multimedia/gst-plugins-base/gst-plugins-base.mk index 63f23cd5c..bd422be0f 100644 --- a/package/multimedia/gst-plugins-base/gst-plugins-base.mk +++ b/package/multimedia/gst-plugins-base/gst-plugins-base.mk @@ -3,7 +3,7 @@ # gst-plugins-base # ############################################################# -GST_PLUGINS_BASE_VERSION = 0.10.23 +GST_PLUGINS_BASE_VERSION = 0.10.25 GST_PLUGINS_BASE_SOURCE = gst-plugins-base-$(GST_PLUGINS_BASE_VERSION).tar.bz2 GST_PLUGINS_BASE_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-base GST_PLUGINS_BASE_INSTALL_STAGING = YES @@ -130,6 +130,13 @@ else GST_PLUGINS_BASE_CONF_OPT += --disable-ogg endif +ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PANGO),y) +GST_PLUGINS_BASE_CONF_OPT += --enable-pango +GST_PLUGINS_BASE_DEPENDENCIES += pango +else +GST_PLUGINS_BASE_CONF_OPT += --disable-pango +endif + ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_THEORA),y) GST_PLUGINS_BASE_CONF_OPT += --enable-theora GST_PLUGINS_BASE_DEPENDENCIES += libtheora |