From: Phil Blundell Date: Tue, 3 Aug 2004 15:12:12 +0000 (+0000) Subject: add postinst to plugins X-Git-Tag: Release-2010-05/1~17852 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35c3b0b4b38af11500fe0803650b2968be6a48dc;p=openembedded.git add postinst to plugins BKrev: 410fab4cVjbhpbdP7JxF5mynhYaa1w --- diff --git a/gstreamer/gst-plugins_0.8.1.oe b/gstreamer/gst-plugins_0.8.1.oe index 217e69b360..2c73ab7372 100644 --- a/gstreamer/gst-plugins_0.8.1.oe +++ b/gstreamer/gst-plugins_0.8.1.oe @@ -2,7 +2,7 @@ DESCRIPTION = "Plugins for GStreamer" SECTION = "base" PRIORITY = "optional" MAINTAINER = "Phil Blundell " -PR = "r2" +PR = "r3" DEPENDS = "gstreamer zlib libmikmod libmad libogg tremor libvorbis libid3tag gnome-vfs esound-gpe" @@ -17,10 +17,15 @@ acpaths = "-I ${S}/common/m4 -I ${S}/m4" LIBV = "0.8" +plugin_postinst() { +gst-register --gst-registry=/var/cache/gstreamer-0.8/registry.xml +} + python populate_packages_prepend () { gst_libdir = oe.data.expand('${libdir}/gstreamer-${LIBV}', d) + postinst = oe.data.getVar('plugin_postinst', d, 1) - do_split_packages(d, gst_libdir, '^libgst(.*)\.so$', 'gst-plugin-%s', 'GStreamer plugin for %s') + do_split_packages(d, gst_libdir, '^libgst(.*)\.so$', 'gst-plugin-%s', 'GStreamer plugin for %s', postinst=postinst) do_split_packages(d, gst_libdir, '^libgst(.*)\.l?a$', 'gst-plugin-%s-dev', 'GStreamer plugin for %s (development files)') }