From: Koen Kooi Date: Sat, 14 Jun 2008 18:02:48 +0000 (+0000) Subject: pulseaudio alsa wrapper: add meta package that installs the files needed to use pulse... X-Git-Tag: Release-2010-05/1~6692 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0aaa95c131f07a9fe34685b9843e4857caf14f26;p=openembedded.git pulseaudio alsa wrapper: add meta package that installs the files needed to use pulseaudio as alsa-backend * you need to manually add the contents of /etc/asound.conf.pulseaudio to /etc/asound.conf --- diff --git a/packages/pulseaudio/files/asound.conf.pulseaudio b/packages/pulseaudio/files/asound.conf.pulseaudio new file mode 100644 index 0000000000..71f01f2c3c --- /dev/null +++ b/packages/pulseaudio/files/asound.conf.pulseaudio @@ -0,0 +1,7 @@ +pcm.pulse { + type pulse +} + +ctl.pulse { + type pulse +} diff --git a/packages/pulseaudio/pulseaudio-alsa-wrapper.bb b/packages/pulseaudio/pulseaudio-alsa-wrapper.bb new file mode 100644 index 0000000000..7a287da773 --- /dev/null +++ b/packages/pulseaudio/pulseaudio-alsa-wrapper.bb @@ -0,0 +1,37 @@ +DESCRIPTION = "Meta package to make alsa transparently use pulseaudio" +LICENSE = "GPLv2" + +SRC_URI = "file://asound.conf.pulseaudio" + +RDEPENDS = "hal \ + pulseaudio-server \ + pulseaudio-misc \ + pulseaudio-module-alsa-sink \ + pulseaudio-module-alsa-source \ + pulseaudio-module-hal-detect \ + libasound-module-ctl-pulse \ + libasound-module-pcm-pulse \ +" + +do_install() { + install -d ${D}/${sysconfdir} + install -m 0644 ${WORKDIR}/asound.conf.pulseaudio ${D}/${sysconfdir} +} + +PACKAGE_ARCH = "all" + +pkg_postinst_${PN} () { +#!/bin/sh +if [ "x$D" != "x" ]; then + exit 1 +fi + +mkdir -p /etc/pulse || true +# Remove existing entries +if [ -e /etc/pulse/session ] ; then + sed -i -e /load-module\ module-hal-detect/d /etc/pulse/session +fi +# Load hal-detect module to avoid alsa->pulse-alsa-pulse->.. loops +echo "load-module module-hal-detect" >> /etc/pulse/session +} +