Changeset 3733
- Timestamp:
- 04/08/08 15:49:18 (8 months ago)
- Files:
-
- trunk/freewrt/package/gpsd/Config.in (modified) (1 diff)
- trunk/freewrt/package/gpsd/Makefile (modified) (3 diffs)
- trunk/freewrt/package/gpsd/ipkg/gpsd-clients.control (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/package/gpsd/Config.in
r3234 r3733 16 16 17 17 http://gpsd.berlios.de/ 18 19 config FWRT_PACKAGE_GPSD_CLIENTS 20 prompt "gpsd-clients.................... cgps and gpxlogger" 21 tristate 22 default y 23 depends on FWRT_PACKAGE_GPSD 24 help 25 This enables the command-line GPS client "cgps" and 26 the "gpxlogger" tool for outputting standard GPX files. trunk/freewrt/package/gpsd/Makefile
r2823 r3733 8 8 9 9 PKG_NAME:= gpsd 10 PKG_VERSION:= 2.3 011 PKG_RELEASE:= 212 PKG_MD5SUM:= dde177174878e8ae6db15f8010da46dd10 PKG_VERSION:= 2.37 11 PKG_RELEASE:= 1 12 PKG_MD5SUM:= 6c96cc0b2df0279cb7baac1ebc5881d3 13 13 MASTER_SITES:= http://download.berlios.de/gpsd/ 14 14 … … 16 16 17 17 $(eval $(call PKG_template,GPSD,gpsd,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) 18 $(eval $(call PKG_template,GPSD_CLIENTS,gpsd-clients,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) 18 19 19 20 TCXXFLAGS+= -fno-builtin -fno-rtti -nostdinc++ 20 21 TLDFLAGS+= -luClibc++ -lc -lm -nodefaultlibs 21 22 CONFIGURE_STYLE= gnu 22 CONFIGURE_ARGS+= --without-x 23 CONFIGURE_ARGS+= --without-x \ 24 --disable-python 23 25 BUILD_STYLE= auto 24 26 INSTALL_STYLE= auto … … 26 28 27 29 post-install: 28 ${INSTALL_DIR} ${IDIR_GPSD}/usr/lib 29 ${CP} ${WRKINST}/usr/lib/libgps.so.* ${IDIR_GPSD}/usr/lib/ 30 ${INSTALL_DIR} ${IDIR_GPSD}/usr/sbin 31 ${INSTALL_BIN} ${WRKINST}/usr/sbin/gpsd ${IDIR_GPSD}/usr/sbin/ 30 cd ${WRKINST} && ${PCP} usr/lib/libgps.so.* usr/sbin/gpsd ${IDIR_GPSD}/ 31 cd ${WRKINST} && ${PCP} usr/bin/{cgps,cgpxlogger} ${IDIR_GPSD_CLIENTS}/ 32 32 33 33 include ${TOPDIR}/mk/pkg-bottom.mk


