diff options
Diffstat (limited to 'meta-oe/recipes-navigation/gpsd/gpsd_git.bb')
| -rw-r--r-- | meta-oe/recipes-navigation/gpsd/gpsd_git.bb | 127 |
1 files changed, 0 insertions, 127 deletions
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_git.bb b/meta-oe/recipes-navigation/gpsd/gpsd_git.bb deleted file mode 100644 index 380f3ba718..0000000000 --- a/meta-oe/recipes-navigation/gpsd/gpsd_git.bb +++ /dev/null | |||
| @@ -1,127 +0,0 @@ | |||
| 1 | DESCRIPTION = "A TCP/IP Daemon simplifying the communication with GPS devices" | ||
| 2 | SECTION = "console/network" | ||
| 3 | LICENSE = "BSD" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d217a23f408e91c94359447735bc1800" | ||
| 5 | DEPENDS = "dbus dbus-glib ncurses python libusb1 chrpath-native" | ||
| 6 | PROVIDES = "virtual/gpsd" | ||
| 7 | |||
| 8 | PR = "r4" | ||
| 9 | |||
| 10 | SRCREV = "f8744f4af8cef211de698df5d8e6caddfe33f29d" | ||
| 11 | |||
| 12 | DEFAULT_PREFERENCE = "-1" | ||
| 13 | PV = "3.5+gitr${SRCPV}" | ||
| 14 | |||
| 15 | SRC_URI = "git://git.sv.gnu.org/gpsd.git;protocol=git;branch=master \ | ||
| 16 | file://0001-SConstruct-respect-sysroot-setting-when-prepending-L.patch \ | ||
| 17 | file://0002-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch \ | ||
| 18 | file://0003-Revert-The-strptime-prototype-is-not-provided-unless.patch \ | ||
| 19 | file://0004-SConstruct-remove-rpath.patch \ | ||
| 20 | file://0001-SConstruct-prefix-includepy-with-sysroot-and-drop-sy.patch \ | ||
| 21 | file://0001-SConstruct-disable-html-and-man-docs-building-becaus.patch \ | ||
| 22 | file://gpsd-default \ | ||
| 23 | file://gpsd \ | ||
| 24 | file://60-gpsd.rules \ | ||
| 25 | " | ||
| 26 | S = "${WORKDIR}/git" | ||
| 27 | |||
| 28 | inherit scons update-rc.d python-dir pythonnative | ||
| 29 | |||
| 30 | INITSCRIPT_NAME = "gpsd" | ||
| 31 | INITSCRIPT_PARAMS = "defaults 35" | ||
| 32 | |||
| 33 | SYSTEMD_OESCONS ??= "false" | ||
| 34 | |||
| 35 | export STAGING_INCDIR | ||
| 36 | export STAGING_LIBDIR | ||
| 37 | |||
| 38 | EXTRA_OESCONS = " \ | ||
| 39 | sysroot=${STAGING_DIR_TARGET} \ | ||
| 40 | libQgpsmm='false' \ | ||
| 41 | debug='true' \ | ||
| 42 | strip='false' \ | ||
| 43 | systemd='${SYSTEMD_OESCONS}' \ | ||
| 44 | " | ||
| 45 | # this cannot be used, because then chrpath is not found and only static lib is built | ||
| 46 | # target=${HOST_SYS} | ||
| 47 | |||
| 48 | do_compile_prepend() { | ||
| 49 | export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}" | ||
| 50 | export PKG_CONFIG="PKG_CONFIG_SYSROOT_DIR=\"${PKG_CONFIG_SYSROOT_DIR}\" pkg-config" | ||
| 51 | export STAGING_PREFIX="${STAGING_DIR_HOST}/${prefix}" | ||
| 52 | |||
| 53 | export BUILD_SYS="${BUILD_SYS}" | ||
| 54 | export HOST_SYS="${HOST_SYS}" | ||
| 55 | } | ||
| 56 | |||
| 57 | do_install() { | ||
| 58 | export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}" | ||
| 59 | export PKG_CONFIG="PKG_CONFIG_SYSROOT_DIR=\"${PKG_CONFIG_SYSROOT_DIR}\" pkg-config" | ||
| 60 | export STAGING_PREFIX="${STAGING_DIR_HOST}/${prefix}" | ||
| 61 | |||
| 62 | export BUILD_SYS="${BUILD_SYS}" | ||
| 63 | export HOST_SYS="${HOST_SYS}" | ||
| 64 | |||
| 65 | export DESTDIR="${D}" | ||
| 66 | # prefix is used for RPATH and DESTDIR/prefix for instalation | ||
| 67 | ${STAGING_BINDIR_NATIVE}/scons prefix=${prefix} install ${EXTRA_OESCONS}|| \ | ||
| 68 | bbfatal "scons install execution failed." | ||
| 69 | } | ||
| 70 | |||
| 71 | do_install_append() { | ||
| 72 | install -d ${D}/${sysconfdir}/init.d | ||
| 73 | install -m 0755 ${WORKDIR}/gpsd ${D}/${sysconfdir}/init.d/ | ||
| 74 | install -d ${D}/${sysconfdir}/default | ||
| 75 | install -m 0644 ${WORKDIR}/gpsd-default ${D}/${sysconfdir}/default/gpsd.default | ||
| 76 | |||
| 77 | #support for udev | ||
| 78 | install -d ${D}/${sysconfdir}/udev/rules.d | ||
| 79 | install -m 0644 ${WORKDIR}/60-gpsd.rules ${D}/${sysconfdir}/udev/rules.d | ||
| 80 | install -d ${D}${base_libdir}/udev/ | ||
| 81 | install -m 0755 ${S}/gpsd.hotplug ${D}${base_libdir}/udev/ | ||
| 82 | |||
| 83 | #support for python | ||
| 84 | install -d ${D}/${PYTHON_SITEPACKAGES_DIR}/gps | ||
| 85 | install -m 755 ${S}/gps/*.py ${D}/${PYTHON_SITEPACKAGES_DIR}/gps | ||
| 86 | } | ||
| 87 | |||
| 88 | pkg_postinst_${PN}-conf() { | ||
| 89 | update-alternatives --install ${sysconfdir}/default/gpsd gpsd-defaults ${sysconfdir}/default/gpsd.default 10 | ||
| 90 | } | ||
| 91 | |||
| 92 | pkg_postrm_${PN}-conf() { | ||
| 93 | update-alternatives --remove gpsd-defaults ${sysconfdir}/default/gpsd.default | ||
| 94 | } | ||
| 95 | |||
| 96 | PACKAGES =+ "libgps libgpsd python-pygps-dbg python-pygps gpsd-udev gpsd-conf gpsd-gpsctl gps-utils" | ||
| 97 | |||
| 98 | FILES_gpsd-dev += "${libdir}/pkgconfdir/libgpsd.pc ${libdir}/pkgconfdir/libgps.pc" | ||
| 99 | |||
| 100 | FILES_python-pygps-dbg += " ${libdir}/python*/site-packages/gps/.debug" | ||
| 101 | |||
| 102 | RDEPENDS_${PN} = "gpsd-gpsctl" | ||
| 103 | RRECOMMENDS_${PN} = "gpsd-conf gpsd-udev" | ||
| 104 | |||
| 105 | DESCRIPTION_gpsd-udev = "udev relevant files to use gpsd hotplugging" | ||
| 106 | FILES_gpsd-udev = "${base_libdir}/udev ${sysconfdir}/udev/*" | ||
| 107 | RDEPENDS_gpsd-udev += "udev gpsd-conf" | ||
| 108 | |||
| 109 | DESCRIPTION_libgpsd = "C service library used for communicating with gpsd" | ||
| 110 | FILES_libgpsd = "${libdir}/libgpsd.so.*" | ||
| 111 | |||
| 112 | DESCRIPTION_libgps = "C service library used for communicating with gpsd" | ||
| 113 | FILES_libgps = "${libdir}/libgps.so.*" | ||
| 114 | |||
| 115 | DESCRIPTION_gpsd-conf = "gpsd configuration files and init scripts" | ||
| 116 | FILES_gpsd-conf = "${sysconfdir}" | ||
| 117 | |||
| 118 | DESCRIPTION_gpsd-gpsctl = "Tool for tweaking GPS modes" | ||
| 119 | FILES_gpsd-gpsctl = "${bindir}/gpsctl" | ||
| 120 | |||
| 121 | DESCRIPTION_gps-utils = "Utils used for simulating, monitoring,... a GPS" | ||
| 122 | FILES_gps-utils = "${bindir}/*" | ||
| 123 | RDEPENDS_gps-utils = "python-pygps" | ||
| 124 | |||
| 125 | DESCRIPTION_python-pygps = "Python bindings to gpsd" | ||
| 126 | FILES_python-pygps = "${PYTHON_SITEPACKAGES_DIR}/*" | ||
| 127 | RDEPENDS_python-pygps = "python-core python-curses gpsd python-json" | ||
