summaryrefslogtreecommitdiffstats
path: root/rules/bluez.make
blob: 9bfd4df7c6fe66c4c6ce39f5fe27cd507d7f6a26 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# -*-makefile-*-
#
# Copyright (C) 2010 by Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
PACKAGES-$(PTXCONF_BLUEZ) += bluez

#
# Paths and names
#
BLUEZ_VERSION	:= 4.96
BLUEZ_MD5	:= 1d363ed751f89133f953182e843b2a19 296111afac49e3f9035085ac14daf518
BLUEZ		:= bluez-$(BLUEZ_VERSION)
BLUEZ_SUFFIX	:= tar.gz
BLUEZ_URL	:= $(call ptx/mirror, KERNEL, bluetooth/$(BLUEZ).$(BLUEZ_SUFFIX))
BLUEZ_SOURCE	:= $(SRCDIR)/$(BLUEZ).$(BLUEZ_SUFFIX)
BLUEZ_DIR	:= $(BUILDDIR)/$(BLUEZ)
BLUEZ_LICENSE	:= GPLv2+ LGPLv2.1+

# the tools don't depend on the generated headers
BLUEZ_MAKE_PAR	:= NO

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# autoconf
#
BLUEZ_CONF_TOOL	:= autoconf
BLUEZ_CONF_OPT	:= $(CROSS_AUTOCONF_USR) \
	--enable-optimization \
	--disable-fortify \
	--disable-pie \
	--enable-network \
	--disable-sap \
	--disable-proximity \
	--enable-serial \
	--enable-input \
	--enable-audio \
	--enable-service \
	--disable-health \
	--disable-pnat \
	--disable-gatt-example \
	--$(call ptx/endis, PTXCONF_BLUEZ_GSTREAMER)-gstreamer \
	--$(call ptx/endis, PTXCONF_BLUEZ_ALSA)-alsa \
	--$(call ptx/endis, PTXCONF_BLUEZ_USB)-usb \
	--disable-tracer \
	--enable-tools \
	--enable-bccmd \
	--disable-pcmcia \
	--disable-hid2hci \
	--disable-dfutool \
	--disable-hidd \
	--disable-pand \
	--disable-dund \
	--disable-cups \
	--enable-test \
	--enable-datafiles \
	--enable-debug \
	--disable-maemo6 \
	--disable-dbusoob \
	--disable-wiimote \
	--disable-hal \
	--disable-thermometer \
	--disable-capng \
	--with-systemdunitdir=/lib/systemd/system

# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------

$(STATEDIR)/bluez.targetinstall:
	@$(call targetinfo)

	@$(call install_init,  bluez)
	@$(call install_fixup, bluez,PRIORITY,optional)
	@$(call install_fixup, bluez,SECTION,base)
	@$(call install_fixup, bluez,AUTHOR,"Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>")
	@$(call install_fixup, bluez,DESCRIPTION,missing)

	@$(call install_lib, bluez, 0, 0, 0644, libbluetooth)

ifdef PTXCONF_BLUEZ_ALSA
	@$(foreach alsamod, ctl_bluetooth pcm_bluetooth, \
		$(call install_lib, bluez, 0, 0, 0644, \
			alsa-lib/libasound_module_$(alsamod));)
endif

ifdef PTXCONF_BLUEZ_GSTREAMER
	@$(call install_lib, bluez, 0, 0, 0644, gstreamer-0.10/libgstbluetooth)
endif

ifdef PTXCONF_BLUEZ_UTILS
	@$(foreach binprogram, ciptool l2ping hcitool rctest rfcomm sdptool, \
		$(call install_copy, bluez, 0, 0, 0755, -, \
			/usr/bin/$(binprogram));)

	@$(foreach sbinprogram, bccmd hciattach hciconfig, \
		$(call install_copy, bluez, 0, 0, 0755, -, \
			/usr/sbin/$(sbinprogram));)
endif

ifdef PTXCONF_BLUEZ_INSTALL_TESTSCRIPTS
	@$(foreach testprog, simple-agent simple-service test-telephony \
			test-adapter test-audio test-device test-discovery \
			test-input test-manager test-network test-serial \
			test-service test-telephony test-textfile \
			monitor-bluetooth, \
		$(call install_copy, bluez, 0, 0, 0755, \
			$(BLUEZ_DIR)/test/$(testprog), \
			/usr/share/doc/bluez/examples/$(testprog));)
endif

	@$(call install_copy, bluez, 0, 0, 0755, -, /usr/sbin/bluetoothd)

	@$(call install_copy, bluez, 0, 0, 0644, -, \
		/etc/dbus-1/system.d/bluetooth.conf)
	@$(call install_tree, bluez, 0, 0, -, /lib/udev/rules.d/)

ifdef PTXCONF_BLUEZ_SYSTEMD_UNIT
	@$(call install_copy, bluez, 0, 0, 0644, -, \
		/lib/systemd/system/bluetooth.service)
	@$(call install_link, bluez, ../bluetooth.service, \
		/lib/systemd/system/multi-user.target.wants/bluetooth.service)
endif

	@$(call install_finish, bluez)
	@$(call touch)

# vim: syntax=make