Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "A daemon for managing internet connections within embedded devices" |
| 2 | DESCRIPTION = "The ConnMan project provides a daemon for managing \ |
| 3 | internet connections within embedded devices running the Linux \ |
| 4 | operating system. The Connection Manager is designed to be slim and \ |
| 5 | to use as few resources as possible, so it can be easily integrated. \ |
| 6 | It is a fully modular system that can be extended, through plug-ins, \ |
| 7 | to support all kinds of wired or wireless technologies. Also, \ |
| 8 | configuration methods, like DHCP and domain name resolving, are \ |
| 9 | implemented using plug-ins." |
| 10 | HOMEPAGE = "http://connman.net/" |
| 11 | BUGTRACKER = "https://01.org/jira/browse/CM" |
| 12 | LICENSE = "GPLv2" |
| 13 | LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \ |
| 14 | file://src/main.c;beginline=1;endline=20;md5=486a279a6ab0c8d152bcda3a5b5edc36" |
| 15 | |
| 16 | inherit autotools pkgconfig systemd update-rc.d bluetooth |
| 17 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 18 | DEPENDS = "dbus glib-2.0 ppp iptables readline" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 19 | |
| 20 | INC_PR = "r20" |
| 21 | |
| 22 | EXTRA_OECONF += "\ |
| 23 | ac_cv_path_WPASUPPLICANT=${sbindir}/wpa_supplicant \ |
| 24 | ac_cv_path_PPPD=${sbindir}/pppd \ |
| 25 | --enable-debug \ |
| 26 | --enable-loopback \ |
| 27 | --enable-ethernet \ |
| 28 | --enable-tools \ |
| 29 | --enable-test \ |
| 30 | --disable-polkit \ |
| 31 | --enable-client \ |
| 32 | " |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 33 | CFLAGS += "-D_GNU_SOURCE" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 34 | |
| 35 | PACKAGECONFIG ??= "wispr \ |
| 36 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd','systemd', '', d)} \ |
| 37 | ${@bb.utils.contains('DISTRO_FEATURES', 'wifi','wifi', '', d)} \ |
| 38 | ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} \ |
| 39 | ${@bb.utils.contains('DISTRO_FEATURES', '3g','3g', '', d)} \ |
| 40 | " |
| 41 | |
| 42 | # If you want ConnMan to support VPN, add following statement into |
| 43 | # local.conf or distro config |
| 44 | # PACKAGECONFIG_append_pn-connman = " openvpn vpnc l2tp pptp" |
| 45 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 46 | PACKAGECONFIG[systemd] = "--with-systemdunitdir=${systemd_unitdir}/system/ --with-tmpfilesdir=${sysconfdir}/tmpfiles.d/,--with-systemdunitdir='' --with-tmpfilesdir=''" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 47 | PACKAGECONFIG[wifi] = "--enable-wifi, --disable-wifi, wpa-supplicant, wpa-supplicant" |
| 48 | PACKAGECONFIG[bluez] = "--enable-bluetooth, --disable-bluetooth, ${BLUEZ}, ${BLUEZ}" |
| 49 | PACKAGECONFIG[3g] = "--enable-ofono, --disable-ofono, ofono, ofono" |
| 50 | PACKAGECONFIG[tist] = "--enable-tist,--disable-tist," |
| 51 | PACKAGECONFIG[openvpn] = "--enable-openvpn --with-openvpn=${sbindir}/openvpn,--disable-openvpn,,openvpn" |
| 52 | PACKAGECONFIG[vpnc] = "--enable-vpnc --with-vpnc=${sbindir}/vpnc,--disable-vpnc,,vpnc" |
| 53 | PACKAGECONFIG[l2tp] = "--enable-l2tp --with-l2tp=${sbindir}/xl2tpd,--disable-l2tp,,xl2tpd" |
| 54 | PACKAGECONFIG[pptp] = "--enable-pptp --with-pptp=${sbindir}/pptp,--disable-pptp,,pptp-linux" |
| 55 | # WISPr support for logging into hotspots, requires TLS |
| 56 | PACKAGECONFIG[wispr] = "--enable-wispr,--disable-wispr,gnutls," |
| 57 | |
| 58 | INITSCRIPT_NAME = "connman" |
| 59 | INITSCRIPT_PARAMS = "start 05 5 2 3 . stop 22 0 1 6 ." |
| 60 | |
| 61 | python __anonymous () { |
| 62 | systemd_packages = "${PN}" |
| 63 | pkgconfig = d.getVar('PACKAGECONFIG', True) |
| 64 | if ('openvpn' or 'vpnc' or 'l2tp' or 'pptp') in pkgconfig.split(): |
| 65 | systemd_packages += " ${PN}-vpn" |
| 66 | d.setVar('SYSTEMD_PACKAGES', systemd_packages) |
| 67 | } |
| 68 | |
| 69 | SYSTEMD_SERVICE_${PN} = "connman.service" |
| 70 | SYSTEMD_SERVICE_${PN}-vpn = "connman-vpn.service" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 71 | SYSTEMD_SERVICE_${PN}-wait-online = "connman-wait-online.service" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 72 | |
| 73 | do_install_append() { |
| 74 | if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)}; then |
| 75 | install -d ${D}${sysconfdir}/init.d |
| 76 | install -m 0755 ${WORKDIR}/connman ${D}${sysconfdir}/init.d/connman |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 77 | sed -i s%@DATADIR@%${datadir}% ${D}${sysconfdir}/init.d/connman |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 78 | fi |
| 79 | |
| 80 | install -d ${D}${bindir} |
| 81 | install -m 0755 ${B}/tools/*-test ${D}${bindir} |
| 82 | if [ -e ${B}/tools/wispr ]; then |
| 83 | install -m 0755 ${B}/tools/wispr ${D}${bindir} |
| 84 | fi |
| 85 | install -m 0755 ${B}/client/connmanctl ${D}${bindir} |
| 86 | |
| 87 | # We don't need to package an empty directory |
| 88 | rmdir --ignore-fail-on-non-empty ${D}${libdir}/connman/scripts |
| 89 | |
| 90 | # Automake 1.12 won't install empty directories, but we need the |
| 91 | # plugins directory to be present for ownership |
| 92 | mkdir -p ${D}${libdir}/connman/plugins |
| 93 | } |
| 94 | |
| 95 | # These used to be plugins, but now they are core |
| 96 | RPROVIDES_${PN} = "\ |
| 97 | connman-plugin-loopback \ |
| 98 | connman-plugin-ethernet \ |
| 99 | ${@bb.utils.contains('PACKAGECONFIG', 'bluetooth','connman-plugin-bluetooth', '', d)} \ |
| 100 | ${@bb.utils.contains('PACKAGECONFIG', 'wifi','connman-plugin-wifi', '', d)} \ |
| 101 | ${@bb.utils.contains('PACKAGECONFIG', '3g','connman-plugin-ofono', '', d)} \ |
| 102 | " |
| 103 | |
| 104 | RDEPENDS_${PN} = "\ |
| 105 | dbus \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 106 | " |
| 107 | |
| 108 | PACKAGES_DYNAMIC += "^${PN}-plugin-.*" |
| 109 | |
| 110 | def add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, add_insane_skip): |
| 111 | plugintype = pkg.split( '-' )[-1] |
| 112 | if plugintype in depmap: |
| 113 | rdepends = map(lambda x: multilib_prefix + x, \ |
| 114 | depmap[plugintype].split()) |
| 115 | d.setVar("RDEPENDS_%s" % pkg, " ".join(rdepends)) |
| 116 | if add_insane_skip: |
| 117 | d.appendVar("INSANE_SKIP_%s" % pkg, "dev-so") |
| 118 | |
| 119 | python populate_packages_prepend() { |
| 120 | depmap = dict(pppd="ppp") |
| 121 | multilib_prefix = (d.getVar("MLPREFIX", True) or "") |
| 122 | |
| 123 | hook = lambda file,pkg,x,y,z: \ |
| 124 | add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, False) |
| 125 | plugin_dir = d.expand('${libdir}/connman/plugins/') |
| 126 | plugin_name = d.expand('${PN}-plugin-%s') |
| 127 | do_split_packages(d, plugin_dir, '^(.*).so$', plugin_name, \ |
| 128 | '${PN} plugin for %s', extra_depends='', hook=hook, prepend=True ) |
| 129 | |
| 130 | hook = lambda file,pkg,x,y,z: \ |
| 131 | add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, True) |
| 132 | plugin_dir = d.expand('${libdir}/connman/plugins-vpn/') |
| 133 | plugin_name = d.expand('${PN}-plugin-vpn-%s') |
| 134 | do_split_packages(d, plugin_dir, '^(.*).so$', plugin_name, \ |
| 135 | '${PN} VPN plugin for %s', extra_depends='', hook=hook, prepend=True ) |
| 136 | } |
| 137 | |
| 138 | PACKAGES =+ "${PN}-tools ${PN}-tests ${PN}-client" |
| 139 | |
| 140 | FILES_${PN}-tools = "${bindir}/wispr" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 141 | RDEPENDS_${PN}-tools ="${PN}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 142 | |
| 143 | FILES_${PN}-tests = "${bindir}/*-test ${libdir}/${BPN}/test/*" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 144 | RDEPENDS_${PN}-tests = "python-dbus python-pygobject python-textutils python-subprocess python-fcntl python-netclient \ |
| 145 | ${PN} \ |
| 146 | " |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 147 | |
| 148 | FILES_${PN}-client = "${bindir}/connmanctl" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 149 | RDEPENDS_${PN}-client ="${PN}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 150 | |
| 151 | FILES_${PN} = "${bindir}/* ${sbindir}/* ${libexecdir}/* ${libdir}/lib*.so.* \ |
| 152 | ${libdir}/connman/plugins \ |
| 153 | ${sysconfdir} ${sharedstatedir} ${localstatedir} \ |
| 154 | ${base_bindir}/* ${base_sbindir}/* ${base_libdir}/*.so* ${datadir}/${PN} \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 155 | ${datadir}/dbus-1/system-services/* \ |
| 156 | ${sysconfdir}/tmpfiles.d/connman_resolvconf.conf" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 157 | |
| 158 | FILES_${PN}-dev += "${libdir}/connman/*/*.la" |
| 159 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 160 | PACKAGES =+ "${PN}-vpn ${PN}-wait-online" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 161 | |
| 162 | SUMMARY_${PN}-vpn = "A daemon for managing VPN connections within embedded devices" |
| 163 | DESCRIPTION_${PN}-vpn = "The ConnMan VPN provides a daemon for \ |
| 164 | managing VPN connections within embedded devices running the Linux \ |
| 165 | operating system. The connman-vpnd handles all the VPN connections \ |
| 166 | and starts/stops VPN client processes when necessary. The connman-vpnd \ |
| 167 | provides a DBus API for managing VPN connections. All the different \ |
| 168 | VPN technogies are implemented using plug-ins." |
| 169 | FILES_${PN}-vpn += "${sbindir}/connman-vpnd \ |
| 170 | ${sysconfdir}/dbus-1/system.d/connman-vpn-dbus.conf \ |
| 171 | ${datadir}/dbus-1/system-services/net.connman.vpn.service \ |
| 172 | ${systemd_unitdir}/system/connman-vpn.service" |
| 173 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 174 | SUMMARY_${PN}-wait-online = "A program that will return once ConnMan has connected to a network" |
| 175 | DESCRIPTION_${PN}-wait-online = "A service that can be enabled so that \ |
| 176 | the system waits until a network connection is established." |
| 177 | FILES_${PN}-wait-online += "${sbindir}/connmand-wait-online \ |
| 178 | ${systemd_unitdir}/system/connman-wait-online.service" |
| 179 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 180 | SUMMARY_${PN}-plugin-vpn-openvpn = "An OpenVPN plugin for ConnMan VPN" |
| 181 | DESCRIPTION_${PN}-plugin-vpn-openvpn = "The ConnMan OpenVPN plugin uses openvpn client \ |
| 182 | to create a VPN connection to OpenVPN server." |
| 183 | FILES_${PN}-plugin-vpn-openvpn += "${libdir}/connman/scripts/openvpn-script \ |
| 184 | ${libdir}/connman/plugins-vpn/openvpn.so" |
| 185 | RDEPENDS_${PN}-plugin-vpn-openvpn += "${PN}-vpn" |
| 186 | RRECOMMENDS_${PN} += "${@bb.utils.contains('PACKAGECONFIG','openvpn','${PN}-plugin-vpn-openvpn', '', d)}" |
| 187 | |
| 188 | SUMMARY_${PN}-plugin-vpn-vpnc = "A vpnc plugin for ConnMan VPN" |
| 189 | DESCRIPTION_${PN}-plugin-vpn-vpnc = "The ConnMan vpnc plugin uses vpnc client \ |
| 190 | to create a VPN connection to Cisco3000 VPN Concentrator." |
| 191 | FILES_${PN}-plugin-vpn-vpnc += "${libdir}/connman/scripts/openconnect-script \ |
| 192 | ${libdir}/connman/plugins-vpn/vpnc.so" |
| 193 | RDEPENDS_${PN}-plugin-vpn-vpnc += "${PN}-vpn" |
| 194 | RRECOMMENDS_${PN} += "${@bb.utils.contains('PACKAGECONFIG','vpnc','${PN}-plugin-vpn-vpnc', '', d)}" |
| 195 | |
| 196 | SUMMARY_${PN}-plugin-vpn-l2tp = "A L2TP plugin for ConnMan VPN" |
| 197 | DESCRIPTION_${PN}-plugin-vpn-l2tp = "The ConnMan L2TP plugin uses xl2tpd daemon \ |
| 198 | to create a VPN connection to L2TP server." |
| 199 | FILES_${PN}-plugin-vpn-l2tp += "${libdir}/connman/scripts/libppp-plugin.so* \ |
| 200 | ${libdir}/connman/plugins-vpn/l2tp.so" |
| 201 | RDEPENDS_${PN}-plugin-vpn-l2tp += "${PN}-vpn" |
| 202 | RRECOMMENDS_${PN} += "${@bb.utils.contains('PACKAGECONFIG','l2tp','${PN}-plugin-vpn-l2tp', '', d)}" |
| 203 | |
| 204 | SUMMARY_${PN}-plugin-vpn-pptp = "A PPTP plugin for ConnMan VPN" |
| 205 | DESCRIPTION_${PN}-plugin-vpn-pptp = "The ConnMan PPTP plugin uses pptp-linux client \ |
| 206 | to create a VPN connection to PPTP server." |
| 207 | FILES_${PN}-plugin-vpn-pptp += "${libdir}/connman/scripts/libppp-plugin.so* \ |
| 208 | ${libdir}/connman/plugins-vpn/pptp.so" |
| 209 | RDEPENDS_${PN}-plugin-vpn-pptp += "${PN}-vpn" |
| 210 | RRECOMMENDS_${PN} += "${@bb.utils.contains('PACKAGECONFIG','pptp','${PN}-plugin-vpn-pptp', '', d)}" |