- Timestamp:
- 07/22/08 03:10:23 (1 month ago)
- Files:
-
- trunk/freewrt/package/joe/Makefile (modified) (1 diff)
- trunk/freewrt/package/mksh/Config.in (modified) (2 diffs)
- trunk/freewrt/package/mksh/Makefile.inc (modified) (1 diff)
- trunk/freewrt/package/mksh/patches/patch-dot_mkshrc (modified) (2 diffs)
- trunk/freewrt/tools/mksh/Makefile (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/package/joe/Makefile
r3159 r3779 8 8 9 9 PKG_NAME= joe 10 PKG_VERSION= 3.1jupp 810 PKG_VERSION= 3.1jupp9 11 11 PKG_RELEASE= 1 12 PKG_MD5SUM= 8b1871c80ba09f170fd08b58121d2f4112 PKG_MD5SUM= 39018a33e210480595020ecf0870e160 13 13 14 14 MASTER_SITES= http://www.mirbsd.org/MirOS/dist/jupp/ \ trunk/freewrt/package/mksh/Config.in
r3702 r3779 10 10 shell good for interactive and especially script use. It has 11 11 UTF-8 support in the emacs command line editing mode; corres- 12 ponds to OpenBSD 4. 3-beta ksh without GNU bash-like $PS1; the12 ponds to OpenBSD 4.4-beta ksh without GNU bash-like $PS1; the 13 13 build environment requirements are autoconfigured; throughout 14 14 code simplification/bugfix/enhancement has been done, and the … … 19 19 which can be used to further customise the look and feel. 20 20 21 mksh is an essential part of the FreeWRT operating system; if you22 disable it, your system will become unusable.21 mksh is an essential part of the FreeWRT operating system; if 22 you disable it, your system will become unusable. 23 23 24 24 http://mirbsd.de/mksh trunk/freewrt/package/mksh/Makefile.inc
r3735 r3779 6 6 7 7 PKG_NAME= mksh 8 PKG_VERSION= 3 3d8 PKG_VERSION= 35b 9 9 PKG_RELEASE= 1 10 10 DISTFILES= ${PKG_NAME}-R${PKG_VERSION}.cpio.gz 11 PKG_MD5SUM= 8ad2547ad55dc3a02b13554ab9b5c9c811 PKG_MD5SUM= 0e96cd3f8141b7abc679bbb303a8be2c 12 12 13 13 MASTER_SITES= ${MASTER_SITE_MIRBSD:distfiles/=dist/mir/mksh/} trunk/freewrt/package/mksh/patches/patch-dot_mkshrc
r3717 r3779 6 6 – yofuh doesn’t like $? in $PS1 7 7 8 --- mksh.orig/dot.mkshrc Mon Mar 3 20:22:3720089 +++ mksh/dot.mkshrc Fri Mar 28 22:04:44200810 @@ -2 5,13 +25,15 @@11 # sample mksh initialisation file for interactive shells; install as12 # /etc/skel/.mkshrc (as root, for new accounts) or copy to ~/.mkshrc8 --- mksh.orig/dot.mkshrc Sat May 17 18:27:55 2008 9 +++ mksh/dot.mkshrc Mon Jul 21 21:02:05 2008 10 @@ -2,13 +2,15 @@ 11 #- 12 # ~/.mkshrc: mksh initialisation file for interactive shells 13 13 14 14 -: ${EDITOR:=/bin/ed} ${TERM:=vt100} ${HOSTNAME:=$(ulimit -c 0;hostname -s 2>&-)} 15 15 +: ${EDITOR:=/bin/ed} ${TERM:=vt100} ${HOSTNAME:=$(</proc/sys/kernel/hostname)} 16 16 [[ $HOSTNAME = @(localhost|*([ ])) ]] && HOSTNAME=$(ulimit -c 0;hostname 2>&-) 17 : ${HOSTNAME:=nil}; PS1='#'; [[ "$(ulimit -c 0; id -u 2>&-)" -eq 0 ]] || PS1='$'17 : ${HOSTNAME:=nil}; if (( USER_ID )); then PS1='$'; else PS1='#'; fi 18 18 function precmd { 19 typeset - Ui10e=$?19 typeset -i e=$? 20 20 21 21 - (( e )) && print -n "$e|" … … 26 26 PS1='$(precmd)${USER:=$(ulimit -c 0;id -un 2>&- || print \?)}@${HOSTNAME%%.*}:$( 27 27 typeset pfx=~ wd=${PWD:-?} 28 @@ - 51,7 +53,7 @@ export EDITOR HOSTNAME LESSHISTFILE=- MK29 alias l=' /bin/ls -F'28 @@ -30,7 +32,7 @@ unalias ls 29 alias l='ls -F' 30 30 alias la='l -a' 31 31 alias ll='l -l' trunk/freewrt/tools/mksh/Makefile
- Property svn:keywords set to FreeWRT=Id
r3702 r3779 13 13 14 14 ${WRKBUILD}/mksh: ${WRKBUILD}/.configured 15 -uname -a; ${HOSTCC} -v16 15 cd ${WRKBUILD} && \ 17 16 env CC='${HOSTCC}' CFLAGS='${HOSTCFLAGS}' \ 18 17 ${BASH} Build.sh -Q -r 18 -cd ${WRKBUILD} && ./test.sh -v 19 19 20 20 source: fetch


