From: Phil Blundell Date: Wed, 2 Jun 2004 13:23:36 +0000 (+0000) Subject: stage libgstgconf, needed by rhythmbox X-Git-Tag: Release-2010-05/1~18919 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=382c282d78949796183d31d06a1166ba83b4dfb3;p=openembedded.git stage libgstgconf, needed by rhythmbox BKrev: 40bdd4d8PmNobwx6ySOeJwOBORcGzQ --- diff --git a/gstreamer/gst-plugins_0.8.1.oe b/gstreamer/gst-plugins_0.8.1.oe index e69de29bb2..3c7ce50921 100644 --- a/gstreamer/gst-plugins_0.8.1.oe +++ b/gstreamer/gst-plugins_0.8.1.oe @@ -0,0 +1,30 @@ +DESCRIPTION = "Plugins for GStreamer" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Phil Blundell " + +DEPENDS = "gstreamer esound-gpe zlib libmikmod libmad libogg tremor libvorbis libid3tag virtual/libsdl gnome-vfs" + +SRC_URI = "http://gstreamer.freedesktop.org/src/gst-plugins/gst-plugins-${PV}.tar.bz2 \ + file://ivorbis.patch;patch=1" + +EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --disable-esd" + +inherit autotools pkgconfig + +acpaths = "-I ${S}/common/m4 -I ${S}/m4" + +LIBV = "0.8" + +python populate_packages_prepend () { + gst_libdir = oe.data.expand('${libdir}/gstreamer-${LIBV}', d) + + do_split_packages(d, gst_libdir, '^libgst(.*)\.so$', 'gst-plugin-%s', 'GStreamer plugin for %s') + do_split_packages(d, gst_libdir, '^libgst(.*)\.l?a$', 'gst-plugin-%s-dev', 'GStreamer plugin for %s (development files)') +} + +do_stage() { + install -d ${STAGING_INCDIR}/gstreamer-0.8/gst/gconf/ + install -m 0644 gst-libs/gst/gconf/gconf.h ${STAGING_INCDIR}/gstreamer-0.8/gst/gconf/ + oe_libinstall -C gst-libs/gst/gconf -so libgstgconf-0.8 +}