From: Matt Ranostay Date: Wed, 30 Aug 2017 18:19:07 +0000 (+0300) Subject: navigation: add geoclue package X-Git-Tag: 4.99.1~21 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=e48cb247218a9274faa78c535c95d0e0dbaa4686;hp=efcc26fe2b1c0be45924c7434a7a95e311a34e05;p=AGL%2Fmeta-agl.git navigation: add geoclue package Add geoclue package to the packagegroup agl-ivi-navi-lbs forward port dependency fix to recipe, and add dbus policy to allow client access. Bug-AGL: SPEC-852 Change-Id: Ib4d5bf22bdfebd162355d3d91850c7ebb6cd3154 Signed-off-by: Matt Ranostay Reviewed-on: https://gerrit.automotivelinux.org/gerrit/10769 Tested-by: Jenkins Job builder account ci-image-build: Jenkins Job builder account Reviewed-by: Jan-Simon Moeller --- diff --git a/meta-agl/recipes-ivi/packagegroups/packagegroup-agl-ivi-navi-lbs.bb b/meta-agl/recipes-ivi/packagegroups/packagegroup-agl-ivi-navi-lbs.bb index b280b587e..b7f47eecc 100644 --- a/meta-agl/recipes-ivi/packagegroups/packagegroup-agl-ivi-navi-lbs.bb +++ b/meta-agl/recipes-ivi/packagegroups/packagegroup-agl-ivi-navi-lbs.bb @@ -10,4 +10,5 @@ PACKAGES = "\ RDEPENDS_${PN} += "\ gpsd \ + geoclue \ " diff --git a/meta-agl/recipes-navigation/geoclue/files/org.freedesktop.GeoClue2.Client.conf b/meta-agl/recipes-navigation/geoclue/files/org.freedesktop.GeoClue2.Client.conf new file mode 100644 index 000000000..a7486d055 --- /dev/null +++ b/meta-agl/recipes-navigation/geoclue/files/org.freedesktop.GeoClue2.Client.conf @@ -0,0 +1,8 @@ + + + + + + diff --git a/meta-agl/recipes-navigation/geoclue/geoclue_%.bbappend b/meta-agl/recipes-navigation/geoclue/geoclue_%.bbappend new file mode 100644 index 000000000..1025e0e79 --- /dev/null +++ b/meta-agl/recipes-navigation/geoclue/geoclue_%.bbappend @@ -0,0 +1,10 @@ +DEPENDS += "gobject-introspection-native" +inherit gobject-introspection + +FILESEXTRAPATHS_prepend := "${THISDIR}/files:" +SRC_URI_append = "file://org.freedesktop.GeoClue2.Client.conf" + +do_install_append() { + install -d ${D}/etc/dbus-1/system.d + install -m 0644 ${WORKDIR}/org.freedesktop.GeoClue2.Client.conf ${D}/etc/dbus-1/system.d/org.freedesktop.GeoClue2.Client.conf +}