diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-07-28 11:44:57 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-08 13:41:19 +0100 |
commit | 2ac54c45196ae1409f60f0cc314208a0c422660b (patch) | |
tree | 59fbcdad7bd1d34afb471253fc2e5f0ce0e60db4 /meta/recipes-multimedia/gstreamer/gst-plugins-package.inc | |
parent | 35fa8dc5f7da90fdd40091a3c3600d3fcd232922 (diff) | |
download | poky-2ac54c45196ae1409f60f0cc314208a0c422660b.tar.gz |
gst-plugins: partially sync packaging with OE .dev
Gst-plugins get 2 extra packages:
${PN}-apps: helper apps in ${bindir}
${PN}-meta: meta package that will drag in all plugins, libs and apps ${PN} generates
And all libs are split out and run through debian style renaming if enabled.
The packaging include was split out to be reused by external plugins (e.g. gst-plugin-gl, gst-fluendo-*).
The new package list looks like:
libgstapp-0.10-0_0.10.32-r1_armv7a.ipk
libgstfft-0.10-0_0.10.32-r1_armv7a.ipk
[..]
gst-plugins-base-videorate_0.10.32-r1_armv7a.ipk
gst-plugins-base-videoscale_0.10.32-r1_armv7a.ipk
[..]
gst-plugins-base-meta_0.10.32-r1_armv7a.ipk
[..]
gst-plugins-base-apps_0.10.32-r1_armv7a.ipk
(From OE-Core rev: 4bfd595934c1f6839ae848b09ecca439d92bf014)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-plugins-package.inc')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-plugins-package.inc | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc b/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc new file mode 100644 index 0000000000..796df14a9e --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-package.inc | |||
@@ -0,0 +1,34 @@ | |||
1 | LIBV = "0.10" | ||
2 | |||
3 | python populate_packages_prepend () { | ||
4 | gst_libdir = bb.data.expand('${libdir}/gstreamer-${LIBV}', d) | ||
5 | postinst = bb.data.getVar('plugin_postinst', d, 1) | ||
6 | glibdir = bb.data.expand('${libdir}', d) | ||
7 | |||
8 | do_split_packages(d, glibdir, '^lib(.*)\.so\.*', 'lib%s', 'gstreamer %s library', extra_depends='', allow_links=True) | ||
9 | do_split_packages(d, gst_libdir, 'libgst(.*)\.so$', bb.data.expand('${PN}-%s', d), 'GStreamer plugin for %s', postinst=postinst, extra_depends=bb.data.expand('${PN}',d)) | ||
10 | do_split_packages(d, gst_libdir, 'libgst(.*)\.l?a$', bb.data.expand('${PN}-%s-dev', d), 'GStreamer plugin for %s (development files)', extra_depends=bb.data.expand('${PN}-dev',d)) | ||
11 | |||
12 | pn = bb.data.getVar('PN', d, 1) | ||
13 | metapkg = pn + '-meta' | ||
14 | bb.data.setVar('ALLOW_EMPTY_' + metapkg, "1", d) | ||
15 | bb.data.setVar('FILES_' + metapkg, "", d) | ||
16 | blacklist = [ pn + '-locale', pn + '-dev', pn + '-dbg', pn + '-doc' ] | ||
17 | metapkg_rdepends = [] | ||
18 | packages = bb.data.getVar('PACKAGES', d, 1).split() | ||
19 | for pkg in packages[1:]: | ||
20 | if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.endswith('-dbg') and not pkg.count('locale') and not pkg.count('-static'): | ||
21 | metapkg_rdepends.append(pkg) | ||
22 | bb.data.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends), d) | ||
23 | bb.data.setVar('DESCRIPTION_' + metapkg, pn + ' meta package', d) | ||
24 | } | ||
25 | |||
26 | ALLOW_EMPTY = "1" | ||
27 | |||
28 | PACKAGES += "${PN}-apps ${PN}-meta" | ||
29 | FILES_${PN}-apps = "${bindir}" | ||
30 | |||
31 | FILES_${PN} = "${datadir}/gstreamer-${LIBV}" | ||
32 | FILES_${PN}-dbg += "${libdir}/gstreamer-${LIBV}/.debug" | ||
33 | |||
34 | |||