Changeset 3702

Show
Ignore:
Timestamp:
03/09/08 15:57:00 (9 months ago)
Author:
tg
Message:

update; spaetzle@ said he’ll test it now

Files:

Legend:

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

    r3573 r3702  
    1010          shell good for interactive and especially script use.  It has 
    1111          UTF-8 support in the emacs command line editing mode; corres- 
    12           ponds to OpenBSD 4.2-current ksh sans GNU bash-like $PS1; the 
     12          ponds to OpenBSD 4.3-beta ksh without GNU bash-like $PS1; the 
    1313          build environment requirements are autoconfigured; throughout 
    1414          code simplification/bugfix/enhancement has been done, and the 
  • trunk/freewrt/package/mksh/Makefile

    r3617 r3702  
    1616 
    1717do-build: 
     18        -${TARGET_CC} -v 
    1819        cd ${WRKBUILD} && CC='${TARGET_CC}' CFLAGS='${TCFLAGS}' \ 
    1920            CPPFLAGS='${TCPPFLAGS}' LDFLAGS='${TLDFLAGS}' \ 
  • trunk/freewrt/package/mksh/Makefile.inc

    r3645 r3702  
    66 
    77PKG_NAME=               mksh 
    8 PKG_VERSION=            32 
     8PKG_VERSION=            33 
    99PKG_RELEASE=            1 
    1010DISTFILES=              ${PKG_NAME}-R${PKG_VERSION}.cpio.gz 
    11 PKG_MD5SUM=             c54c416de790c67c0f4409008a68efd4 
     11PKG_MD5SUM=             dbe6561bf94c4a85f92aecc22fe2c8b9 
    1212 
    1313MASTER_SITES=           ${MASTER_SITE_MIRBSD:distfiles/=dist/mir/mksh/} 
  • trunk/freewrt/package/mksh/patches/patch-dot_mkshrc

    r3645 r3702  
    66          – yofuh doesn’t like $? in $PS1 
    77 
    8 --- mksh.orig/dot.mkshrc        Thu Oct 25 14:54:00 2007 
    9 +++ mksh/dot.mkshrc     Sat Oct 27 01:48:48 2007 
    10 @@ -24,13 +24,15 @@ 
    11  #- 
    12  # sample mksh initialisation file for interactive shells 
     8--- mksh.orig/dot.mkshrc        Sat Mar  1 21:24:58 2008 
     9+++ mksh/dot.mkshrc     Sun Mar  2 23:04:42 2008 
     10@@ -25,13 +25,15 @@ 
     11 # sample mksh initialisation file for interactive shells; install as 
     12 # /etc/skel/.mkshrc (as root, for new accounts) or copy to ~/.mkshrc 
    1313  
    1414-: ${EDITOR:=/bin/ed} ${TERM:=vt100} ${HOSTNAME:=$(ulimit -c 0;hostname -s 2>&-)} 
     
    2121-       (( e )) && print -n "$e|" 
    2222+# enable this back if you want the errorlevel in your prompt 
    23 +# this is default in upstream mksh, disabled only locally 
     23+# this is default in upstream mksh, disabled locally in fwrt 
    2424+#      (( e )) && print -n "$e|" 
    2525 } 
    2626 PS1='$(precmd)${USER:=$(ulimit -c 0;id -un 2>&- || print \?)}@${HOSTNAME%%.*}:$( 
    2727        typeset pfx=~ wd=${PWD:-?} 
    28 @@ -50,7 +52,7 @@ export EDITOR HOSTNAME LESSHISTFILE=- MK 
     28@@ -51,7 +53,7 @@ export EDITOR HOSTNAME LESSHISTFILE=- MK 
    2929 alias l='/bin/ls -F' 
    3030 alias la='l -a' 
     
    3333+alias lo='la -l' 
    3434 alias which='whence -p' 
    35  whence -p rot13 >&- || alias rot13='tr [A-Za-z] [N-ZA-Mn-za-m]' 
    36  whence -p hd >&- || function hd { 
     35 whence -p rot13 >&- || alias rot13='tr \ 
     36     abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ \ 
  • trunk/freewrt/tools/mksh/Makefile

    r3645 r3702  
    1313 
    1414${WRKBUILD}/mksh: ${WRKBUILD}/.configured 
     15        -uname -a; ${HOSTCC} -v 
    1516        cd ${WRKBUILD} && \ 
    1617            env CC='${HOSTCC}' CFLAGS='${HOSTCFLAGS}' \