mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
gpsd: upgrade to 3.17
This is based on out of tree recipe in meta-medusa-dist, from Tristan Ramseyer. Tested on Dragonboard 410c. Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
parent
9cb4a08519
commit
8dc649bf05
|
|
@ -39,36 +39,42 @@ Signed-off-by: Peter A. Bigot <pab@pabigot.com>
|
|||
1 file changed, 9 insertions(+)
|
||||
|
||||
diff --git a/SConstruct b/SConstruct
|
||||
index 6c93311..cde8b3d 100644
|
||||
index 3318bb48..e1c4f963 100644
|
||||
--- a/SConstruct
|
||||
+++ b/SConstruct
|
||||
@@ -1148,6 +1148,12 @@ else:
|
||||
basecflags += ' -coverage'
|
||||
ldflags += ' -coverage'
|
||||
ldshared += ' -coverage'
|
||||
+
|
||||
+ if env['sysroot']:
|
||||
+ print "Prefixing includepy '%s' with sysroot prefix" % includepy
|
||||
+ includepy = os.path.normpath("%s/%s/%s/%s" % (env['sysroot'], env['prefix'], env['includedir'], includepy))
|
||||
+ print "'%s'" % includepy
|
||||
+
|
||||
# in case CC/CXX was set to the scan-build wrapper,
|
||||
# ensure that we build the python modules with scan-build, too
|
||||
if env['CC'] is None or env['CC'].find('scan-build') < 0:
|
||||
@@ -1408,11 +1414,14 @@ if not env['python']:
|
||||
@@ -934,7 +934,7 @@ else:
|
||||
|
||||
# Set up configuration for target Python
|
||||
|
||||
-PYTHON_LIBDIR_CALL = 'sysconfig.get_python_lib()'
|
||||
+PYTHON_LIBDIR_CALL = 'sysconfig.get_python_lib(plat_specific=1)'
|
||||
|
||||
PYTHON_CONFIG_NAMES = ['CC', 'CXX', 'OPT', 'BASECFLAGS',
|
||||
'CCSHARED', 'LDSHARED', 'SO', 'INCLUDEPY', 'LDFLAGS']
|
||||
@@ -1364,7 +1364,7 @@ else:
|
||||
LINK=ldshared,
|
||||
SHLIBPREFIX="",
|
||||
SHLIBSUFFIX=python_config['SO'],
|
||||
- CPPPATH=[python_config['INCLUDEPY']],
|
||||
+ CPPPATH=[os.path.normpath("%s/%s/%s/%s" % (env['sysroot'], env['prefix'], env['includedir'], python_config['INCLUDEPY']))] if env['sysroot'] else [python_config['INCLUDEPY']],
|
||||
CPPFLAGS=python_config['OPT'],
|
||||
CFLAGS=python_config['BASECFLAGS'],
|
||||
CXXFLAGS=python_config['BASECFLAGS'])
|
||||
@@ -1662,12 +1662,15 @@ if ((not env['debug'] and not env['profiling'] and not env['nostrip']
|
||||
if not env['python']:
|
||||
python_install = []
|
||||
else:
|
||||
python_lib_dir = env['python_libdir']
|
||||
+ python_lib_dir = python_lib_dir.replace(env['sysroot'], '')
|
||||
python_module_dir = python_lib_dir + os.sep + 'gps'
|
||||
python_extensions_install = python_env.Install( DESTDIR + python_module_dir,
|
||||
python_built_extensions)
|
||||
if not env['debug'] and not env['profiling'] and not env['nostrip'] and not sys.platform.startswith('darwin'):
|
||||
+ python_libdir = python_libdir.replace(env['sysroot'], '')
|
||||
python_module_dir = python_libdir + os.sep + 'gps'
|
||||
python_extensions_install = python_env.Install(DESTDIR + python_module_dir,
|
||||
python_built_extensions)
|
||||
if ((not env['debug'] and not env['profiling']
|
||||
and not env['nostrip'] and not sys.platform.startswith('darwin'))):
|
||||
python_env.AddPostAction(python_extensions_install, '$STRIP $TARGET')
|
||||
+ env.AddPostAction(python_extensions_install, '$CHRPATH -r "%s" "$TARGET"' \
|
||||
+ % (python_lib_dir, ))
|
||||
+ % (python_libdir, ))
|
||||
|
||||
python_modules_install = python_env.Install( DESTDIR + python_module_dir,
|
||||
python_modules_install = python_env.Install(DESTDIR + python_module_dir,
|
||||
python_modules)
|
||||
--
|
||||
2.1.0
|
||||
|
|
@ -19,10 +19,10 @@ Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
|
|||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/gpsmon.c b/gpsmon.c
|
||||
index ead84d0..f205cb1 100644
|
||||
index 89c43ee2..5cc0dabd 100644
|
||||
--- a/gpsmon.c
|
||||
+++ b/gpsmon.c
|
||||
@@ -20,6 +20,7 @@
|
||||
@@ -24,6 +24,7 @@
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/select.h>
|
||||
|
|
@ -29,23 +29,22 @@ Signed-off-by: Peter A. Bigot <pab@pabigot.com>
|
|||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/SConstruct b/SConstruct
|
||||
index 0e518e7..c01a71b 100644
|
||||
index 3318bb48..a5bb756d 100644
|
||||
--- a/SConstruct
|
||||
+++ b/SConstruct
|
||||
@@ -704,12 +704,12 @@ size_t strlcpy(/*@out@*/char *dst, /*@in@*/const char *src, size_t size);
|
||||
@@ -889,11 +889,11 @@ else:
|
||||
|
||||
manbuilder = mangenerator = htmlbuilder = None
|
||||
manbuilder = htmlbuilder = None
|
||||
if env['manbuild']:
|
||||
- if config.CheckXsltproc():
|
||||
+ if False and config.CheckXsltproc():
|
||||
mangenerator = 'xsltproc'
|
||||
build = "xsltproc --nonet %s $SOURCE >$TARGET"
|
||||
htmlbuilder = build % docbook_html_uri
|
||||
manbuilder = build % docbook_man_uri
|
||||
- elif WhereIs("xmlto"):
|
||||
+ elif False and WhereIs("xmlto"):
|
||||
mangenerator = 'xmlto'
|
||||
xmlto = "xmlto %s $SOURCE || mv `basename $TARGET` `dirname $TARGET`"
|
||||
xmlto = "xmlto %s $SOURCE || mv `basename $TARGET` " \
|
||||
"`dirname $TARGET`"
|
||||
htmlbuilder = xmlto % "html-nochunks"
|
||||
--
|
||||
1.8.5.5
|
||||
|
|
@ -12,8 +12,8 @@ SRC_URI = "${SAVANNAH_GNU_MIRROR}/${BPN}/${BP}.tar.gz \
|
|||
file://0004-SConstruct-disable-html-and-man-docs-building-becaus.patch \
|
||||
file://0001-include-sys-ttydefaults.h.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "68691b5de4c94f82ec4062b042b5eb63"
|
||||
SRC_URI[sha256sum] = "03579af13a4d3fe0c5b79fa44b5f75c9f3cac6749357f1d99ce5d38c09bc2029"
|
||||
SRC_URI[md5sum] = "e0cfadcf4a65dfbdd2afb11c58f4e4a1"
|
||||
SRC_URI[sha256sum] = "68e0dbecfb5831997f8b3d6ba48aed812eb465d8c0089420ab68f9ce4d85e77a"
|
||||
|
||||
inherit scons update-rc.d python-dir pythonnative systemd bluetooth update-alternatives
|
||||
|
||||
Loading…
Reference in New Issue
Block a user