pulseaudio alsa wrapper: add meta package that installs the files needed to use pulse...
authorKoen Kooi <koen@openembedded.org>
Sat, 14 Jun 2008 18:02:48 +0000 (18:02 +0000)
committerKoen Kooi <koen@openembedded.org>
Sat, 14 Jun 2008 18:02:48 +0000 (18:02 +0000)
* you need to manually add the contents of /etc/asound.conf.pulseaudio to /etc/asound.conf

packages/pulseaudio/files/asound.conf.pulseaudio [new file with mode: 0644]
packages/pulseaudio/pulseaudio-alsa-wrapper.bb [new file with mode: 0644]

diff --git a/packages/pulseaudio/files/asound.conf.pulseaudio b/packages/pulseaudio/files/asound.conf.pulseaudio
new file mode 100644 (file)
index 0000000..71f01f2
--- /dev/null
@@ -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 (file)
index 0000000..7a287da
--- /dev/null
@@ -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
+}
+