summaryrefslogtreecommitdiffstats
path: root/meta/packages/gstreamer/gst-plugins.inc
diff options
context:
space:
mode:
authorChris Lord <chris@openedhand.com>2006-09-11 19:53:06 +0000
committerChris Lord <chris@openedhand.com>2006-09-11 19:53:06 +0000
commitb015278dc1724fec20f94a6de1074cbef208adda (patch)
tree0b8c1b83bb925bb7eaf7a80061111243cb415a1e /meta/packages/gstreamer/gst-plugins.inc
parent117d6257936b4efebd82762ff825412e95637170 (diff)
downloadpoky-b015278dc1724fec20f94a6de1074cbef208adda.tar.gz
Fix gst-plugin-* depending on gst-plugins-*-dbg
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@703 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/gstreamer/gst-plugins.inc')
-rw-r--r--meta/packages/gstreamer/gst-plugins.inc9
1 files changed, 7 insertions, 2 deletions
diff --git a/meta/packages/gstreamer/gst-plugins.inc b/meta/packages/gstreamer/gst-plugins.inc
index f5e60edb4c..ed04aa473f 100644
--- a/meta/packages/gstreamer/gst-plugins.inc
+++ b/meta/packages/gstreamer/gst-plugins.inc
@@ -14,13 +14,18 @@ acpaths = "-I ${S}/common/m4 -I ${S}/m4"
14 14
15LIBV = "0.10" 15LIBV = "0.10"
16PACKAGES_DYNAMIC = "gst-plugin-*" 16PACKAGES_DYNAMIC = "gst-plugin-*"
17#FILES_${PN} += "${libdir}/gstreamer-${LIBV}/*.so"
18#FILES_${PN}-dev += "${libdir}/gstreamer-${LIBV}/*.la ${libdir}/gstreamer-${LIBV}/*.a"
19FILES_${PN}-dbg += "${libdir}/gstreamer-${LIBV}/.debug"
17 20
18python populate_packages_prepend () { 21python populate_packages_prepend () {
19 gst_libdir = bb.data.expand('${libdir}/gstreamer-${LIBV}', d) 22 gst_libdir = bb.data.expand('${libdir}/gstreamer-${LIBV}', d)
20 postinst = bb.data.getVar('plugin_postinst', d, 1) 23 postinst = bb.data.getVar('plugin_postinst', d, 1)
21 24
22 do_split_packages(d, gst_libdir, '^libgst(.*)\.so$', 'gst-plugin-%s', 'GStreamer plugin for %s', postinst=postinst) 25# Can't package separate debug packages yet
23 do_split_packages(d, gst_libdir, '^libgst(.*)\.l?a$', 'gst-plugin-%s-dev', 'GStreamer plugin for %s (development files)') 26# do_split_packages(d, gst_libdir, '\.debug/libgst(.*)\.so$', 'gst-plugin-%s-dbg', 'GStreamer plugin for %s (with debugging symbols)', recursive=True, extra_depends=bb.data.expand('${PN}-dbg', d), match_path=True)
27 do_split_packages(d, gst_libdir, 'libgst(.*)\.so$', 'gst-plugin-%s', 'GStreamer plugin for %s', postinst=postinst, extra_depends=bb.data.expand('${PN}',d))
28 do_split_packages(d, gst_libdir, 'libgst(.*)\.l?a$', 'gst-plugin-%s-dev', 'GStreamer plugin for %s (development files)', extra_depends=bb.data.expand('${PN}-dev',d))
24} 29}
25 30
26#do_stage() { 31#do_stage() {