summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
diff options
context:
space:
mode:
authorTanu Kaskinen <tanuk@iki.fi>2016-02-17 18:56:16 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-18 07:39:32 +0000
commitbe7b52a7ccd5801a6dbd001c97990590ff434c21 (patch)
treef8fab5c9497f3696647322bbe8df30d2a722f44a /meta/recipes-multimedia/pulseaudio/pulseaudio.inc
parentc52b8f6c9698e9f42472c9062eb809d853b5b764 (diff)
downloadpoky-be7b52a7ccd5801a6dbd001c97990590ff434c21.tar.gz
pulseaudio: 6.0 -> 8.0
Release notes for 7.0: https://wiki.freedesktop.org/www/Software/PulseAudio/Notes/7.0/ Release notes for 8.0: https://wiki.freedesktop.org/www/Software/PulseAudio/Notes/8.0/ 7.0 added support for soxr resamplers, but neither oe-core nor meta-oe have libsoxr packaged. The default resampler is still speexdsp based, so most people wouldn't be using the soxr resamplers anyway. If someone cares enough to package soxr, then we can enable the feature. Bash completions moved in 7.0 from /etc to the standard location under /usr/share/bash-completion. We now use the bash-completion class to package the completion files. The private library libpulsecore moved from /usr/lib to /usr/lib/pulseaudio. The new routing features advertised in the 8.0 release notes are reverted for now, because they caused regressions. I'll remove the revert once a proper fix is available. Removed two patches, because they are included in the new release. Rebased three patches. Updated Upstream-Status tags to reflect the current situation. (From OE-Core rev: 10351d2e7ab27d0f0311c491b70d0f0056a8f76b) Signed-off-by: Tanu Kaskinen <tanuk@iki.fi> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/pulseaudio/pulseaudio.inc')
-rw-r--r--meta/recipes-multimedia/pulseaudio/pulseaudio.inc8
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
index b2781152a9..0b05ce4cac 100644
--- a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
+++ b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
@@ -12,7 +12,7 @@ DEPENDS = "libatomic-ops libsndfile1 libtool"
12DEPENDS += "udev alsa-lib glib-2.0 gconf" 12DEPENDS += "udev alsa-lib glib-2.0 gconf"
13DEPENDS += "json-c gdbm speexdsp libxml-parser-perl-native libcap" 13DEPENDS += "json-c gdbm speexdsp libxml-parser-perl-native libcap"
14 14
15inherit autotools pkgconfig useradd gettext perlnative bluetooth systemd 15inherit autotools bash-completion pkgconfig useradd gettext perlnative bluetooth systemd
16 16
17# *.desktop rules wont be generated during configure and build will fail 17# *.desktop rules wont be generated during configure and build will fail
18# if using --disable-nls 18# if using --disable-nls
@@ -32,6 +32,10 @@ EXTRA_OECONF = "\
32 ac_cv_header_valgrind_memcheck_h=no \ 32 ac_cv_header_valgrind_memcheck_h=no \
33" 33"
34 34
35# soxr (the SoX Resampler library) doesn't seem to be currently packaged in
36# oe-core nor meta-oe, so let's not add a PACKAGECONFIG entry for it for now.
37EXTRA_OECONF += "--without-soxr"
38
35PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', '${BLUEZ}', '', d)} \ 39PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', '${BLUEZ}', '', d)} \
36 ${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} \ 40 ${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} \
37 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \ 41 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
@@ -101,7 +105,7 @@ RREPLACES_pulseaudio-server = "libpulse-bin libpulse-conf"
101 105
102PACKAGES_DYNAMIC += "^pulseaudio-lib-.* ^pulseaudio-module-.*" 106PACKAGES_DYNAMIC += "^pulseaudio-lib-.* ^pulseaudio-module-.*"
103 107
104FILES_libpulsecore = "${libdir}/libpulsecore*.so" 108FILES_libpulsecore = "${libdir}/pulseaudio/libpulsecore*.so"
105FILES_libpulsecommon = "${libdir}/pulseaudio/libpulsecommon*.so" 109FILES_libpulsecommon = "${libdir}/pulseaudio/libpulsecommon*.so"
106 110
107# client.conf configures the behaviour of libpulse, so it belongs in the same 111# client.conf configures the behaviour of libpulse, so it belongs in the same