diff options
| author | Ross Burton <ross.burton@intel.com> | 2013-01-20 22:44:39 +0000 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-01-22 13:17:28 +0100 |
| commit | 1274a964a4396023b938fff5f9b4d2acff670d2e (patch) | |
| tree | 605a461f8875490f8ea484341d2238f9acf038e5 /meta-oe/recipes-support/libcanberra | |
| parent | dcbf03f84c73c1c3e130d7aa0fe05489db2468d7 (diff) | |
| download | meta-openembedded-1274a964a4396023b938fff5f9b4d2acff670d2e.tar.gz | |
libcanberra: upgrade and refresh packaging
Update to 0.29 (latest, 0.30, needs GStreamer 1.0) and refresh the package based
on the different recipes in oe-core and meta-oe.
Explicitly depend on GTK+ 2 and GTK+ 3, but split those dependencies into
different packages.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libcanberra')
| -rw-r--r-- | meta-oe/recipes-support/libcanberra/libcanberra_0.29.bb | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libcanberra/libcanberra_0.29.bb b/meta-oe/recipes-support/libcanberra/libcanberra_0.29.bb new file mode 100644 index 0000000000..a6d68d4eb5 --- /dev/null +++ b/meta-oe/recipes-support/libcanberra/libcanberra_0.29.bb | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | SUMMARY = "Implementation of XDG Sound Theme and Name Specifications" | ||
| 2 | DESCRIPTION = "Libcanberra is an implementation of the XDG Sound Theme and Name Specifications, for generating event sounds on free desktops." | ||
| 3 | LICENSE = "LGPLv2.1+" | ||
| 4 | LIC_FILES_CHKSUM = "file://LGPL;md5=2d5025d4aa3495befef8f17206a5b0a1 \ | ||
| 5 | file://src/canberra.h;beginline=7;endline=24;md5=c616c687cf8da540a14f917e0d23ab03" | ||
| 6 | |||
| 7 | DEPENDS = "alsa-lib gstreamer gtk+ gtk+3 libtool libvorbis pulseaudio" | ||
| 8 | PR = "r0" | ||
| 9 | |||
| 10 | inherit autotools | ||
| 11 | |||
| 12 | SRC_URI = "http://0pointer.de/lennart/projects/${BPN}/${BPN}-${PV}.tar.xz" | ||
| 13 | SRC_URI[md5sum] = "2594093a5d61047bd9cc87e955f86df8" | ||
| 14 | SRC_URI[sha256sum] = "127a5ef07805856d63758e5180ebfb241d1f80094fd301c287591a15b8cfcd72" | ||
| 15 | |||
| 16 | EXTRA_OECONF = "\ | ||
| 17 | --enable-null \ | ||
| 18 | --enable-alsa \ | ||
| 19 | --enable-gstreamer \ | ||
| 20 | --enable-pulse \ | ||
| 21 | --disable-oss \ | ||
| 22 | --enable-gtk \ | ||
| 23 | --enable-gtk3 \ | ||
| 24 | --disable-tdb \ | ||
| 25 | --disable-lynx \ | ||
| 26 | " | ||
| 27 | |||
| 28 | python populate_packages_prepend() { | ||
| 29 | plugindir = d.expand('${libdir}/${P}/') | ||
| 30 | do_split_packages(d, plugindir, '^libcanberra-(.*)\.so$', 'libcanberra-%s', '%s support library', extra_depends='' ) | ||
| 31 | do_split_packages(d, plugindir, '^libcanberra-(.*)\.la$', 'libcanberra-%s', '%s support library', extra_depends='' ) | ||
| 32 | } | ||
| 33 | |||
| 34 | PACKAGES =+ "${PN}-gnome ${PN}-gtk2 ${PN}-gtk3 ${PN}-systemd" | ||
| 35 | |||
| 36 | FILES_${PN} = "${bindir}/ ${libdir}/${BPN}.so.*" | ||
| 37 | |||
| 38 | FILES_${PN}-dev += "${datadir}/vala/vapi" | ||
| 39 | |||
| 40 | FILES_${PN}-dbg += "${libdir}/${P}/.debug ${libdir}/gtk-*/modules/.debug" | ||
| 41 | |||
| 42 | FILES_${PN}-gtk2 = "${libdir}/${BPN}-gtk.so.* \ | ||
| 43 | ${libdir}/gtk-2.0/modules/*.la \ | ||
| 44 | ${libdir}/gtk-2.0/modules/*.so" | ||
| 45 | |||
| 46 | # -gtk3 ships a symlink to a .so | ||
| 47 | INSANE_SKIP_${PN}-gtk3 = "dev-so" | ||
| 48 | FILES_${PN}-gtk3 = "${libdir}/${BPN}-gtk3.so.* \ | ||
| 49 | ${libdir}/gtk-3.0/modules/*.la \ | ||
| 50 | ${libdir}/gtk-3.0/modules/*.so" | ||
| 51 | |||
| 52 | FILES_${PN}-gnome = "${libdir}/gnome-settings-daemon-3.0/ \ | ||
| 53 | ${datadir}/gdm/ ${datadir}/gnome/" | ||
| 54 | |||
| 55 | FILES_${PN}-systemd = "${base_libdir}/systemd/system/*.service" | ||
