blob: 20a9bad46c0d505f3dfe5c6e0677990d44615f10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
require bluez-utils3.inc
PR = "r4"
# see bluez-utils3.inc for the explanation of these option
EXTRA_OECONF = " \
--enable-bccmd \
--enable-hid2hci \
--enable-hidd \
--enable-pand \
--enable-dund \
--disable-alsa \
--disable-cups \
--enable-glib \
--disable-sdpd \
--enable-network \
--enable-serial \
--enable-input \
--enable-audio \
--enable-echo \
--enable-configfile \
--enable-initscripts \
--enable-test \
--enable-hidd \
--enable-obex \
--enable-pand \
--enable-dund \
--enable-avctrl \
--enable-hid2hci \
--enable-dfutool \
"
CONFFILES_${PN} = " \
${sysconfdir}/bluetooth/hcid.conf \
${sysconfdir}/default/bluetooth \
"
CONFFILES_${PN}-compat = " \
${sysconfdir}/bluetooth/rfcomm.conf \
"
PACKAGES =+ "bluez-audio"
FILES_${PN} = " \
${base_sbindir}/hcid \
${libdir}/bluetooth/plugins/*.so \
${sysconfdir}/init.d/bluetooth \
${sysconfdir}/bluetooth/hcid.conf \
${sysconfdir}/default \
${sysconfdir}/dbus-1 \
${base_sbindir}/hciattach \
"
FILES_bluez-audio = " \
${libdir}/bluetooth/plugins/libaudio.so \
${libdir}/gstreamer-0.10/*.so \
"
FILES_${PN}-dbg += " \
${libdir}/bluetooth/plugins/.debug \
${libdir}/gstreamer-0.10/.debug \
"
FILES_${PN}-dev += " \
${libdir}/bluetooth/plugins/*.la \
${libdir}/gstreamer-0.10/*.la \
"
|