Changeset 3028

Show
Ignore:
Timestamp:
06/29/07 17:41:12 (5 years ago)
Author:
tg
Message:

attempt to integrate fwwif into the build, still experimental

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/mk/pkg-bottom.mk

    r2940 r3028  
    114114        cd ${WRKBUILD} && env ${MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \ 
    115115            DESTDIR='${WRKINST}' ${FAKE_FLAGS} ${INSTALL_TARGET} 
    116 else ifneq ($(filter bsd,${BUILD_STYLE}),) 
     116else ifneq ($(filter bsd,${INSTALL_STYLE}),) 
    117117        @mkdir -p ${WRKINST}/{,usr/}{bin,include,lib,sbin} 
    118118        cd ${WRKBUILD} && env ${MAKE_ENV} ${BSDMAKE} -f ${MAKE_FILE} \ 
  • trunk/freewrt/package/Config.in

    r2990 r3028  
    3838source "package/fwrtc/Config.in" 
    3939source "package/fwupdate/Config.in" 
     40source "package/fwwif/Config.in" 
    4041endmenu 
    4142 
  • trunk/freewrt/package/Depends.mk

    r3002 r3028  
    3636fprobe-compile: libpcap-compile 
    3737freetype-compile: zlib-compile 
     38fwwif-compile: tntnet-compile 
    3839gdb-compile: ncurses-compile readline-compile 
    3940ifneq ($(strip ${FWRT_PACKAGE_LIBINTL}),) 
  • trunk/freewrt/package/Makefile

    r2994 r3028  
    8989package-$(FWRT_PACKAGE_FWRTC) += fwrtc 
    9090package-$(FWRT_PACKAGE_FWUPDATE) += fwupdate 
     91package-$(FWRT_PACKAGE_FWWIF) += fwwif 
    9192package-$(FWRT_COMPILE_GDB) += gdb 
    9293package-$(FWRT_PACKAGE_GETTEXT) += gettext 
  • trunk/freewrt/package/fwwif

    • Property svn:ignore set to
      info.mk
  • trunk/freewrt/package/fwwif/extra/LICENCE

    r2977 r3028  
    22Copyright © 2007 
    33        Thorsten Glaser <tg@mirbsd.de> 
     4and all contributors. 
    45 
    56Provided that these terms and disclaimer and all copyright notices 
  • trunk/freewrt/package/fwwif/extra/Makefile

    r3022 r3028  
    1010CROSSROOT?=     ../../../cross_${XARCH} 
    1111 
    12 TOOLPATH=       ${CROSSROOT}/host/bin 
    1312CC=             ${CROSSROOT}/host/${XARCH}-linux-uclibc/bin/gcc 
    1413CXX=            ${CROSSROOT}/host/${XARCH}-linux-uclibc/bin/g++ 
     
    5352 
    5453.SUFFIXES: .ecpp .gif .jpg .css .js .cpp 
    55 EXTRA_ENV+=     "PATH=$$PATH:$(strip ${TOOLPATH})
     54EXTRA_ENV+=     "PATH=$$PATH:${CROSSROOT}/host/bin
    5655ECPPC=          env ${EXTRA_ENV} ecppc 
    5756TNTNET=         env ${EXTRA_ENV} tntnet 
  • trunk/freewrt/scripts/rstrip.sh

    r2625 r3028  
    1414fi 
    1515 
     16if [[ $1 = +keep ]]; then 
     17        stripcomm= 
     18        shift 
     19else 
     20        stripcomm=" -R .comment" 
     21fi 
     22 
    1623TARGETS=$* 
    1724 
     
    2633        F=${line%%:*} 
    2734        V=${F##*/fake-+([!/])/} 
    28         T="${prefix}strip -R .comment
     35        T="${prefix}strip$stripcomm
    2936        case $line in 
    3037        *ELF*executable*statically\ linked*)