From bb59f9f0c2c87057ca814be33c12e7422b74e0c8 Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Sun, 19 Aug 2007 16:00:01 +0000 Subject: add alsa controller and PCM plugins --- packages/alsa/alsa-lib_1.0.13.bb | 2 +- packages/alsa/alsa-plugins_1.0.14.bb | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 packages/alsa/alsa-plugins_1.0.14.bb diff --git a/packages/alsa/alsa-lib_1.0.13.bb b/packages/alsa/alsa-lib_1.0.13.bb index 78df6dfe02..860ef11f18 100644 --- a/packages/alsa/alsa-lib_1.0.13.bb +++ b/packages/alsa/alsa-lib_1.0.13.bb @@ -2,7 +2,7 @@ DESCRIPTION = "Alsa sound library" HOMEPAGE = "http://www.alsa-project.org" SECTION = "libs/multimedia" LICENSE = "GPL" -PR = "r3" +PR = "r4" # configure.in sets -D__arm__ on the command line for any arm system # (not just those with the ARM instruction set), this should be removed, diff --git a/packages/alsa/alsa-plugins_1.0.14.bb b/packages/alsa/alsa-plugins_1.0.14.bb new file mode 100644 index 0000000000..b17a3265e8 --- /dev/null +++ b/packages/alsa/alsa-plugins_1.0.14.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "ALSA Plugins" +HOMEPAGE = "http://www.alsa-project.org" +SECTION = "multimedia/alsa/plugins" +LICENSE = "GPL" +DEPENDS = "alsa-lib pulseaudio" +PR = "r0" + +SRC_URI = "ftp://ftp.alsa-project.org/pub/plugins/alsa-plugins-${PV}.tar.bz2" + +inherit autotools + +PACKAGES_DYNAMIC = "libasound-module*" + +python populate_packages_prepend() { + plugindir = bb.data.expand('${libdir}/alsa-lib/', d) + do_split_packages(d, plugindir, '^libasound_module_(.*)\.so$', 'libasound-module-%s', 'Alsa plugin for %s', extra_depends='' ) +} + +FILES_${PN}-dev += "${libdir}/alsa-lib/libasound*.a ${libdir}/alsa-lib/libasound*.la" +FILES_${PN}-dbg += "${libdir}/alsa-lib/.debug" -- cgit v1.2.3 From c33ca1308e0a11836d58037ccfbff839b662c235 Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Sun, 19 Aug 2007 17:33:42 +0000 Subject: gst-meta-base: add id3demux plugin --- packages/gstreamer/gst-meta-base_0.10.bb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/gstreamer/gst-meta-base_0.10.bb b/packages/gstreamer/gst-meta-base_0.10.bb index 182790bdea..fbf36b94b0 100644 --- a/packages/gstreamer/gst-meta-base_0.10.bb +++ b/packages/gstreamer/gst-meta-base_0.10.bb @@ -1,8 +1,8 @@ -# Copyright (C) 2006,2007 OpenedHand LTD +# Based on its sibling on Poky which is copyright (C) 2006,2007 OpenedHand LTD DESCRIPTION = "Gstreamer package groups" DEPENDS = "gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly" -PR = "r4" +PR = "r5" PACKAGES = "\ gst-meta-base \ @@ -32,7 +32,8 @@ RDEPENDS_gst-meta-audio = "\ gst-meta-base \ gst-plugin-ivorbis \ gst-plugin-ogg \ - gst-plugin-mad" + gst-plugin-mad \ + gst-plugin-id3demux" RDEPENDS_gst-meta-debug = "\ -- cgit v1.2.3 From 8e321d4b806425c3e05552b771b9e21a5ee4fbe2 Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Sun, 19 Aug 2007 17:34:04 +0000 Subject: add gst-plugin-pulse, GStreamer plugins to use pulseaudio as source and sink --- packages/gstreamer/gst-plugin-pulse_0.9.4.bb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 packages/gstreamer/gst-plugin-pulse_0.9.4.bb diff --git a/packages/gstreamer/gst-plugin-pulse_0.9.4.bb b/packages/gstreamer/gst-plugin-pulse_0.9.4.bb new file mode 100644 index 0000000000..f4dd894636 --- /dev/null +++ b/packages/gstreamer/gst-plugin-pulse_0.9.4.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "GStreamer plugin for using pulse audio as sink and source" +HOMEPAGE = "http://0pointer.de/lennart/projects/gst-pulse/" +LICENSE = "GPL" +DEPENDS = "gstreamer pulseaudio" + +SRC_URI = "http://0pointer.de/lennart/projects/gst-pulse/gst-pulse-${PV}.tar.gz" +S = "${WORKDIR}/gst-pulse-${PV}" + +inherit autotools + +EXTRA_OECONF = "--disable-lynx" +EXTRA_OEMAKE = "-e" + +export GST_MODDIR=${libdir}/gstreamer-0.10 + +FILES_${PN} = "${libdir}/gstreamer-0.10/libgstpulse.so.*" +FILES_${PN}-dev = "\ + ${libdir}/gstreamer-0.10/libgstpulse.a \ + ${libdir}/gstreamer-0.10/libgstpulse.la \ + ${libdir}/gstreamer-0.10/libgstpulse.so" +FILES_${PN}-dbg = "${libdir}/gstreamer-0.10/.debug" -- cgit v1.2.3 From 3c62eb1ad25fa4e14d02e14e60f765e18652483c Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Sun, 19 Aug 2007 17:46:38 +0000 Subject: gst-plugin-pulse: bypass libtool install (bogus for plugins) --- packages/gstreamer/gst-plugin-pulse_0.9.4.bb | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/packages/gstreamer/gst-plugin-pulse_0.9.4.bb b/packages/gstreamer/gst-plugin-pulse_0.9.4.bb index f4dd894636..f88cb66ff4 100644 --- a/packages/gstreamer/gst-plugin-pulse_0.9.4.bb +++ b/packages/gstreamer/gst-plugin-pulse_0.9.4.bb @@ -2,6 +2,7 @@ DESCRIPTION = "GStreamer plugin for using pulse audio as sink and source" HOMEPAGE = "http://0pointer.de/lennart/projects/gst-pulse/" LICENSE = "GPL" DEPENDS = "gstreamer pulseaudio" +PR = "r1" SRC_URI = "http://0pointer.de/lennart/projects/gst-pulse/gst-pulse-${PV}.tar.gz" S = "${WORKDIR}/gst-pulse-${PV}" @@ -9,13 +10,19 @@ S = "${WORKDIR}/gst-pulse-${PV}" inherit autotools EXTRA_OECONF = "--disable-lynx" -EXTRA_OEMAKE = "-e" +GST_LIBV = 0.10 + +do_install() { + install -d ${D}${libdir}/gstreamer-${GST_LIBV}/ + install -m 0755 src/.libs/libgstpulse.so ${D}${libdir}/gstreamer-${GST_LIBV} +} export GST_MODDIR=${libdir}/gstreamer-0.10 -FILES_${PN} = "${libdir}/gstreamer-0.10/libgstpulse.so.*" +FILES_${PN} = "${libdir}/gstreamer-0.10/libgstpulse.so" FILES_${PN}-dev = "\ ${libdir}/gstreamer-0.10/libgstpulse.a \ ${libdir}/gstreamer-0.10/libgstpulse.la \ - ${libdir}/gstreamer-0.10/libgstpulse.so" + ${libdir}/gstreamer-0.10/libgstpulse.so*" FILES_${PN}-dbg = "${libdir}/gstreamer-0.10/.debug" + -- cgit v1.2.3 From 7726e44db70e81e626d612f968e980974c43ca60 Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Sun, 19 Aug 2007 17:53:00 +0000 Subject: openmoko.conf: set feed URIs for P1-August-Snapshot --- conf/distro/openmoko.conf | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/conf/distro/openmoko.conf b/conf/distro/openmoko.conf index c438da25d9..e4a1518ed0 100644 --- a/conf/distro/openmoko.conf +++ b/conf/distro/openmoko.conf @@ -12,7 +12,7 @@ require conf/distro/include/openmoko-srcdate-now.inc # DISTRO = "openmoko" DISTRO_NAME = "OpenMoko" -DISTRO_VERSION = ".dev-snapshot-${DATE}" +DISTRO_VERSION = "P1-August-Snapshot-${DATE}" #DISTRO_TYPE = "release" DISTRO_TYPE = "debug" @@ -23,7 +23,10 @@ CVS_TARBALL_STASH = "http://downloads.openmoko.org/sources/" PREMIRRORS = "(ftp|http)://.*/.*/ http://downloads.openmoko.org/sources/" FEED_URIS = "\ - all##http://buildhost.openmoko.org/tmp/deploy/ipk/all \ - armv4t##http://buildhost.openmoko.org/tmp/deploy/ipk/armv4t \ - fic-gta01##http://buildhost.openmoko.org/tmp/deploy/ipk/fic-gta01" - + snapshot-all##http://buildhost.openmoko.org/snapshots/2007.08/ipk/all \ + snapshot-armv4t##http://buildhost.openmoko.org/snapshots/2007.08/ipk/armv4t \ + snapshot-fic-gta01##http://buildhost.openmoko.org/snapshots/2007.08/ipk/fic-gta01 \ + \ + updates-all##http://buildhost.openmoko.org/OM2007.2/tmp/deploy/glibc/ipk/all \ + updates-armv4t##http://buildhost.openmoko.org/OM2007.2/tmp/deploy/glibc/ipk/armv4t \ + updates-fic-gta01##http://buildhost.openmoko.org/OM2007.2/tmp/deploy/glibc/fic-gta01 " -- cgit v1.2.3