From 64e88ccf6b78e01b5f53a21a026f855ed7783716 Mon Sep 17 00:00:00 2001 From: Matthias Goebl Date: Sun, 5 Feb 2006 23:21:41 +0000 Subject: libao-alsa_0.8.6: Add libao plugin-package with alsa support - Make libao-alsa_0.8.6 from libao-alsa_0.8.6 and add alsa config and dependencies for plugin --- packages/libao/libao-alsa_0.8.6.bb | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 packages/libao/libao-alsa_0.8.6.bb diff --git a/packages/libao/libao-alsa_0.8.6.bb b/packages/libao/libao-alsa_0.8.6.bb new file mode 100644 index 0000000000..4df98e1cca --- /dev/null +++ b/packages/libao/libao-alsa_0.8.6.bb @@ -0,0 +1,27 @@ +LICENSE = "GPL" +DESCRIPTION = "A cross platform audio library. This is the ALSA plugin." +HOMEPAGE = "http://www.xiph.org/ao/" +SECTION = "libs" +PRIORITY = "optional" +MAINTAINER = "Matthias Goebl " +DEPENDS = "alsa-lib libao" +RDEPENDS = "libao2 (>=${PV})" +PR = "r1" + +SRC_URI = "http://downloads.xiph.org/releases/ao/libao-${PV}.tar.gz" +S = "${WORKDIR}/libao-${PV}" + +inherit autotools pkgconfig + +EXTRA_OECONF = "--disable-esd --disable-esdtest \ + --disable-oss \ + --enable-alsa09 --enable-alsa09-mmap \ + --disable-arts --disable-nas" + +do_stage() { + oe_libinstall -so -C src libao ${STAGING_LIBDIR} +} + +PACKAGES = "libao-alsa-plugin libao-alsa-plugin-dev" +FILES_libao-alsa-plugin= "${libdir}/ao/plugins-2/libalsa*.so" +FILES_libao-alsa-plugin-dev += "${libdir}/ao/plugins-2/libalsa*.la" -- cgit v1.2.3 From 062e000a4691d4884a3ae0233246fb259a335969 Mon Sep 17 00:00:00 2001 From: Matthias Goebl Date: Sun, 5 Feb 2006 23:24:19 +0000 Subject: musicpd/mpd-alsa_0.11.5.bb: Add mpd-package with alsa support - Make mpd-alsa_0.11.5.bb from mpd_0.11.5.bb and add alsa-lib and libao dependency (./configure will add alsa support) (mpd not only uses alsa indirectly via libao, but also directly for mixer support) --- packages/musicpd/mpd-alsa_0.11.5.bb | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 packages/musicpd/mpd-alsa_0.11.5.bb diff --git a/packages/musicpd/mpd-alsa_0.11.5.bb b/packages/musicpd/mpd-alsa_0.11.5.bb new file mode 100644 index 0000000000..d4ee65abba --- /dev/null +++ b/packages/musicpd/mpd-alsa_0.11.5.bb @@ -0,0 +1,32 @@ +DESCRIPTION = "Music Player Daemon (mpd). This version is configured for alsa support" +HOMEPAGE = "http://www.musicpd.org" +LICENSE = "GPLv2" +MAINTAINER = "Chris Larson " +SECTION = "console/multimedia" +DEPENDS = "libvorbis libogg libid3tag libao-alsa zlib libmikmod libmad flac audiofile virtual/libiconv" +RDEPENDS = "libao-alsa" +PR = "r1" + +SRC_URI = "${SOURCEFORGE_MIRROR}/musicpd/mpd-${PV}.tar.gz \ + file://mpd/save-volume-state.patch;patch=1 file://mpd/mpd.init" +S = "${WORKDIR}/mpd-${PV}" + +inherit autotools update-rc.d +INITSCRIPT_NAME = "mpd" + +# Setting --enable-mpd-{mad,id3tag} causes local caches of the libraries to +# be built, instead we use the OE built versions which should be installed +# in staging - remove the --with and replace with --enable to use the local +# versions. + +EXTRA_OECONF = "--enable-ogg \ + --with-id3tag-libraries=${STAGING_LIBDIR} \ + --with-id3tag-includes=${STAGING_INCDIR} \ + --with-mad-libraries=${STAGING_LIBDIR} \ + --with-mad-includes=${STAGING_INCDIR} \ + --without-faad" + +do_install_append() { + install -d ${D}${sysconfdir}/init.d + install -m 755 ${WORKDIR}/mpd/mpd.init ${D}${sysconfdir}/init.d/mpd +} -- cgit v1.2.3