* [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7
@ 2012-07-23 19:29 spdawson at gmail.com
2012-07-23 21:27 ` Thomas Petazzoni
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: spdawson at gmail.com @ 2012-07-23 19:29 UTC (permalink / raw)
To: buildroot
From: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
v3: Add license information, and staging installation commands. Handle
bluetooth support correctly.
v2: Remove spurious host-python dependency, as suggested by Thomas Petazzoni.
package/gpsd/Config.in | 22 ++-
package/gpsd/gpsd-fix-acs_map-compile-errors.patch | 29 +++
package/gpsd/gpsd-fix-libgpsmm.patch | 23 ---
package/gpsd/gpsd-navcom.patch | 47 -----
package/gpsd/gpsd.mk | 191 ++++++++++++--------
5 files changed, 164 insertions(+), 148 deletions(-)
create mode 100644 package/gpsd/gpsd-fix-acs_map-compile-errors.patch
delete mode 100644 package/gpsd/gpsd-fix-libgpsmm.patch
delete mode 100644 package/gpsd/gpsd-navcom.patch
diff --git a/package/gpsd/Config.in b/package/gpsd/Config.in
index 16635dc..18e21e5 100644
--- a/package/gpsd/Config.in
+++ b/package/gpsd/Config.in
@@ -38,10 +38,6 @@ config BR2_PACKAGE_GPSD_NTP_SHM
config BR2_PACKAGE_GPSD_PPS
bool "PPS time syncing support"
-config BR2_PACKAGE_GPSD_PPS_ON_CTS
- bool "PPS pulse on CTS rather than DCD"
- depends on BR2_PACKAGE_GPSD_PPS
-
config BR2_PACKAGE_GPSD_USER
bool "GPSD privilege revocation user"
config BR2_PACKAGE_GPSD_USER_VALUE
@@ -85,9 +81,6 @@ config BR2_PACKAGE_GPSD_CONTROLSEND
bool "allow gpsctl/gpsmon to change device settings"
default y
-config BR2_PACKAGE_GPSD_RAW
- bool "enable raw measurement processing"
-
config BR2_PACKAGE_GPSD_SQUELCH
bool "squelch gpsd_report and gpsd_hexdump to save cpu"
@@ -116,6 +109,11 @@ config BR2_PACKAGE_GPSD_EVERMORE
help
EverMore binary support
+config BR2_PACKAGE_GPSD_FURY
+ bool "Fury"
+ help
+ Jackson Labs Fury and Firefly support
+
config BR2_PACKAGE_GPSD_FV18
bool "FV-18"
help
@@ -131,6 +129,11 @@ config BR2_PACKAGE_GPSD_GARMIN_SIMPLE_TXT
help
Garmin Simple Text support
+config BR2_PACKAGE_GPSD_GEOSTAR
+ bool "Geostar"
+ help
+ Geostar Protocol support
+
config BR2_PACKAGE_GPSD_GPSCLOCK
bool "GPSClock"
help
@@ -162,6 +165,11 @@ config BR2_PACKAGE_GPSD_NAVCOM
help
Navcom binary support
+config BR2_PACKAGE_GPSD_NMEA2000
+ bool "nmea2000"
+ help
+ NMEA2000/CAN support
+
config BR2_PACKAGE_GPSD_OCEANSERVER
bool "OceanServer"
help
diff --git a/package/gpsd/gpsd-fix-acs_map-compile-errors.patch b/package/gpsd/gpsd-fix-acs_map-compile-errors.patch
new file mode 100644
index 0000000..14d9287
--- /dev/null
+++ b/package/gpsd/gpsd-fix-acs_map-compile-errors.patch
@@ -0,0 +1,29 @@
+Hack gpsd to prevent undefined references to acs_map from ncurses.
+
+Signed-off-by: Simon Dawson <spdawson@gmail.com>
+diff -Nurp a/gpsmon.c b/gpsmon.c
+--- a/gpsmon.c 2012-05-18 09:45:37.000000000 +0100
++++ b/gpsmon.c 2012-06-07 12:41:31.257807969 +0100
+@@ -24,6 +24,9 @@
+ #include <unistd.h>
+ #endif /* S_SPLINT_S */
+
++/* Ugly hack to prevent undefined reference to acs_map */
++unsigned long acs_map[128];
++
+ #include "gpsd_config.h"
+ #ifdef HAVE_BLUEZ
+ #include <bluetooth/bluetooth.h>
+diff -Nurp a/monitor_nmea.c b/monitor_nmea.c
+--- a/monitor_nmea.c 2011-11-22 08:49:33.000000000 +0000
++++ b/monitor_nmea.c 2012-06-07 12:41:37.081807709 +0100
+@@ -15,6 +15,9 @@
+ #include <unistd.h>
+ #endif /* S_SPLINT_S */
+
++/* Ugly hack to prevent undefined reference to acs_map */
++unsigned long acs_map[128];
++
+ #include "gpsd.h"
+ #include "gpsmon.h"
+ #include "gpsdclient.h"
diff --git a/package/gpsd/gpsd-fix-libgpsmm.patch b/package/gpsd/gpsd-fix-libgpsmm.patch
deleted file mode 100644
index 893965e..0000000
--- a/package/gpsd/gpsd-fix-libgpsmm.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -Nura gpsd-2.95.orig/Makefile.in gpsd-2.95.x/Makefile.in
---- gpsd-2.95.orig/Makefile.in 2010-07-13 19:48:24.000000000 -0300
-+++ gpsd-2.95.x/Makefile.in 2010-07-27 17:40:28.902568874 -0300
-@@ -546,7 +546,7 @@
- libgps_VERSION__REVISION = 0
- libgps_VERSION_AGE = 0
- libgps_VERSION_NUMBER = $(libgps_VERSION_AGE):$(libgps_VERSION__REVISION):$(libgps_VERSION_AGE)
--libgps_la_LDFLAGS = -version-number $(libgps_VERSION_CURRENT):$(libgps_VERSION__REVISION):$(libgps_VERSION_AGE)
-+libgps_la_LDFLAGS = -version-number $(libgps_VERSION_CURRENT):$(libgps_VERSION__REVISION):$(libgps_VERSION_AGE) $(LDFLAGS)
- lib_LTLIBRARIES = libgps.la libgpsd.la
- libgps_SONAME = $(shell expr $(libgps_VERSION_CURRENT) - $(libgps_VERSION_AGE))
- libgps_VERSION = $(libgps_SONAME).$(libgps_VERSION_AGE).$(libgps_VERSION__REVISION)
-@@ -612,8 +612,8 @@
- libgpsd_la_SOURCES = $(libgpsd_c_sources) $(libgpsd_h_sources) \
- driver_rtcm2.h packet_states.h
-
-- at LIBGPSMM_ENABLE_FALSE@libgps_la_LINK = /bin/sh ./libtool --tag=CC --mode=link gcc $(libgps_la_LDFLAGS) -o $@
-- at LIBGPSMM_ENABLE_TRUE@libgps_la_LINK = /bin/sh ./libtool --tag=CXX --mode=link g++ $(libgps_la_LDFLAGS) -o $@
-+ at LIBGPSMM_ENABLE_FALSE@libgps_la_LINK = /bin/sh ./libtool --tag=CC --mode=link $(CC) $(libgps_la_LDFLAGS) -o $@
-+ at LIBGPSMM_ENABLE_TRUE@libgps_la_LINK = /bin/sh ./libtool --tag=CXX --mode=link $(CXX) $(libgps_la_LDFLAGS) -o $@
- nodist_libgpsd_la_SOURCES = packet_names.h ais_json.i
- libgps_la_LIBADD = $(LIBM) $(LIBC) $(LIBNSL) $(LIBSOCKET) $(LIBPTHREAD)
- libgpsd_la_LIBADD = $(LIBM) $(LIBC) $(LIBNSL) $(LIBSOCKET) $(LIBPTHREAD) $(BLUEZ_LIBS) libgps.la
diff --git a/package/gpsd/gpsd-navcom.patch b/package/gpsd/gpsd-navcom.patch
deleted file mode 100644
index 659cea1..0000000
--- a/package/gpsd/gpsd-navcom.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-[PATCH] Navcom needs binary support
-
-Enable binary support when navcom driver is enabled, otherwise the build
-errors out with:
-
-./libgpsd.so: undefined reference to `navcom_binary'
-
-If no other drivers needing binary support are enabled.
-
-Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
----
- driver_navcom.c | 4 ++--
- gpsd.h-tail | 2 +-
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-Index: gpsd-2.95/driver_navcom.c
-===================================================================
---- gpsd-2.95.orig/driver_navcom.c
-+++ gpsd-2.95/driver_navcom.c
-@@ -44,7 +44,7 @@
- #include <stdio.h>
- #include "gpsd.h"
-
--#if defined(NAVCOM_ENABLE) && defined(BINARY_ENABLE)
-+#if defined(NAVCOM_ENABLE)
- #include "bits.h"
-
- /* Have data which is 24 bits long */
-@@ -1339,4 +1339,4 @@
- };
- /* *INDENT-ON* */
-
--#endif /* defined(NAVCOM_ENABLE) && defined(BINARY_ENABLE) */
-+#endif /* defined(NAVCOM_ENABLE) */
-Index: gpsd-2.95/gpsd.h-tail
-===================================================================
---- gpsd-2.95.orig/gpsd.h-tail
-+++ gpsd-2.95/gpsd.h-tail
-@@ -30,7 +30,7 @@
- #ifdef EARTHMATE_ENABLE
- #define ZODIAC_ENABLE
- #endif
--#if defined(ZODIAC_ENABLE) || defined(SIRF_ENABLE) || defined(GARMIN_ENABLE) || defined(TSIP_ENABLE) || defined(EVERMORE_ENABLE) || defined(ITRAX_ENABLE) || defined(UBX_ENABLE) || defined(SUPERSTAR2_ENABLE) || defined(ONCORE_ENABLE)
-+#if defined(ZODIAC_ENABLE) || defined(SIRF_ENABLE) || defined(GARMIN_ENABLE) || defined(TSIP_ENABLE) || defined(EVERMORE_ENABLE) || defined(ITRAX_ENABLE) || defined(UBX_ENABLE) || defined(SUPERSTAR2_ENABLE) || defined(ONCORE_ENABLE) || defined(NAVCOM_ENABLE)
- #define BINARY_ENABLE
- #endif
- #if defined(TRIPMATE_ENABLE) || defined(BINARY_ENABLE)
diff --git a/package/gpsd/gpsd.mk b/package/gpsd/gpsd.mk
index 2ba5f71..669f26c 100644
--- a/package/gpsd/gpsd.mk
+++ b/package/gpsd/gpsd.mk
@@ -3,183 +3,232 @@
# gpsd
#
#############################################################
-
-GPSD_VERSION = 2.95
-GPSD_SITE = http://download.berlios.de/gpsd
+GPSD_VERSION = 3.7
+GPSD_SITE = http://download-mirror.savannah.gnu.org/releases/gpsd/
+GPSD_LICENSE = BSD-3c
+GPSD_LICENSE_FILES = COPYING
GPSD_INSTALL_STAGING = YES
-GPSD_TARGET_BINS = cgps gpsctl gpsdecode gpsmon gpspipe gpxlogger lcdgps
+
+GPSD_DEPENDENCIES = host-scons
+
+HOST_SCONS = $(HOST_DIR)/usr/bin/scons
+
+GPSD_LDFLAGS = $(TARGET_LDFLAGS)
+
+GPSD_SCONS_ENV = $(TARGET_CONFIGURE_OPTS)
+
+GPSD_SCONS_OPTS = \
+ arch=$(ARCH)\
+ prefix=$(TARGET_DIR)/usr\
+ chrpath=no\
+ strip=no
+
+ifeq ($(BR2_PACKAGE_NCURSES),y)
+ GPSD_DEPENDENCIES += ncurses
+else
+ GPSD_SCONS_OPTS += ncurses=no
+endif
+
+ifeq ($(BR2_PACKAGE_PYTHON),y)
+ GPSD_DEPENDENCIES += python
+else
+ GPSD_SCONS_OPTS += python=no
+endif
+
+# Disable IPv6, if we don't support it
+ifneq ($(BR2_INET_IPV6),y)
+ GPSD_SCONS_OPTS += ipv6=no
+endif
# Build libgpsmm if we've got C++
ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
- GPSD_CONF_OPT += --enable-libgpsmm LDFLAGS="$(TARGET_LDFLAGS) -lstdc++"
+ GPSD_LDFLAGS += -lstdc++
+ GPSD_SCONS_OPTS += libgpsmm=yes
else
- GPSD_CONF_OPT += --disable-libgpsmm
+ GPSD_SCONS_OPTS += libgpsmm=no
endif
# Enable or disable Qt binding
ifeq ($(BR2_PACKAGE_QT_NETWORK),y)
- GPSD_CONF_ENV += QMAKE="$(QT_QMAKE)"
- GPSD_CONF_OPT += --enable-libQgpsmm
+ GPSD_SCONS_ENV += QMAKE="$(QT_QMAKE)"
GPSD_DEPENDENCIES += qt host-pkg-config
else
- GPSD_CONF_OPT += --disable-libQgpsmm
+ GPSD_SCONS_OPTS += libQgpsmm=no
endif
# If libusb is available build it before so the package can use it
ifeq ($(BR2_PACKAGE_LIBUSB),y)
GPSD_DEPENDENCIES += libusb
+else
+ GPSD_SCONS_OPTS += usb=no
endif
-ifeq ($(BR2_PACKAGE_DBUS_GLIB),y)
- GPSD_CONF_OPT += --enable-dbus
- GPSD_DEPENDENCIES += dbus-glib
+# If bluetooth is available build it before so the package can use it
+ifeq ($(BR2_PACKAGE_BLUEZ_UTILS),y)
+ GPSD_DEPENDENCIES += bluez_utils
+else
+ GPSD_SCONS_OPTS += bluez=no
endif
-ifeq ($(BR2_PACKAGE_NCURSES),y)
- GPSD_DEPENDENCIES += ncurses
+ifeq ($(BR2_PACKAGE_DBUS_GLIB),y)
+ GPSD_SCONS_OPTS += dbus_export=yes
+ GPSD_DEPENDENCIES += dbus-glib
endif
# Protocol support
ifneq ($(BR2_PACKAGE_GPSD_ASHTECH),y)
- GPSD_CONF_OPT += --disable-ashtech
+ GPSD_SCONS_OPTS += ashtech=no
endif
ifneq ($(BR2_PACKAGE_GPSD_AIVDM),y)
- GPSD_CONF_OPT += --disable-aivdm
+ GPSD_SCONS_OPTS += aivdm=no
endif
ifneq ($(BR2_PACKAGE_GPSD_EARTHMATE),y)
- GPSD_CONF_OPT += --disable-earthmate
+ GPSD_SCONS_OPTS += earthmate=no
endif
ifneq ($(BR2_PACKAGE_GPSD_EVERMORE),y)
- GPSD_CONF_OPT += --disable-evermore
+ GPSD_SCONS_OPTS += evermore=no
+endif
+ifneq ($(BR2_PACKAGE_GPSD_FURY),y)
+ GPSD_SCONS_OPTS += fury=no
endif
ifneq ($(BR2_PACKAGE_GPSD_FV18),y)
- GPSD_CONF_OPT += --disable-fv18
+ GPSD_SCONS_OPTS += fv18=no
endif
ifneq ($(BR2_PACKAGE_GPSD_GARMIN),y)
- GPSD_CONF_OPT += --disable-garmin
+ GPSD_SCONS_OPTS += garmin=no
endif
ifneq ($(BR2_PACKAGE_GPSD_GARMIN_SIMPLE_TXT),y)
- GPSD_CONF_OPT += --disable-garmintxt
+ GPSD_SCONS_OPTS += garmintxt=no
+endif
+ifneq ($(BR2_PACKAGE_GPSD_GEOSTAR),y)
+ GPSD_SCONS_OPTS += geostar=no
endif
ifneq ($(BR2_PACKAGE_GPSD_GPSCLOCK),y)
- GPSD_CONF_OPT += --disable-gpsclock
+ GPSD_SCONS_OPTS += gpsclock=no
endif
ifneq ($(BR2_PACKAGE_GPSD_ITRAX),y)
- GPSD_CONF_OPT += --disable-itrax
+ GPSD_SCONS_OPTS += itrax=no
endif
ifneq ($(BR2_PACKAGE_GPSD_MTK3301),y)
- GPSD_CONF_OPT += --disable-mtk3301
+ GPSD_SCONS_OPTS += mtk3301=no
endif
ifneq ($(BR2_PACKAGE_GPSD_NMEA),y)
- GPSD_CONF_OPT += --disable-nmea
+ GPSD_SCONS_OPTS += nmea=no
endif
ifneq ($(BR2_PACKAGE_GPSD_NTRIP),y)
- GPSD_CONF_OPT += --disable-ntrip
+ GPSD_SCONS_OPTS += ntrip=no
endif
ifneq ($(BR2_PACKAGE_GPSD_NAVCOM),y)
- GPSD_CONF_OPT += --disable-navcom
+ GPSD_SCONS_OPTS += navcom=no
+endif
+ifneq ($(BR2_PACKAGE_GPSD_NMEA2000),y)
+ GPSD_SCONS_OPTS += nmea2000=no
endif
ifneq ($(BR2_PACKAGE_GPSD_OCEANSERVER),y)
- GPSD_CONF_OPT += --disable-oceanserver
+ GPSD_SCONS_OPTS += oceanserver=no
endif
ifneq ($(BR2_PACKAGE_GPSD_ONCORE),y)
- GPSD_CONF_OPT += --disable-oncore
+ GPSD_SCONS_OPTS += oncore=no
endif
ifneq ($(BR2_PACKAGE_GPSD_RTCM104V2),y)
- GPSD_CONF_OPT += --disable-rtcm104v2
+ GPSD_SCONS_OPTS += rtcm104v2=no
endif
ifneq ($(BR2_PACKAGE_GPSD_RTCM104V3),y)
- GPSD_CONF_OPT += --disable-rtcm104v3
+ GPSD_SCONS_OPTS += rtcm104v3=no
endif
ifneq ($(BR2_PACKAGE_GPSD_SIRF),y)
- GPSD_CONF_OPT += --disable-sirf
+ GPSD_SCONS_OPTS += sirf=no
endif
ifneq ($(BR2_PACKAGE_GPSD_SUPERSTAR2),y)
- GPSD_CONF_OPT += --disable-superstar2
+ GPSD_SCONS_OPTS += superstar2=no
endif
ifneq ($(BR2_PACKAGE_GPSD_TRIMBLE_TSIP),y)
- GPSD_CONF_OPT += --disable-tsip
+ GPSD_SCONS_OPTS += tsip=no
endif
ifneq ($(BR2_PACKAGE_GPSD_TRIPMATE),y)
- GPSD_CONF_OPT += --disable-tripmate
+ GPSD_SCONS_OPTS += tripmate=no
endif
-ifeq ($(BR2_PACKAGE_GPSD_TRUE_NORTH),y)
- GPSD_CONF_OPT += --enable-tnt
+ifneq ($(BR2_PACKAGE_GPSD_TRUE_NORTH),y)
+ GPSD_SCONS_OPTS += tnt=no
endif
ifneq ($(BR2_PACKAGE_GPSD_UBX),y)
- GPSD_CONF_OPT += --disable-ubx
+ GPSD_SCONS_OPTS += ubx=no
endif
# Features
ifneq ($(BR2_PACKAGE_GPSD_NTP_SHM),y)
- GPSD_CONF_OPT += --disable-ntpshm
+ GPSD_SCONS_OPTS += ntpshm=no
endif
ifneq ($(BR2_PACKAGE_GPSD_PPS),y)
- GPSD_CONF_OPT += --disable-pps
-endif
-ifeq ($(BR2_PACKAGE_GPSD_PPS_ON_CTS),y)
- GPSD_CONF_OPT += --enable-pps-on-cts
+ GPSD_SCONS_OPTS += pps=no
endif
ifeq ($(BR2_PACKAGE_GPSD_SQUELCH),y)
- GPSD_CONF_OPT += --enable-squelch
+ GPSD_SCONS_OPTS += squelch=yes
endif
ifneq ($(BR2_PACKAGE_GPSD_RECONFIGURE),y)
- GPSD_CONF_OPT += --disable-reconfigure
+ GPSD_SCONS_OPTS += reconfigure=no
endif
ifneq ($(BR2_PACKAGE_GPSD_CONTROLSEND),y)
- GPSD_CONF_OPT += --disable-controlsend
-endif
-ifeq ($(BR2_PACKAGE_GPSD_RAW),y)
- GPSD_CONF_OPT += --enable-raw
+ GPSD_SCONS_OPTS += controlsend=no
endif
ifneq ($(BR2_PACKAGE_GPSD_OLDSTYLE),y)
- GPSD_CONF_OPT += --disable-oldstyle
+ GPSD_SCONS_OPTS += oldstyle=no
endif
ifeq ($(BR2_PACKAGE_GPSD_PROFILING),y)
- GPSD_CONF_OPT += --enable-profiling
+ GPSD_SCONS_OPTS += profiling=yes
endif
-ifneq ($(BR2_PACKAGE_GPSD_TIMING),y)
- GPSD_CONF_OPT += --disable-timing
+ifeq ($(BR2_PACKAGE_GPSD_TIMING),y)
+ GPSD_SCONS_OPTS += timing=yes
endif
ifneq ($(BR2_PACKAGE_GPSD_CLIENT_DEBUG),y)
- GPSD_CONF_OPT += --disable-clientdebug
+ GPSD_SCONS_OPTS += clientdebug=no
endif
ifeq ($(BR2_PACKAGE_GPSD_USER),y)
- GPSD_CONF_OPT += --enable-gpsd-user=$(BR2_PACKAGE_GPSD_USER_VALUE)
+ GPSD_SCONS_OPTS += gpsd_user=$(BR2_PACKAGE_GPSD_USER_VALUE)
endif
ifeq ($(BR2_PACKAGE_GPSD_GROUP),y)
- GPSD_CONF_OPT += --enable-gpsd-group=$(BR2_PACKAGE_GPSD_GROUP_VALUE)
+ GPSD_SCONS_OPTS += gpsd_group=$(BR2_PACKAGE_GPSD_GROUP_VALUE)
endif
ifeq ($(BR2_PACKAGE_GPSD_FIXED_PORT_SPEED),y)
- GPSD_CONF_OPT += --enable-fixed-port-speed=$(BR2_PACKAGE_GPSD_FIXED_PORT_SPEED_VALUE)
+ GPSD_SCONS_OPTS += fixed_port_speed=$(BR2_PACKAGE_GPSD_FIXED_PORT_SPEED_VALUE)
endif
ifeq ($(BR2_PACKAGE_GPSD_MAX_CLIENT),y)
- GPSD_CONF_OPT += --enable-max-clients=$(BR2_PACKAGE_GPSD_MAX_CLIENT_VALUE)
+ GPSD_SCONS_OPTS += limited_max_clients=$(BR2_PACKAGE_GPSD_MAX_CLIENT_VALUE)
endif
ifeq ($(BR2_PACKAGE_GPSD_MAX_DEV),y)
- GPSD_CONF_OPT += --enable-max-devices=$(BR2_PACKAGE_GPSD_MAX_DEV_VALUE)
+ GPSD_SCONS_OPTS += limited_max_devices=$(BR2_PACKAGE_GPSD_MAX_DEV_VALUE)
endif
-define GPSD_BUILDS_CMDS
- $(SED) 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' $(GPSD_DIR)/libtool
- $(SED) 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' $(GPSD_DIR)/libtool
- $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) all libgpsmm
+GPSD_SCONS_ENV += LDFLAGS="$(GPSD_LDFLAGS)"
+
+define GPSD_BUILD_CMDS
+ (cd $(@D); \
+ $(GPSD_SCONS_ENV) \
+ $(HOST_SCONS) \
+ $(GPSD_SCONS_OPTS))
endef
define GPSD_INSTALL_TARGET_CMDS
- $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
+ (cd $(@D); \
+ $(GPSD_SCONS_ENV) \
+ $(HOST_SCONS) \
+ $(GPSD_SCONS_OPTS) \
+ destdir=$(TARGET_DIR) \
+ install)
if [ ! -f $(TARGET_DIR)/etc/init.d/S50gpsd ]; then \
$(INSTALL) -m 0755 -D package/gpsd/S50gpsd $(TARGET_DIR)/etc/init.d/S50gpsd; \
$(SED) 's,^DEVICES=.*,DEVICES=$(BR2_PACKAGE_GPSD_DEVICES),' $(TARGET_DIR)/etc/init.d/S50gpsd; \
fi
endef
-define GPSD_UNINSTALL_TARGET_CMDS
- rm -f $(addprefix $(TARGET_DIR)/usr/bin/, $(GPSD_TARGET_BINS))
- rm -f $(TARGET_DIR)/usr/lib/libgps.*
- rm -f $(TARGET_DIR)/usr/lib/libgpsd.*
- rm -f $(TARGET_DIR)/usr/sbin/gpsd
- rm -f $(TARGET_DIR)/etc/init.d/S50gpsd
+define GPSD_INSTALL_STAGING_CMDS
+ (cd $(@D); \
+ $(GPSD_SCONS_ENV) \
+ $(HOST_SCONS) \
+ $(GPSD_SCONS_OPTS) \
+ destdir=$(STAGING_DIR) \
+ includedir="$(STAGING_DIR)/usr/include" \
+ install)
endef
-$(eval $(autotools-package))
+$(eval $(generic-package))
--
1.7.9.5
^ permalink raw reply related [flat|nested] 8+ messages in thread* [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7
2012-07-23 19:29 [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7 spdawson at gmail.com
@ 2012-07-23 21:27 ` Thomas Petazzoni
2012-07-24 6:40 ` Thomas Petazzoni
2012-07-24 6:45 ` Thomas Petazzoni
2 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2012-07-23 21:27 UTC (permalink / raw)
To: buildroot
Le Mon, 23 Jul 2012 20:29:36 +0100,
spdawson at gmail.com a ?crit :
> From: Simon Dawson <spdawson@gmail.com>
>
> Signed-off-by: Simon Dawson <spdawson@gmail.com>
Applied, thanks.
I have just moved the HOST_SCONS definition out to the scons.mk file,
and named it just SCONS, just like we already have AUTOMAKE, AUTOCONF.
Best regards,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7
2012-07-23 19:29 [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7 spdawson at gmail.com
2012-07-23 21:27 ` Thomas Petazzoni
@ 2012-07-24 6:40 ` Thomas Petazzoni
2012-07-24 6:45 ` Thomas Petazzoni
2 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2012-07-24 6:40 UTC (permalink / raw)
To: buildroot
Hello Simon,
Le Mon, 23 Jul 2012 20:29:36 +0100,
spdawson at gmail.com a ?crit :
> package/gpsd/gpsd-fix-acs_map-compile-errors.patch | 29 +++
This is apparently not fixing everything:
/home/thomas/projets/buildroot/output/host/usr/bin/arm-linux-gnueabi-gcc -o gpsmon.o -c -pipe -Os -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wextra -Wall -Wno-uninitialized -Wno-missing-field-initializers -Wcast-align -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith -Wreturn-type -O2 -I/home/thomas/projets/buildroot/output/host/usr/arm-unknown-linux-gnueabi/sysroot/usr/include/libusb-1.0 -I/home/thomas/projets/buildroot/output/host/usr/include -I/home/thomas/projets/buildroot/output/host/usr/include/ncurses gpsmon.c
In file included from gpsmon.h:11:0,
from gpsmon.c:36:
/home/thomas/projets/buildroot/output/host/usr/include/ncurses/curses.h:231:35: error: conflicting types for 'acs_map'
gpsmon.c:28:15: note: previous declaration of 'acs_map' was here
scons: *** [gpsmon.o] Error 1
scons: building terminated because of errors.
make: *** [/home/thomas/projets/buildroot/output/build/gpsd-3.7/.stamp_built] Erreur 2
My defconfig is:
BR2_arm=y
BR2_cortex_a8=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_02=y
BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED=y
BR2_TOOLCHAIN_EXTERNAL_PATH="/home/thomas/x-tools/linaro-2012.02/"
BR2_PACKAGE_DBUS=y
BR2_PACKAGE_DBUS_GLIB=y
BR2_PACKAGE_GPSD=y
BR2_PACKAGE_GPSD_AIVDM=y
BR2_PACKAGE_GPSD_GARMIN=y
BR2_PACKAGE_GPSD_GEOSTAR=y
BR2_PACKAGE_GPSD_ITRAX=y
BR2_PACKAGE_GPSD_NAVCOM=y
BR2_PACKAGE_GPSD_OCEANSERVER=y
BR2_PACKAGE_GPSD_ONCORE=y
BR2_PACKAGE_GPSD_RTCM104V3=y
BR2_PACKAGE_GPSD_SIRF=y
BR2_PACKAGE_GPSD_TRIMBLE_TSIP=y
BR2_PACKAGE_GPSD_TRIPMATE=y
BR2_PACKAGE_PHP=y
BR2_PACKAGE_LIBUSB=y
BR2_PACKAGE_NCURSES=y
BR2_PACKAGE_RADVD=y
Can you have a look into this?
Thanks!
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 8+ messages in thread* [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7
2012-07-23 19:29 [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7 spdawson at gmail.com
2012-07-23 21:27 ` Thomas Petazzoni
2012-07-24 6:40 ` Thomas Petazzoni
@ 2012-07-24 6:45 ` Thomas Petazzoni
2012-07-24 8:11 ` Thomas Petazzoni
2 siblings, 1 reply; 8+ messages in thread
From: Thomas Petazzoni @ 2012-07-24 6:45 UTC (permalink / raw)
To: buildroot
Le Mon, 23 Jul 2012 20:29:36 +0100,
spdawson at gmail.com a ?crit :
> package/gpsd/Config.in | 22 ++-
> package/gpsd/gpsd-fix-acs_map-compile-errors.patch | 29 +++
> package/gpsd/gpsd-fix-libgpsmm.patch | 23 ---
> package/gpsd/gpsd-navcom.patch | 47 -----
> package/gpsd/gpsd.mk | 191 ++++++++++++--------
Other than the ncurses issue I already posted, it is also causing other
build issues:
(1)
gpsd.c: In function 'main':
gpsd.c:1852:12: error: 'struct gps_context_t' has no member named 'pps_hook'
See
http://autobuild.buildroot.org/results/434fd6beca8349bf66b6615fd83bdce8be3ef590/build-end.log
and
http://autobuild.buildroot.org/results/434fd6beca8349bf66b6615fd83bdce8be3ef590/defconfig.
(2)
gpsutils.c:26: fatal error: QDateTime: No such file or directory
compilation terminated.
See
http://autobuild.buildroot.org/results/c76888749337788c9ae9a04499f1fc1e1c5a2e81/build-end.log
and
http://autobuild.buildroot.org/results/c76888749337788c9ae9a04499f1fc1e1c5a2e81/defconfig.
(3) The same ncurses issue
See
http://autobuild.buildroot.org/results/40b7b67a679a91f65fec113ed0b5e737bd20558e/build-end.log
and
http://autobuild.buildroot.org/results/40b7b67a679a91f65fec113ed0b5e737bd20558e/defconfig.
(4) Maybe a host Python version problem
/home/peko/scratch/build/gpsd-3.7/SConstruct:369: Warning: 'with' will become a reserved keyword in Python 2.6
File "/home/peko/scratch/build/gpsd-3.7/SConstruct", line 369
with open("xmltest.xml", "w") as ofp:
^
SyntaxError: invalid syntax
See
http://autobuild.buildroot.org/results/5020a09f093412c3d725d8ae457d68ed72dcbf8e/build-end.log
and
http://autobuild.buildroot.org/results/5020a09f093412c3d725d8ae457d68ed72dcbf8e/defconfig.
Can you look into these issues?
Thomas Petazzoni
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 8+ messages in thread* [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7
2012-07-24 6:45 ` Thomas Petazzoni
@ 2012-07-24 8:11 ` Thomas Petazzoni
2012-07-24 8:23 ` Simon Dawson
0 siblings, 1 reply; 8+ messages in thread
From: Thomas Petazzoni @ 2012-07-24 8:11 UTC (permalink / raw)
To: buildroot
Another build issue:
(5)
gpsd.o: In function `onsig':
gpsd.c:(.text+0x8): undefined reference to `_mcount'
gpsd.o: In function `adjust_max_fd':
gpsd.c:(.text+0x38): undefined reference to `_mcount'
gpsd.o: In function `rstrip':
gpsd.c:(.text+0xe0): undefined reference to `_mcount'
gpsd.o: In function `find_device':
gpsd.c:(.text+0x160): undefined reference to `_mcount'
gpsd.o: In function `snarfline':
gpsd.c:(.text+0x204): undefined reference to `_mcount'
gpsd.o:gpsd.c:(.text+0x2ec): more undefined references to `_mcount' follow
collect2: ld returned 1 exit status
scons: *** [gpsd] Error 1
scons: building terminated because of errors.
make: *** [/home/peko/scratch/build/gpsd-3.7/.stamp_built] Error 2
See
http://autobuild.buildroot.org/results/be707893f4bf0e7e964d183e4a655c5bb72d1889/build-end.log
and
http://autobuild.buildroot.org/results/be707893f4bf0e7e964d183e4a655c5bb72d1889/defconfig.
It happens when BR2_PACKAGE_GPSD_PROFILING is enabled. I don't know if
uClibc has the necessary infrastructure to support profiling.
Best regards,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7
2012-07-24 8:11 ` Thomas Petazzoni
@ 2012-07-24 8:23 ` Simon Dawson
2012-07-24 8:50 ` Thomas Petazzoni
0 siblings, 1 reply; 8+ messages in thread
From: Simon Dawson @ 2012-07-24 8:23 UTC (permalink / raw)
To: buildroot
Hi Thomas; thanks for testing this.
I've reproduced the profiling problem with uClibc (Buildroot
toolchain). But I haven't managed to reproduce the other build
problems yet (using Linaro 2012.02 toolchain). I wonder if it might be
better to revert this for the time being; what do you think?
Simon.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7
2012-07-24 8:23 ` Simon Dawson
@ 2012-07-24 8:50 ` Thomas Petazzoni
2012-07-24 14:05 ` Simon Dawson
0 siblings, 1 reply; 8+ messages in thread
From: Thomas Petazzoni @ 2012-07-24 8:50 UTC (permalink / raw)
To: buildroot
Le Tue, 24 Jul 2012 09:23:42 +0100,
Simon Dawson <spdawson@gmail.com> a ?crit :
> I've reproduced the profiling problem with uClibc (Buildroot
> toolchain). But I haven't managed to reproduce the other build
> problems yet (using Linaro 2012.02 toolchain). I wonder if it might be
> better to revert this for the time being; what do you think?
Well, let's try to fix the problems for now :-)
Problem (1) appears when PPS support is enabled. I think it should
appear with all toolchains.
Problem (2) appears when Qt is available.
I have no idea for problem (3), but I think it should easily be
reproducible.
Problem (4) is due to the fact that the gcc14 build machine has Python
2.5 installed. First option: the SConstruct file should be patched to
avoid using the "with" Python thing, that has been introduced in Python
2.6. Second option: we merge the patches from Samuel Martin that checks
whether the version of the host Python is good enough or not, and if
not, builds its own host Python version. Considering that the patch to
apply on SConstruct is fairly small, I think option 1) is easy.
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-07-24 14:05 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-23 19:29 [Buildroot] [PATCH v3] Bump gpsd from version 2.95 to version 3.7 spdawson at gmail.com
2012-07-23 21:27 ` Thomas Petazzoni
2012-07-24 6:40 ` Thomas Petazzoni
2012-07-24 6:45 ` Thomas Petazzoni
2012-07-24 8:11 ` Thomas Petazzoni
2012-07-24 8:23 ` Simon Dawson
2012-07-24 8:50 ` Thomas Petazzoni
2012-07-24 14:05 ` Simon Dawson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox