All of lore.kernel.org
 help / color / mirror / Atom feed
* Problem with baking GStreamer Plugins
       [not found] <mailman.0.1234264323.11785.openembedded-devel@lists.openembedded.org>
@ 2009-02-11 10:51 ` Ali Botorabi
  2009-02-11 11:47   ` Koen Kooi
  0 siblings, 1 reply; 3+ messages in thread
From: Ali Botorabi @ 2009-02-11 10:51 UTC (permalink / raw)
  To: openembedded-devel

Hello,

I am trying to include some of the GStreamer plugins into an own image. The image bases on angstrom base and X11 images. Koen helped me to setup a task for the GStreamer plugins:

-------------------------------------
DESCRIPTION = "ToDo"
LICENSE = "ToDo"
PR = "r1.4"

#PREFERRED_PROVIDER_gst-plugin-alsa ?= "gst-plugins-good"

DEPENDS = "gst-plugins-base gst-plugins-bad gst-plugins-good gst-plugins-ugly libogg libvorbis directfb"
RDEPENDS_${PN} = "\
        libid3tag \
        libsidplay \
        libvorbis \
        libogg \
        directfb \
        alsa-lib \
        gstreamer \
        gst-plugin-alsa \
        gst-plugin-icydemux \
        gst-plugin-asfdemux \
        gst-plugin-dvdlpcmdec \
        gst-plugin-mpegstream \
        gst-plugin-realmedia \
"

inherit task
------------------------------

This task is included by the image recipe. Bitbake evaluates the task and complains about various packages providing the plugins (base, good, ugly, bad). I have also tried to use PREFERRED_PROVIDER, it had no effect.

The major problem is that the plugins do not end in the image.

Any help is highly appreciated.

Cheers
Botorabi

-- 
Psssst! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit allen: http://www.gmx.net/de/go/multimessenger01



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

* Re: Problem with baking GStreamer Plugins
  2009-02-11 10:51 ` Problem with baking GStreamer Plugins Ali Botorabi
@ 2009-02-11 11:47   ` Koen Kooi
  0 siblings, 0 replies; 3+ messages in thread
From: Koen Kooi @ 2009-02-11 11:47 UTC (permalink / raw)
  To: openembedded-devel

On 11-02-09 11:51, Ali Botorabi wrote:
> Hello,
>
> I am trying to include some of the GStreamer plugins into an own image. The image bases on angstrom base and X11 images. Koen helped me to setup a task for the GStreamer plugins:

[snip]

> The major problem is that the plugins do not end in the image.

There is a simple solution to this, but I'm not sure everyone will like it:

--- a/packages/gstreamer/gst-plugins.inc
+++ b/packages/gstreamer/gst-plugins.inc
@@ -3,8 +3,6 @@ DESCRIPTION = "Plugins for GStreamer"
  DEPENDS = "gstreamer libmikmod liboil libogg tremor libvorbis"
  DEPENDS += "${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad 
libid3tag', d)}"

-PACKAGES_DYNAMIC = "gst-plugin-*"
-

--- /dev/null   2008-08-09 15:46:29.777083446 +0200
+++ gst-plugins.bb      2009-02-11 12:43:23.000000000 +0100
@@ -0,0 +1,5 @@
+
+DEPENDS = "gst-plugins-good gst-plugins-bad gst-plugins-ugly"
+
+PACKAGES_DYNAMIC = "gst-plugin-*"
+

Doing it like that will git rid of the PACKAGES_DYNAMIC statements 
confusing eachother. It also means you have to build *all* plugin sets.

regards,

Koen




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

* Problem with baking GStreamer Plugins
@ 2009-02-17 15:27 Ali Botorabi
  0 siblings, 0 replies; 3+ messages in thread
From: Ali Botorabi @ 2009-02-17 15:27 UTC (permalink / raw)
  To: openembedded-devel

hello koen,

i have tried your suggestion, however it did not help. i have also tried to add the needed plugins into RDEPENDS and RRECOMMENDS such as:


RDEPENDS_${PN} = "\
		libid3tag \
		libsidplay \
		libvorbis \
		libogg \
		directfb \
		alsa-lib \
		gstreamer \
		gst-plugin-alsa \
		gst-plugin-icydemux \
		gst-plugin-asfdemux \
		gst-plugin-dvdlpcmdec \
		gst-plugin-mpegstream \
		gst-plugin-realmedia \
  gst-plugin-mad \
  gst-plugin-modplug \
  gst-plugin-ivorbis \
  gst-plugin-tcp \
  gst-plugin-audioconvert \
  gst-plugin-esd \
  gst-plugin-typefindfunctions \
  gst-plugin-decodebin \
  gst-plugin-volume \
"
but it did not helo either.

any other ideas?

cheers
botorabi


Koen wrote
##########

On 11-02-09 11:51, Ali Botorabi wrote:
> Hello,
>
> I am trying to include some of the GStreamer plugins into an own image. The image bases on angstrom base and X11 images. Koen helped me to setup a task for the GStreamer plugins:

[snip]

> The major problem is that the plugins do not end in the image.

There is a simple solution to this, but I'm not sure everyone will like it:

--- a/packages/gstreamer/gst-plugins.inc
+++ b/packages/gstreamer/gst-plugins.inc
@@ -3,8 +3,6 @@ DESCRIPTION = "Plugins for GStreamer"
  DEPENDS = "gstreamer libmikmod liboil libogg tremor libvorbis"
  DEPENDS += "${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad 
libid3tag', d)}"

-PACKAGES_DYNAMIC = "gst-plugin-*"
-

--- /dev/null   2008-08-09 15:46:29.777083446 +0200
+++ gst-plugins.bb      2009-02-11 12:43:23.000000000 +0100
@@ -0,0 +1,5 @@
+
+DEPENDS = "gst-plugins-good gst-plugins-bad gst-plugins-ugly"
+
+PACKAGES_DYNAMIC = "gst-plugin-*"
+

Doing it like that will git rid of the PACKAGES_DYNAMIC statements 
confusing eachother. It also means you have to build *all* plugin sets.

regards,

Koen


-- 
Jetzt 1 Monat kostenlos! GMX FreeDSL - Telefonanschluss + DSL 
für nur 17,95 Euro/mtl.!* http://dsl.gmx.de/?ac=OM.AD.PD003K11308T4569a



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

end of thread, other threads:[~2009-02-17 15:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <mailman.0.1234264323.11785.openembedded-devel@lists.openembedded.org>
2009-02-11 10:51 ` Problem with baking GStreamer Plugins Ali Botorabi
2009-02-11 11:47   ` Koen Kooi
2009-02-17 15:27 Ali Botorabi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.