Noticed when installing the pulseaudio binpkg on the other system. From cmake log: > Dependency gstreamer-1.0 skipped: feature gstreamer disabled > Dependency gstreamer-app-1.0 skipped: feature gstreamer disabled > Dependency gstreamer-rtp-1.0 skipped: feature gstreamer disabled > Run-time dependency gstreamer-1.0 found: YES 1.18.4 > Run-time dependency gstreamer-app-1.0 found: YES 1.18.4 > Run-time dependency check found: YES 0.15.2 > ... > Configuring PulseAudioConfig.cmake.tmp using configuration > Configuring PulseAudioConfigVersion.cmake using configuration > Message: > ---{ pulseaudio 15.0 }--- > ... > Enable D-Bus: true > Enable BlueZ 5: true > Enable native headsets: false > Enable ofono headsets: false > Enable GStreamer based codecs: true > ... > Enable GStreamer: false Results in: > $ lddtree /usr/lib64/pulseaudio/modules/libbluez5-util.so > libbluez5-util.so => /usr/lib64/pulseaudio/modules/libbluez5-util.so (interpreter => none) > libgstreamer-1.0.so.0 => /usr/lib64/libgstreamer-1.0.so.0 > libgmodule-2.0.so.0 => /usr/lib64/libgmodule-2.0.so.0
I think bluez5-gstreamer needs to be set together with gstreamer use feature. This should fix it --- a/media-sound/pulseaudio/pulseaudio-15.0.ebuild +++ b/media-sound/pulseaudio/pulseaudio-15.0.ebuild @@ -199,6 +199,7 @@ multilib_src_configure() { $(meson_native_use_bool ofono-headset bluez5-ofono-headset) $(meson_native_use_feature glib gsettings) # Supposedly correct? $(meson_native_use_feature gstreamer) + $(meson_native_use_feature gstreamer bluez5-gstreamer) $(meson_native_use_feature gtk) $(meson_native_use_feature jack) -Dsamplerate=disabled # Matches upstream
The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85c82141ff000919dd316476959da94d699a5215 commit 85c82141ff000919dd316476959da94d699a5215 Author: Mart Raudsepp <leio@gentoo.org> AuthorDate: 2021-09-23 14:08:57 +0000 Commit: Mart Raudsepp <leio@gentoo.org> CommitDate: 2021-09-23 14:09:07 +0000 media-sound/pulseaudio: always disable bluez5-gst, tweak REQUIRED_USE To actually function at runtime, bluez5-gstreamer requires gstreamer elements that we don't have with gst-1.18 yet, so just explicitly disable them for the time being to avoid automagic dependencies. USE=gstreamer only enables RTP module for the daemon, so throw it into the pile of annoying REQUIRED_USE blockers until that annoyance can be dealt with separately. Closes: https://bugs.gentoo.org/814488 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Mart Raudsepp <leio@gentoo.org> .../pulseaudio/{pulseaudio-15.0.ebuild => pulseaudio-15.0-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
*** Bug 817806 has been marked as a duplicate of this bug. ***