ofono.inc 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. HOMEPAGE = "http://www.ofono.org"
  2. SUMMARY = "open source telephony"
  3. DESCRIPTION = "oFono is a stack for mobile telephony devices on Linux. oFono supports speaking to telephony devices through specific drivers, or with generic AT commands."
  4. LICENSE = "GPLv2"
  5. LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \
  6. file://src/ofono.h;beginline=1;endline=20;md5=3ce17d5978ef3445def265b98899c2ee"
  7. inherit autotools pkgconfig update-rc.d systemd gobject-introspection-data
  8. DEPENDS = "dbus glib-2.0 udev mobile-broadband-provider-info ell"
  9. INITSCRIPT_NAME = "ofono"
  10. INITSCRIPT_PARAMS = "defaults 22"
  11. PACKAGECONFIG ??= "\
  12. ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \
  13. ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} \
  14. "
  15. PACKAGECONFIG[systemd] = "--with-systemdunitdir=${systemd_unitdir}/system/,--with-systemdunitdir="
  16. PACKAGECONFIG[bluez] = "--enable-bluetooth, --disable-bluetooth, bluez5"
  17. EXTRA_OECONF += "--enable-test --enable-external-ell"
  18. SYSTEMD_SERVICE_${PN} = "ofono.service"
  19. do_install_append() {
  20. install -d ${D}${sysconfdir}/init.d/
  21. install -m 0755 ${WORKDIR}/ofono ${D}${sysconfdir}/init.d/ofono
  22. }
  23. PACKAGES =+ "${PN}-tests"
  24. RDEPENDS_${PN} += "dbus"
  25. RRECOMMENDS_${PN} += "kernel-module-tun mobile-broadband-provider-info"
  26. FILES_${PN} += "${systemd_unitdir}"
  27. FILES_${PN}-tests = "${libdir}/${BPN}/test"
  28. RDEPENDS_${PN}-tests = "python3 python3-dbus"
  29. RDEPENDS_${PN}-tests += "${@bb.utils.contains('GI_DATA_ENABLED', 'True', 'python3-pygobject', '', d)}"