diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2012-08-07 11:08:50 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2012-08-20 10:02:09 +0200 |
commit | 334b5198e12e95f69af4772c0c2f8e512d63451b (patch) | |
tree | 9e49c0acbb06b0c5ea5dc4cd17fe366f8e1204fe /meta-oe/recipes-navigation | |
parent | 5fd2b71ccab54b0717ebed21869754de16bd3608 (diff) | |
download | meta-openembedded-334b5198e12e95f69af4772c0c2f8e512d63451b.tar.gz |
gpsd: update to 3.7, drop older 3.5 and git recipe
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-navigation')
9 files changed, 44 insertions, 246 deletions
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd/0001-SConstruct-disable-html-and-man-docs-building-becaus.patch b/meta-oe/recipes-navigation/gpsd/gpsd-3.7/0001-SConstruct-disable-html-and-man-docs-building-becaus.patch index 9db24326c..9db24326c 100644 --- a/meta-oe/recipes-navigation/gpsd/gpsd/0001-SConstruct-disable-html-and-man-docs-building-becaus.patch +++ b/meta-oe/recipes-navigation/gpsd/gpsd-3.7/0001-SConstruct-disable-html-and-man-docs-building-becaus.patch | |||
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd/0001-SConstruct-prefix-includepy-with-sysroot-and-drop-sy.patch b/meta-oe/recipes-navigation/gpsd/gpsd-3.7/0001-SConstruct-prefix-includepy-with-sysroot-and-drop-sy.patch index c6eb03bf2..c6eb03bf2 100644 --- a/meta-oe/recipes-navigation/gpsd/gpsd/0001-SConstruct-prefix-includepy-with-sysroot-and-drop-sy.patch +++ b/meta-oe/recipes-navigation/gpsd/gpsd-3.7/0001-SConstruct-prefix-includepy-with-sysroot-and-drop-sy.patch | |||
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd-3.7/0002-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch b/meta-oe/recipes-navigation/gpsd/gpsd-3.7/0002-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch new file mode 100644 index 000000000..40baa0194 --- /dev/null +++ b/meta-oe/recipes-navigation/gpsd/gpsd-3.7/0002-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From f5f262be8ae54bd0c0f52802f2007ec89163756f Mon Sep 17 00:00:00 2001 | ||
2 | From: Martin Jansa <Martin.Jansa@gmail.com> | ||
3 | Date: Tue, 24 Apr 2012 11:52:35 +0200 | ||
4 | Subject: [PATCH 1/2] SConstruct: respect sysroot also in SPLINTOPTS | ||
5 | |||
6 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
7 | Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | ||
8 | --- | ||
9 | SConstruct | 5 ++++- | ||
10 | 1 files changed, 4 insertions(+), 1 deletions(-) | ||
11 | |||
12 | diff --git a/SConstruct b/SConstruct | ||
13 | index a25e88a..a1bddb9 100644 | ||
14 | --- a/SConstruct | ||
15 | +++ b/SConstruct | ||
16 | @@ -1277,7 +1277,10 @@ def Utility(target, source, action): | ||
17 | |||
18 | # Report splint warnings | ||
19 | # Note: test_bits.c is unsplintable because of the PRI64 macros. | ||
20 | -splintopts = "-I/usr/include/libusb-1.0 +quiet" | ||
21 | +if not env['sysroot']: | ||
22 | + splintopts = "-I/usr/include/libusb-1.0 +quiet" | ||
23 | +else: | ||
24 | + splintopts = "-I%s/usr/include/libusb-1.0 +quiet" % env['sysroot'] | ||
25 | # splint does not know about multi-arch, work around that | ||
26 | ma_status, ma = _getstatusoutput('dpkg-architecture -qDEB_HOST_MULTIARCH') | ||
27 | if ma_status == 0: | ||
28 | -- | ||
29 | 1.7.5.4 | ||
30 | |||
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd/0004-SConstruct-remove-rpath.patch b/meta-oe/recipes-navigation/gpsd/gpsd-3.7/0004-SConstruct-remove-rpath.patch index add624b82..83b98bb5e 100644 --- a/meta-oe/recipes-navigation/gpsd/gpsd/0004-SConstruct-remove-rpath.patch +++ b/meta-oe/recipes-navigation/gpsd/gpsd-3.7/0004-SConstruct-remove-rpath.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From b59f8c5bf8519a5ca114696e79b8690ebb68e0d3 Mon Sep 17 00:00:00 2001 | 1 | From 7d736bbd517c12d19d7b85a5b0db84732b2f86da Mon Sep 17 00:00:00 2001 |
2 | From: Martin Jansa <Martin.Jansa@gmail.com> | 2 | From: Martin Jansa <Martin.Jansa@gmail.com> |
3 | Date: Tue, 24 Apr 2012 16:24:35 +0200 | 3 | Date: Tue, 24 Apr 2012 16:24:35 +0200 |
4 | Subject: [PATCH 4/4] SConstruct: remove rpath | 4 | Subject: [PATCH 2/2] SConstruct: remove rpath |
5 | 5 | ||
6 | * even with correct prefix (without DESTDIR) included it's redundant | 6 | * even with correct prefix (without DESTDIR) included it's redundant |
7 | WARNING: QA Issue: libgps: | 7 | WARNING: QA Issue: libgps: |
@@ -14,28 +14,29 @@ Subject: [PATCH 4/4] SConstruct: remove rpath | |||
14 | /OE/shr-core/tmp-eglibc/work/armv4t-oe-linux-gnueabi/gpsd/gpsd-3.5-r0/packages-split/libgps/usr/lib/libgps.so.20.0 | 14 | /OE/shr-core/tmp-eglibc/work/armv4t-oe-linux-gnueabi/gpsd/gpsd-3.5-r0/packages-split/libgps/usr/lib/libgps.so.20.0 |
15 | 15 | ||
16 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | 16 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> |
17 | Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | ||
17 | --- | 18 | --- |
18 | SConstruct | 7 +++++-- | 19 | SConstruct | 7 +++++-- |
19 | 1 files changed, 5 insertions(+), 2 deletions(-) | 20 | 1 files changed, 5 insertions(+), 2 deletions(-) |
20 | 21 | ||
21 | diff --git a/SConstruct b/SConstruct | 22 | diff --git a/SConstruct b/SConstruct |
22 | index 0cf5799..3c919fc 100644 | 23 | index a1bddb9..3e7c607 100644 |
23 | --- a/SConstruct | 24 | --- a/SConstruct |
24 | +++ b/SConstruct | 25 | +++ b/SConstruct |
25 | @@ -1152,8 +1152,11 @@ if qt_env: | 26 | @@ -1205,8 +1205,11 @@ if qt_env: |
26 | 27 | ||
27 | # We don't use installdir here in order to avoid having DESTDIR affect the rpath | 28 | # We don't use installdir here in order to avoid having DESTDIR affect the rpath |
28 | if env["shared"]: | 29 | if env["shared"] and env["chrpath"]: |
29 | - env.AddPostAction(binaryinstall, '$CHRPATH -r "%s" "$TARGET"' \ | 30 | - env.AddPostAction(binaryinstall, '$CHRPATH -r "%s" "$TARGET"' \ |
30 | - % (installdir('libdir', False), )) | 31 | - % (installdir('libdir', False), )) |
31 | + if env['sysroot']: | 32 | + if not env['sysroot']: |
32 | + env.AddPostAction(binaryinstall, '$CHRPATH -d "$TARGET"') | ||
33 | + else: | ||
34 | + env.AddPostAction(binaryinstall, '$CHRPATH -r "%s" "$TARGET"' \ | 33 | + env.AddPostAction(binaryinstall, '$CHRPATH -r "%s" "$TARGET"' \ |
35 | + % (installdir('libdir', False), )) | 34 | + % (installdir('libdir', False), )) |
35 | + else: | ||
36 | + env.AddPostAction(binaryinstall, '$CHRPATH -d "$TARGET"') | ||
36 | 37 | ||
37 | if not env['debug'] and not env['profiling'] and env['strip']: | 38 | if not env['debug'] and not env['profiling'] and env['strip']: |
38 | env.AddPostAction(binaryinstall, '$STRIP $TARGET') | 39 | env.AddPostAction(binaryinstall, '$STRIP $TARGET') |
39 | -- | 40 | -- |
40 | 1.7.8.5 | 41 | 1.7.5.4 |
41 | 42 | ||
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd/0001-SConstruct-respect-sysroot-setting-when-prepending-L.patch b/meta-oe/recipes-navigation/gpsd/gpsd/0001-SConstruct-respect-sysroot-setting-when-prepending-L.patch deleted file mode 100644 index 6b720a523..000000000 --- a/meta-oe/recipes-navigation/gpsd/gpsd/0001-SConstruct-respect-sysroot-setting-when-prepending-L.patch +++ /dev/null | |||
@@ -1,36 +0,0 @@ | |||
1 | From 7427bb23092b3e395d14e42cd3b64691082fe826 Mon Sep 17 00:00:00 2001 | ||
2 | From: Martin Jansa <Martin.Jansa@gmail.com> | ||
3 | Date: Tue, 24 Apr 2012 10:58:26 +0200 | ||
4 | Subject: [PATCH 1/4] SConstruct: respect sysroot setting when prepending | ||
5 | LIBPATH/RPATH | ||
6 | |||
7 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
8 | --- | ||
9 | SConstruct | 11 ++++++++--- | ||
10 | 1 files changed, 8 insertions(+), 3 deletions(-) | ||
11 | |||
12 | diff --git a/SConstruct b/SConstruct | ||
13 | index 22bc9f4..21b2205 100644 | ||
14 | --- a/SConstruct | ||
15 | +++ b/SConstruct | ||
16 | @@ -269,9 +269,14 @@ def installdir(dir, add_destdir=True): | ||
17 | return wrapped | ||
18 | |||
19 | # Honor the specified installation prefix in link paths. | ||
20 | -env.Prepend(LIBPATH=[installdir('libdir')]) | ||
21 | -if env["shared"]: | ||
22 | - env.Prepend(RPATH=[installdir('libdir')]) | ||
23 | +if env['sysroot']: | ||
24 | + env.Prepend(LIBPATH=[os.path.normpath("%s/%s/%s" % (env['sysroot'], env['prefix'], env['libdir']))]) | ||
25 | + if env["shared"]: | ||
26 | + env.Prepend(RPATH=[os.path.normpath("%s/%s/%s" % (env['sysroot'], env['prefix'], env['libdir']))]) | ||
27 | +else: | ||
28 | + env.Prepend(LIBPATH=[installdir('libdir')]) | ||
29 | + if env["shared"]: | ||
30 | + env.Prepend(RPATH=[installdir('libdir')]) | ||
31 | |||
32 | # Give deheader a way to set compiler flags | ||
33 | if 'MORECFLAGS' in os.environ: | ||
34 | -- | ||
35 | 1.7.8.5 | ||
36 | |||
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd/0002-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch b/meta-oe/recipes-navigation/gpsd/gpsd/0002-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch deleted file mode 100644 index 55ef7042d..000000000 --- a/meta-oe/recipes-navigation/gpsd/gpsd/0002-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | From 5266eb72cbc8193faa2345b8774b0f159e61c067 Mon Sep 17 00:00:00 2001 | ||
2 | From: Martin Jansa <Martin.Jansa@gmail.com> | ||
3 | Date: Tue, 24 Apr 2012 11:52:35 +0200 | ||
4 | Subject: [PATCH 2/4] SConstruct: respect sysroot also in SPLINTOPTS | ||
5 | |||
6 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
7 | --- | ||
8 | SConstruct | 5 ++++- | ||
9 | 1 files changed, 4 insertions(+), 1 deletions(-) | ||
10 | |||
11 | diff --git a/SConstruct b/SConstruct | ||
12 | index 21b2205..0cf5799 100644 | ||
13 | --- a/SConstruct | ||
14 | +++ b/SConstruct | ||
15 | @@ -1224,7 +1224,10 @@ def Utility(target, source, action): | ||
16 | |||
17 | # Report splint warnings | ||
18 | # Note: test_bits.c is unsplintable because of the PRI64 macros. | ||
19 | -env['SPLINTOPTS'] = "-I/usr/include/libusb-1.0 +quiet" | ||
20 | +if env['sysroot']: | ||
21 | + env['SPLINTOPTS'] = "-I%s/usr/include/libusb-1.0 +quiet" % env['sysroot'] | ||
22 | +else: | ||
23 | + env['SPLINTOPTS'] = "-I/usr/include/libusb-1.0 +quiet" | ||
24 | |||
25 | def Splint(target,sources, description, params): | ||
26 | return Utility(target,sources+generated_sources,[ | ||
27 | -- | ||
28 | 1.7.8.5 | ||
29 | |||
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd/0003-Revert-The-strptime-prototype-is-not-provided-unless.patch b/meta-oe/recipes-navigation/gpsd/gpsd/0003-Revert-The-strptime-prototype-is-not-provided-unless.patch deleted file mode 100644 index c2d191c85..000000000 --- a/meta-oe/recipes-navigation/gpsd/gpsd/0003-Revert-The-strptime-prototype-is-not-provided-unless.patch +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | From c6bb11767172407bfaaebd962b4d12cd8e8a1fb0 Mon Sep 17 00:00:00 2001 | ||
2 | From: Martin Jansa <Martin.Jansa@gmail.com> | ||
3 | Date: Tue, 24 Apr 2012 14:57:04 +0200 | ||
4 | Subject: [PATCH 3/4] Revert "The strptime prototype is not provided unless | ||
5 | explicitly requested." | ||
6 | |||
7 | * This reverts commit 615d3eb14ea4833ce38ea89ec385308f4f679b33. | ||
8 | * with _XOPEN_SOURCE defined, we don't have | ||
9 | CLOCK_REALTIME and timespec defined and build fails: | ||
10 | | arm-oe-linux-gnueabi-gcc -march=armv4t -mthumb -mthumb-interwork -mtune=arm920t --sysroot=/OE/shr-core/tmp-eglibc/sysroots/om-gta02 -o gpsutils.os -c -O2 -pipe -g -feliminate-unused-debug-types --sysroot=/OE/shr-core/tmp-eglibc/sysroots/om-gta02 -O2 -fPIC gpsutils.c | ||
11 | | gpsutils.c: In function 'timestamp': | ||
12 | | gpsutils.c:299:22: error: storage size of 'ts' isn't known | ||
13 | | gpsutils.c:300:34: error: 'CLOCK_REALTIME' undeclared (first use in this function) | ||
14 | | gpsutils.c:300:34: note: each undeclared identifier is reported only once for each function it appears in | ||
15 | | gpsutils.c: In function 'unix_to_iso8601': | ||
16 | | gpsutils.c:385:11: warning: incompatible implicit declaration of built-in function 'snprintf' [enabled by default] | ||
17 | --- | ||
18 | gpsutils.c | 5 ----- | ||
19 | 1 files changed, 0 insertions(+), 5 deletions(-) | ||
20 | |||
21 | diff --git a/gpsutils.c b/gpsutils.c | ||
22 | index 60c4ae9..a1530ec 100644 | ||
23 | --- a/gpsutils.c | ||
24 | +++ b/gpsutils.c | ||
25 | @@ -3,11 +3,6 @@ | ||
26 | * This file is Copyright (c) 2010 by the GPSD project | ||
27 | * BSD terms apply: see the file COPYING in the distribution root for details. | ||
28 | */ | ||
29 | - | ||
30 | -/* The strptime prototype is not provided unless explicitly requested. | ||
31 | - * So add the define that POSIX says to to avoid: */ | ||
32 | -#define _XOPEN_SOURCE | ||
33 | - | ||
34 | #include <stdio.h> | ||
35 | #include <time.h> | ||
36 | #include <sys/time.h> | ||
37 | -- | ||
38 | 1.7.8.5 | ||
39 | |||
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_3.5.bb b/meta-oe/recipes-navigation/gpsd/gpsd_3.7.bb index 1e3ac0cfe..e8f4cada0 100644 --- a/meta-oe/recipes-navigation/gpsd/gpsd_3.5.bb +++ b/meta-oe/recipes-navigation/gpsd/gpsd_3.7.bb | |||
@@ -5,12 +5,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d217a23f408e91c94359447735bc1800" | |||
5 | DEPENDS = "dbus dbus-glib ncurses python libusb1 chrpath-native" | 5 | DEPENDS = "dbus dbus-glib ncurses python libusb1 chrpath-native" |
6 | PROVIDES = "virtual/gpsd" | 6 | PROVIDES = "virtual/gpsd" |
7 | 7 | ||
8 | PR = "r5" | 8 | PR = "r0" |
9 | 9 | ||
10 | SRC_URI = "http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz \ | 10 | SRC_URI = "http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz \ |
11 | file://0001-SConstruct-respect-sysroot-setting-when-prepending-L.patch \ | ||
12 | file://0002-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch \ | 11 | file://0002-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch \ |
13 | file://0003-Revert-The-strptime-prototype-is-not-provided-unless.patch \ | ||
14 | file://0004-SConstruct-remove-rpath.patch \ | 12 | file://0004-SConstruct-remove-rpath.patch \ |
15 | file://0001-SConstruct-prefix-includepy-with-sysroot-and-drop-sy.patch \ | 13 | file://0001-SConstruct-prefix-includepy-with-sysroot-and-drop-sy.patch \ |
16 | file://0001-SConstruct-disable-html-and-man-docs-building-becaus.patch \ | 14 | file://0001-SConstruct-disable-html-and-man-docs-building-becaus.patch \ |
@@ -18,8 +16,8 @@ SRC_URI = "http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz \ | |||
18 | file://gpsd \ | 16 | file://gpsd \ |
19 | file://60-gpsd.rules \ | 17 | file://60-gpsd.rules \ |
20 | " | 18 | " |
21 | SRC_URI[md5sum] = "e96881798a0ab67aa3cd5f3249f0e536" | 19 | SRC_URI[md5sum] = "52d9785eaf1a51298bb8900dbde88f98" |
22 | SRC_URI[sha256sum] = "5ebb0b00c49421eb8fbead81342e5ce63e82065e5ff27da586f10e342b999171" | 20 | SRC_URI[sha256sum] = "7800c478ee9d7ca7a502b0f892828561b1fbf7bc69d9d38c447c82c3628302ac" |
23 | 21 | ||
24 | inherit scons update-rc.d python-dir pythonnative | 22 | inherit scons update-rc.d python-dir pythonnative |
25 | 23 | ||
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 380f3ba71..000000000 --- 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" | ||