Changeset 3733

Show
Ignore:
Timestamp:
04/08/08 15:49:18 (8 months ago)
Author:
tg
Message:

by request of wschlich, update and add clients

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/gpsd/Config.in

    r3234 r3733  
    1616 
    1717          http://gpsd.berlios.de/ 
     18 
     19config 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  
    88 
    99PKG_NAME:=              gpsd 
    10 PKG_VERSION:=           2.30 
    11 PKG_RELEASE:=           2 
    12 PKG_MD5SUM:=            dde177174878e8ae6db15f8010da46dd 
     10PKG_VERSION:=           2.37 
     11PKG_RELEASE:=           1 
     12PKG_MD5SUM:=            6c96cc0b2df0279cb7baac1ebc5881d3 
    1313MASTER_SITES:=          http://download.berlios.de/gpsd/ 
    1414 
     
    1616 
    1717$(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})) 
    1819 
    1920TCXXFLAGS+=             -fno-builtin -fno-rtti -nostdinc++ 
    2021TLDFLAGS+=              -luClibc++ -lc -lm -nodefaultlibs 
    2122CONFIGURE_STYLE=        gnu 
    22 CONFIGURE_ARGS+=        --without-x 
     23CONFIGURE_ARGS+=        --without-x \ 
     24                        --disable-python 
    2325BUILD_STYLE=            auto 
    2426INSTALL_STYLE=          auto 
     
    2628 
    2729post-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}/ 
    3232 
    3333include ${TOPDIR}/mk/pkg-bottom.mk