X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=net%2Fgpsd%2FMakefile;h=edf40fd72c4860f2f520101db880fe6a95ee0de0;hp=3f773c85da8016fca21798a1b71fff37553113be;hb=2216dbf4f065c4818bee971138e7e6a2efc10f36;hpb=5459f36c9e98294b99d1d23b045d35da84e14d24 diff --git a/net/gpsd/Makefile b/net/gpsd/Makefile index 3f773c85da..edf40fd72c 100644 --- a/net/gpsd/Makefile +++ b/net/gpsd/Makefile @@ -1,67 +1,78 @@ # -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id$ include $(TOPDIR)/rules.mk PKG_NAME:=gpsd -PKG_VERSION:=2.29 -PKG_RELEASE:=1 +PKG_VERSION:=2.94 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://download.berlios.de/gpsd/ -PKG_MD5SUM:=3ff80db0e7d906457e5a7a1b04fcb4ec +PKG_MD5SUM:=ce70bcd707ac1df861d4c72f503c09d1 -PKG_BUILD_DEPENDS=libncurses libnotimpl +PKG_INSTALL:=1 +PKG_FIXUP:=libtool +PKG_REMOVE_FILES:=aclocal.m4 ltmain.sh + +PKG_BUILD_DEPENDS:=libncurses include $(INCLUDE_DIR)/package.mk define Package/gpsd SECTION:=net CATEGORY:=Network - DEPENDS:=+libpthread +uclibcxx + DEPENDS:=+libpthread +librt +libusb-1.0 TITLE:=An interface daemon for GPS receivers URL:=http://gpsd.berlios.de/ endef +CONFIGURE_CMD =./autogen.sh + CONFIGURE_ARGS += \ - --without-x \ + --disable-dbus \ + --disable-tsip \ + --disable-fv18 \ + --disable-tripmate \ + --disable-earthmate \ + --disable-itrax \ + --disable-navcom \ + --disable-ubx \ + --disable-evermore \ + --disable-ntrip \ + --disable-libgpsmm \ + --without-x \ -CONFIGURE_VARS += \ - CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/uClic++" \ - CXXFLAGS="$$$$CXXFLAGS -fno-builtin -fno-rtti -nostdinc++" \ - LIBS="-nodefaultlibs -luClibc++ -lnotimpl" \ +EXTRA_CFLAGS:=-I$(STAGING_DIR)/usr/include/libusb-1.0 -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - CXXLINK="\$$$$(LINK)" \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - all install -endef +EXTRA_LDFLAGS:=-lusb-1.0 define Build/InstallDev - mkdir -p $(STAGING_DIR)/usr/include - $(CP) $(PKG_INSTALL_DIR)/usr/include/gps{,d}.h $(STAGING_DIR)/usr/include/ - $(CP) $(PKG_INSTALL_DIR)/usr/include/libgpsmm.h $(STAGING_DIR)/usr/include/ - mkdir -p $(STAGING_DIR)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgps.{a,so*} $(STAGING_DIR)/usr/lib/ -endef - -define Build/UninstallDev - rm -rf $(STAGING_DIR)/usr/include/gps{,d}.h \ - $(STAGING_DIR)/usr/include/libgpsmm.h \ - $(STAGING_DIR)/usr/lib/libgps.{a,so*} + $(INSTALL_DIR) $(1)/usr/include + $(CP) $(PKG_INSTALL_DIR)/usr/include/gps.h $(1)/usr/include/ + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgps*.{a,so*} $(1)/usr/lib/ endef define Package/gpsd/install + $(INSTALL_DIR) $(1)/etc/config + $(INSTALL_CONF) ./files/gpsd.config $(1)/etc/config/gpsd + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/gpsd.init $(1)/etc/init.d/gpsd + $(INSTALL_DIR) $(1)/etc/hotplug.d/usb + $(INSTALL_DATA) ./files/gpsd.hotplug $(1)/etc/hotplug.d/usb/20-gpsd $(INSTALL_DIR) $(1)/usr/lib - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libgps.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgps*.so* $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/gpsd $(1)/usr/sbin/ endef +define Package/gpsd/conffiles +/etc/config/gpsd +endef + $(eval $(call BuildPackage,gpsd))