diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2010-11-15 20:56:18 +0800 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-11-18 13:30:23 -0800 |
commit | f7b34692dee2f7fb8f25f93d08f8d964791632eb (patch) | |
tree | 1820b28b15177264e2ce152af15b6f9fadc170cc /meta/recipes-connectivity/bluez/bluez4_4.79.bb | |
parent | 23769357b965cbb8dc8049ade9765b9c40f2dbcf (diff) | |
download | poky-f7b34692dee2f7fb8f25f93d08f8d964791632eb.tar.gz |
bluez4: Upgraded to version 4.79.
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/recipes-connectivity/bluez/bluez4_4.79.bb')
-rw-r--r-- | meta/recipes-connectivity/bluez/bluez4_4.79.bb | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/bluez/bluez4_4.79.bb b/meta/recipes-connectivity/bluez/bluez4_4.79.bb new file mode 100644 index 0000000000..ee4ee45d3c --- /dev/null +++ b/meta/recipes-connectivity/bluez/bluez4_4.79.bb | |||
@@ -0,0 +1,73 @@ | |||
1 | SUMMARY = "Linux Bluetooth Stack Userland V4" | ||
2 | DESCRIPTION = "Linux Bluetooth stack V4 userland components. These include a system configurations, daemons, tools and system libraries." | ||
3 | HOMEPAGE = "http://www.bluez.org" | ||
4 | SECTION = "libs" | ||
5 | PRIORITY = "optional" | ||
6 | LICENSE = "GPLv2+ & LGPLv2.1+" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \ | ||
8 | file://COPYING.LIB;md5=fb504b67c50331fc78734fed90fb0e09 \ | ||
9 | file://src/main.c;beginline=1;endline=24;md5=9bc54b93cd7e17bf03f52513f39f926e \ | ||
10 | file://sbc/sbc.c;beginline=1;endline=25;md5=1a40781ed30d50d8639323a184aeb191" | ||
11 | DEPENDS = "gst-plugins-base alsa-lib libusb dbus-glib libnl" | ||
12 | |||
13 | # For angstrom we want this to replace at least bluez-libs | ||
14 | PROVIDES_append_angstrom = " bluez-utils bluez-libs" | ||
15 | |||
16 | ASNEEDED = "" | ||
17 | |||
18 | PR = "r0" | ||
19 | |||
20 | SRC_URI = "\ | ||
21 | http://www.kernel.org/pub/linux/bluetooth/bluez-${PV}.tar.gz \ | ||
22 | file://fix-dfutool-usb-declaration-mismatch.patch;patch=1 \ | ||
23 | file://sbc-thumb.patch;patch=1 \ | ||
24 | file://bluetooth.conf \ | ||
25 | " | ||
26 | S = "${WORKDIR}/bluez-${PV}" | ||
27 | |||
28 | inherit autotools | ||
29 | AUTOTOOLS_STAGE_PKGCONFIG = "1" | ||
30 | |||
31 | EXTRA_OECONF = "\ | ||
32 | --enable-gstreamer \ | ||
33 | --enable-alsa \ | ||
34 | --enable-usb \ | ||
35 | --enable-netlink \ | ||
36 | --enable-tools \ | ||
37 | --enable-bccmd \ | ||
38 | --enable-hid2hci \ | ||
39 | --enable-dfutool \ | ||
40 | --enable-hidd \ | ||
41 | --enable-pandd \ | ||
42 | --enable-dund \ | ||
43 | --disable-cups \ | ||
44 | --enable-test \ | ||
45 | --enable-manpages \ | ||
46 | --enable-configfiles \ | ||
47 | --enable-initscripts \ | ||
48 | --disable-pcmciarules \ | ||
49 | " | ||
50 | |||
51 | do_install_append() { | ||
52 | install -m 0644 ${S}/audio/audio.conf ${D}/${sysconfdir}/bluetooth/ | ||
53 | install -m 0644 ${S}/network/network.conf ${D}/${sysconfdir}/bluetooth/ | ||
54 | install -m 0644 ${S}/input/input.conf ${D}/${sysconfdir}/bluetooth/ | ||
55 | # at_console doesn't really work with the current state of OE, so punch some more holes so people can actually use BT | ||
56 | install -m 0644 ${WORKDIR}/bluetooth.conf ${D}/${sysconfdir}/dbus-1/system.d/ | ||
57 | } | ||
58 | |||
59 | PACKAGES =+ "gst-plugin-bluez libasound-module-bluez" | ||
60 | |||
61 | FILES_gst-plugin-bluez = "${libdir}/gstreamer-0.10/lib*.so" | ||
62 | FILES_libasound-module-bluez = "${libdir}/alsa-lib/lib*.so" | ||
63 | FILES_${PN} += "${libdir}/bluetooth/plugins/*.so" | ||
64 | FILES_${PN}-dev += "\ | ||
65 | ${libdir}/bluetooth/plugins/*.la \ | ||
66 | ${libdir}/alsa-lib/*.la \ | ||
67 | ${libdir}/gstreamer-0.10/*.la \ | ||
68 | " | ||
69 | |||
70 | FILES_${PN}-dbg += "\ | ||
71 | ${libdir}/bluetooth/plugins/.debug \ | ||
72 | ${libdir}/*/.debug \ | ||
73 | " | ||