Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] gstreamer: update to new upstream release 0.10.25
@ 2009-10-07 12:15 Sven Neumann
  2009-10-07 12:15 ` [Buildroot] [PATCH] gst-plugins-base: " Sven Neumann
  2009-10-07 12:53 ` [Buildroot] [PATCH] gstreamer: update to new upstream release 0.10.25 Peter Korsgaard
  0 siblings, 2 replies; 5+ messages in thread
From: Sven Neumann @ 2009-10-07 12:15 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
---
 package/multimedia/gstreamer/gstreamer.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/multimedia/gstreamer/gstreamer.mk b/package/multimedia/gstreamer/gstreamer.mk
index 53f1f75..76afa44 100644
--- a/package/multimedia/gstreamer/gstreamer.mk
+++ b/package/multimedia/gstreamer/gstreamer.mk
@@ -3,7 +3,7 @@
 # gstreamer
 #
 #############################################################
-GSTREAMER_VERSION = 0.10.23
+GSTREAMER_VERSION = 0.10.25
 GSTREAMER_SOURCE = gstreamer-$(GSTREAMER_VERSION).tar.bz2
 GSTREAMER_SITE = http://gstreamer.freedesktop.org/src/gstreamer
 GSTREAMER_INSTALL_STAGING = YES
-- 
1.6.0.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] gst-plugins-base: update to new upstream release 0.10.25
  2009-10-07 12:15 [Buildroot] [PATCH] gstreamer: update to new upstream release 0.10.25 Sven Neumann
@ 2009-10-07 12:15 ` Sven Neumann
  2009-10-07 12:15   ` [Buildroot] [PATCH] gst-plugins-good: update to upstream release 0.10.16 Sven Neumann
  2009-10-07 12:53 ` [Buildroot] [PATCH] gstreamer: update to new upstream release 0.10.25 Peter Korsgaard
  1 sibling, 1 reply; 5+ messages in thread
From: Sven Neumann @ 2009-10-07 12:15 UTC (permalink / raw)
  To: buildroot

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>
---
 package/multimedia/gst-plugins-base/Config.in      |    4 ++++
 .../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 8883a43..f08be7e 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 63f23cd..bd422be 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
-- 
1.6.0.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] gst-plugins-good: update to upstream release 0.10.16
  2009-10-07 12:15 ` [Buildroot] [PATCH] gst-plugins-base: " Sven Neumann
@ 2009-10-07 12:15   ` Sven Neumann
  2009-10-07 12:15     ` [Buildroot] [PATCH] gst-plugins-bad: update to upstream release 0.10.14 Sven Neumann
  0 siblings, 1 reply; 5+ messages in thread
From: Sven Neumann @ 2009-10-07 12:15 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
---
 .../gst-plugins-good/gst-plugins-good.mk           |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/multimedia/gst-plugins-good/gst-plugins-good.mk b/package/multimedia/gst-plugins-good/gst-plugins-good.mk
index bd0cb78..4f4861b 100644
--- a/package/multimedia/gst-plugins-good/gst-plugins-good.mk
+++ b/package/multimedia/gst-plugins-good/gst-plugins-good.mk
@@ -3,7 +3,7 @@
 # gst-plugins-good
 #
 #############################################################
-GST_PLUGINS_GOOD_VERSION = 0.10.13
+GST_PLUGINS_GOOD_VERSION = 0.10.16
 GST_PLUGINS_GOOD_SOURCE = gst-plugins-good-$(GST_PLUGINS_GOOD_VERSION).tar.bz2
 GST_PLUGINS_GOOD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-good
 GST_PLUGINS_GOOD_LIBTOOL_PATCH = NO
-- 
1.6.0.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] gst-plugins-bad: update to upstream release 0.10.14
  2009-10-07 12:15   ` [Buildroot] [PATCH] gst-plugins-good: update to upstream release 0.10.16 Sven Neumann
@ 2009-10-07 12:15     ` Sven Neumann
  0 siblings, 0 replies; 5+ messages in thread
From: Sven Neumann @ 2009-10-07 12:15 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
---
 .../multimedia/gst-plugins-bad/gst-plugins-bad.mk  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk b/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk
index b548a43..c6c5fd0 100644
--- a/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk
+++ b/package/multimedia/gst-plugins-bad/gst-plugins-bad.mk
@@ -3,7 +3,7 @@
 # gst-plugins-bad
 #
 #############################################################
-GST_PLUGINS_BAD_VERSION = 0.10.12
+GST_PLUGINS_BAD_VERSION = 0.10.14
 GST_PLUGINS_BAD_SOURCE = gst-plugins-bad-$(GST_PLUGINS_BAD_VERSION).tar.bz2
 GST_PLUGINS_BAD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-bad
 GST_PLUGINS_BAD_LIBTOOL_PATCH = NO
-- 
1.6.0.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] gstreamer: update to new upstream release 0.10.25
  2009-10-07 12:15 [Buildroot] [PATCH] gstreamer: update to new upstream release 0.10.25 Sven Neumann
  2009-10-07 12:15 ` [Buildroot] [PATCH] gst-plugins-base: " Sven Neumann
@ 2009-10-07 12:53 ` Peter Korsgaard
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2009-10-07 12:53 UTC (permalink / raw)
  To: buildroot

>>>>> "Sven" == Sven Neumann <s.neumann@raumfeld.com> writes:

 Sven> Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>

Thanks, committed all 4.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-10-07 12:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-07 12:15 [Buildroot] [PATCH] gstreamer: update to new upstream release 0.10.25 Sven Neumann
2009-10-07 12:15 ` [Buildroot] [PATCH] gst-plugins-base: " Sven Neumann
2009-10-07 12:15   ` [Buildroot] [PATCH] gst-plugins-good: update to upstream release 0.10.16 Sven Neumann
2009-10-07 12:15     ` [Buildroot] [PATCH] gst-plugins-bad: update to upstream release 0.10.14 Sven Neumann
2009-10-07 12:53 ` [Buildroot] [PATCH] gstreamer: update to new upstream release 0.10.25 Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox