Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "Linux Bluetooth Stack Userland V5" |
| 2 | DESCRIPTION = "Linux Bluetooth stack V5 userland components. These include a system configurations, daemons, tools and system libraries." |
| 3 | HOMEPAGE = "http://www.bluez.org" |
| 4 | SECTION = "libs" |
| 5 | LICENSE = "GPLv2+ & LGPLv2.1+" |
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \ |
| 7 | file://COPYING.LIB;md5=fb504b67c50331fc78734fed90fb0e09 \ |
| 8 | file://src/main.c;beginline=1;endline=24;md5=9bc54b93cd7e17bf03f52513f39f926e" |
| 9 | DEPENDS = "udev libusb dbus-glib glib-2.0 libcheck readline" |
| 10 | PROVIDES += "bluez-hcidump" |
| 11 | RPROVIDES_${PN} += "bluez-hcidump" |
| 12 | |
| 13 | RCONFLICTS_${PN} = "bluez4" |
| 14 | |
| 15 | PACKAGECONFIG ??= "obex-profiles" |
| 16 | PACKAGECONFIG[obex-profiles] = "--enable-obex,--disable-obex,libical" |
| 17 | PACKAGECONFIG[experimental] = "--enable-experimental,--disable-experimental," |
| 18 | |
| 19 | SRC_URI = "\ |
| 20 | ${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 21 | file://init \ |
| 22 | file://run-ptest \ |
| 23 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '', 'file://0001-Allow-using-obexd-without-systemd-in-the-user-sessio.patch', d)} \ |
| 24 | file://0001-tests-add-a-target-for-building-tests-without-runnin.patch \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 25 | " |
| 26 | S = "${WORKDIR}/bluez-${PV}" |
| 27 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 28 | inherit autotools-brokensep pkgconfig systemd update-rc.d distro_features_check ptest |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 29 | |
| 30 | EXTRA_OECONF = "\ |
| 31 | --enable-tools \ |
| 32 | --disable-cups \ |
| 33 | --enable-test \ |
| 34 | --enable-datafiles \ |
| 35 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '--enable-systemd', '--disable-systemd', d)} \ |
| 36 | --enable-library \ |
| 37 | " |
| 38 | |
| 39 | # bluez5 builds a large number of useful utilities but does not |
| 40 | # install them. Specify which ones we want put into ${PN}-noinst-tools. |
| 41 | NOINST_TOOLS_READLINE ??= "" |
| 42 | NOINST_TOOLS_EXPERIMENTAL ??= "" |
| 43 | NOINST_TOOLS = " \ |
| 44 | ${NOINST_TOOLS_READLINE} \ |
| 45 | ${@bb.utils.contains('PACKAGECONFIG', 'experimental', '${NOINST_TOOLS_EXPERIMENTAL}', '', d)} \ |
| 46 | " |
| 47 | |
| 48 | do_install_append() { |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 49 | install -d ${D}${INIT_D_DIR} |
| 50 | install -m 0755 ${WORKDIR}/init ${D}${INIT_D_DIR}/bluetooth |
| 51 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 52 | install -d ${D}${sysconfdir}/bluetooth/ |
| 53 | if [ -f ${S}/profiles/audio/audio.conf ]; then |
| 54 | install -m 0644 ${S}/profiles/audio/audio.conf ${D}/${sysconfdir}/bluetooth/ |
| 55 | fi |
| 56 | if [ -f ${S}/profiles/network/network.conf ]; then |
| 57 | install -m 0644 ${S}/profiles/network/network.conf ${D}/${sysconfdir}/bluetooth/ |
| 58 | fi |
| 59 | if [ -f ${S}/profiles/input/input.conf ]; then |
| 60 | install -m 0644 ${S}/profiles/input/input.conf ${D}/${sysconfdir}/bluetooth/ |
| 61 | fi |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 62 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 63 | # Install desired tools that upstream leaves in build area |
| 64 | for f in ${NOINST_TOOLS} ; do |
| 65 | install -m 755 ${B}/$f ${D}/${bindir} |
| 66 | done |
| 67 | } |
| 68 | |
| 69 | ALLOW_EMPTY_libasound-module-bluez = "1" |
| 70 | PACKAGES =+ "libasound-module-bluez ${PN}-testtools ${PN}-obex ${PN}-noinst-tools" |
| 71 | |
| 72 | FILES_libasound-module-bluez = "${libdir}/alsa-lib/lib*.so ${datadir}/alsa" |
| 73 | FILES_${PN} += "${libdir}/bluetooth/plugins/*.so ${base_libdir}/udev/ ${nonarch_base_libdir}/udev/ ${systemd_unitdir}/ ${datadir}/dbus-1" |
| 74 | FILES_${PN}-dev += "\ |
| 75 | ${libdir}/bluetooth/plugins/*.la \ |
| 76 | ${libdir}/alsa-lib/*.la \ |
| 77 | " |
| 78 | |
| 79 | FILES_${PN}-obex = "${libexecdir}/bluetooth/obexd \ |
| 80 | ${exec_prefix}/lib/systemd/user/obex.service \ |
| 81 | ${datadir}/dbus-1/services/org.bluez.obex.service \ |
| 82 | " |
| 83 | SYSTEMD_SERVICE_${PN}-obex = "obex.service" |
| 84 | |
| 85 | FILES_${PN}-testtools = "${libdir}/bluez/test/*" |
| 86 | |
| 87 | def get_noinst_tools_paths (d, bb, tools): |
| 88 | s = list() |
| 89 | bindir = d.getVar("bindir", True) |
| 90 | for bdp in tools.split(): |
| 91 | f = os.path.basename(bdp) |
| 92 | s.append("%s/%s" % (bindir, f)) |
| 93 | return "\n".join(s) |
| 94 | |
| 95 | FILES_${PN}-noinst-tools = "${@get_noinst_tools_paths(d, bb, d.getVar('NOINST_TOOLS', True))}" |
| 96 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 97 | RDEPENDS_${PN}-testtools += "python python-dbus python-pygobject" |
| 98 | |
| 99 | SYSTEMD_SERVICE_${PN} = "bluetooth.service" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 100 | INITSCRIPT_PACKAGES = "${PN}" |
| 101 | INITSCRIPT_NAME_${PN} = "bluetooth" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 102 | |
| 103 | EXCLUDE_FROM_WORLD = "1" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 104 | |
| 105 | do_compile_ptest() { |
| 106 | oe_runmake buildtests |
| 107 | } |
| 108 | |
| 109 | do_install_ptest() { |
| 110 | cp -r ${B}/unit/ ${D}${PTEST_PATH} |
| 111 | rm ${D}${PTEST_PATH}/unit/*.c ${D}${PTEST_PATH}/unit/*.o |
| 112 | } |