#! /bin/sh # # $NetBSD: less2netbsd,v 1.3 1999/03/24 09:23:52 mrg Exp $ # # Copyright (c) 1996 Matthew R. Green # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 4. The name of the author may not be used to endorse or promote products # derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # less2netbsd: convert a less source tree into a netbsd less source # tree, under src/usr.bin/less ready for importing. if [ $# -ne 2 ]; then echo "less2netbsd src dest"; exit 1; fi r=$1 d=$2/less case "$d" in /*) ;; *) d=`/bin/pwd`/$d ;; esac case "$r" in /*) ;; *) r=`/bin/pwd`/$r ;; esac echo preparing directory $d rm -rf $d mkdir -p $d; cd $d mkdir -p src/usr.bin/less/less src/usr.bin/less/lesskey src/usr.bin/less/lessecho ### start less ############################### cd $r echo less: src='INSTALL README ch.c cmdbuf.c defines.h filename.c help.c jump.c line.c main.c optfunc.c opttbl.c prompt.c screen.c tags.c acconfig.h charset.c command.c forwback.c ifile.c linenum.c mark.c option.c os.c position.c regexp.c search.c ttyin.c NEWS brac.c cmd.h decode.c edit.c funcs.h input.c less.h lsystem.c option.h output.c position.h regexp.h signal.c version.c less.nro lglob.h' pax -rvw $src $d/src/usr.bin/less/less cd $d/src/usr.bin/less/less mv less.nro less.1 ### end less ############################### ### start lesskey ############################### cd $r echo lesskey: src='lesskey.c lesskey.h lesskey.nro' pax -rvw $src $d/src/usr.bin/less/lesskey cd $d/src/usr.bin/less/lesskey mv lesskey.nro lesskey.1 ### end lesskey ############################### ### start lessecho ############################### cd $r echo lessecho: src='lessecho.c' pax -rvw $src $d/src/usr.bin/less/lessecho ### end lesskey ############################### find $d -name '*.[ch]' -print | while read c; do chmod u+w $c sed 1q < $c | grep '\$NetBSD' || ( cat <<'__eof_header' /* $NetBSD: less2netbsd,v 1.3 1999/03/24 09:23:52 mrg Exp $ */ __eof_header cat $c ) > /tmp/l2n$$ && cp /tmp/l2n$$ $c && echo added RCS tags to $c done echo done exit 0