diff options
| -rw-r--r-- | meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch | 30 | ||||
| -rw-r--r-- | meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb | 32 |
2 files changed, 62 insertions, 0 deletions
diff --git a/meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch b/meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch new file mode 100644 index 0000000000..70fe3f55a7 --- /dev/null +++ b/meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | Upstream-Status: Upstream-Status: Inappropriate [poky 9.0 has older libsoup] | ||
| 2 | |||
| 3 | Signed-off-by: Felipe F. Tonello <eu@felipetonello.com> | ||
| 4 | |||
| 5 | diff --git a/src/gclue-ipclient.c b/src/gclue-ipclient.c | ||
| 6 | index 09add30..1771d5c 100644 | ||
| 7 | --- a/src/gclue-ipclient.c | ||
| 8 | +++ b/src/gclue-ipclient.c | ||
| 9 | @@ -83,7 +83,7 @@ gclue_ipclient_init (GClueIpclient *ipclient) | ||
| 10 | { | ||
| 11 | ipclient->priv = G_TYPE_INSTANCE_GET_PRIVATE ((ipclient), GCLUE_TYPE_IPCLIENT, GClueIpclientPrivate); | ||
| 12 | |||
| 13 | - ipclient->priv->soup_session = soup_session_new (); | ||
| 14 | + ipclient->priv->soup_session = soup_session_sync_new (); | ||
| 15 | } | ||
| 16 | |||
| 17 | /** | ||
| 18 | diff --git a/src/geoip-server/geoip-update.c b/src/geoip-server/geoip-update.c | ||
| 19 | index 6cce7b2..ef672ba 100644 | ||
| 20 | --- a/src/geoip-server/geoip-update.c | ||
| 21 | +++ b/src/geoip-server/geoip-update.c | ||
| 22 | @@ -214,7 +214,7 @@ main (int argc, char **argv) | ||
| 23 | path = GEOIP_DATABASE_PATH; | ||
| 24 | } | ||
| 25 | |||
| 26 | - session = soup_session_new (); | ||
| 27 | + session = soup_session_sync_new (); | ||
| 28 | |||
| 29 | for (i = 0; i < G_N_ELEMENTS (db_info_map); i++) { | ||
| 30 | SoupMessage *msg = NULL; | ||
diff --git a/meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb b/meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb new file mode 100644 index 0000000000..4a387b5c15 --- /dev/null +++ b/meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | SUMMARY = "The Geolocation Service" | ||
| 2 | DESCRIPTION = "Geoclue is a D-Bus service that provides location information. \ | ||
| 3 | The primary goal of the Geoclue project is to make creating location-aware applications \ | ||
| 4 | as simple as possible, while the secondary goal is to ensure that no application \ | ||
| 5 | can access location information without explicit permission from user." | ||
| 6 | LICENSE = "GPLv2.0+" | ||
| 7 | SECTION = "console/network" | ||
| 8 | |||
| 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=8114b83a0435d8136b47bd70111ce5cd" | ||
| 10 | |||
| 11 | PR = "r0" | ||
| 12 | DEPENDS = "glib-2.0 dbus dbus-glib json-glib libsoup-2.4" | ||
| 13 | |||
| 14 | inherit autotools pkgconfig gtk-doc | ||
| 15 | |||
| 16 | SRC_URI = " \ | ||
| 17 | http://www.freedesktop.org/software/geoclue/releases/2.0/geoclue-${PV}.tar.xz \ | ||
| 18 | file://soup-session-fix.patch \ | ||
| 19 | " | ||
| 20 | |||
| 21 | SRC_URI[md5sum] = "401ff99d530b177c62afacef0a33efd9" | ||
| 22 | SRC_URI[sha256sum] = "4a82f184e55a163d86e0ad69bbe1bba9960bb5094220fe1f01350bceda8c67a1" | ||
| 23 | |||
| 24 | EXTRA_OECONF += " \ | ||
| 25 | --with-dbus-service-user=root \ | ||
| 26 | --with-dbus-sys-dir=${sysconfdir}/dbus-1/system.d \ | ||
| 27 | " | ||
| 28 | |||
| 29 | FILES_${PN} += " \ | ||
| 30 | ${datadir}/dbus-1/system-services/org.freedesktop.GeoClue2.service \ | ||
| 31 | ${datadir}/geoclue-2.0/geoclue-interface.xml \ | ||
| 32 | " | ||
