NetBSD/distrib/sets/makeflist

42 lines
853 B
Plaintext
Raw Normal View History

#!/bin/sh
#
1997-10-28 20:29:45 +03:00
# $NetBSD: makeflist,v 1.4 1997/10/28 17:29:45 veego Exp $
#
# Print out the files in some or all lists. Usage:
1997-10-28 16:35:23 +03:00
# makeflist [-arch arch] [-setd setsdir] [-x11] [setname ...]
#
1994-08-29 19:21:02 +04:00
# set defaults
arch=`uname -m`
setd=`pwd`
lists="base comp etc games man misc text"
1997-10-28 20:29:45 +03:00
xlists="xbase xcomp xcontrib xfont xserver"
1994-08-29 19:21:02 +04:00
# handle args
while :
do
case $1 in
-arch) arch=$2; shift;;
-setd) setd=$2; shift;;
1997-10-28 16:35:23 +03:00
-x11) lists=$xlists;;
-*) echo "bad option"; exit 1;;
*) break;;
esac
shift
done
[ "$@" ] && lists="$@"
1994-08-29 19:21:02 +04:00
# EXTRA SPECIAL (not done here): secr
for setname in $lists
do
cat $setd/lists/$setname/mi $setd/lists/$setname/md.${arch}
# Split man/md_share into: this arch, other arch
if [ $setname = man ]; then
grep ${arch} $setd/lists/man/md_share
fi
if [ $setname = misc ]; then
grep -v ${arch} $setd/lists/man/md_share
fi
done | sort