| 1 | #! /bin/bash
|
|---|
| 2 | #
|
|---|
| 3 | # mkclone - symlink every file appearing in $src/MANIFEST to a corresponding
|
|---|
| 4 | # file in the target directory ($1). Directories specified in
|
|---|
| 5 | # MANIFEST are created in the target directory
|
|---|
| 6 | #
|
|---|
| 7 | # Copyright (C) 1996-2002 Free Software Foundation, Inc.
|
|---|
| 8 | #
|
|---|
| 9 | # This program is free software; you can redistribute it and/or modify
|
|---|
| 10 | # it under the terms of the GNU General Public License as published by
|
|---|
| 11 | # the Free Software Foundation; either version 2, or (at your option)
|
|---|
| 12 | # any later version.
|
|---|
| 13 | #
|
|---|
| 14 | # This program is distributed in the hope that it will be useful,
|
|---|
| 15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 17 | # GNU General Public License for more details.
|
|---|
| 18 | #
|
|---|
| 19 | # You should have received a copy of the GNU General Public License
|
|---|
| 20 | # along with this program; if not, write to the Free Software
|
|---|
| 21 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|---|
| 22 | #
|
|---|
| 23 | prog=`basename $0`
|
|---|
| 24 |
|
|---|
| 25 | SRCDIR=src
|
|---|
| 26 |
|
|---|
| 27 | USAGE="usage: $prog [-m manifest] [-s srcdir] [-v] [-d] [-h] target"
|
|---|
| 28 | while getopts dhm:s:v opt
|
|---|
| 29 | do
|
|---|
| 30 | case "$opt" in
|
|---|
| 31 | m) MANIFEST=$OPTARG ;;
|
|---|
| 32 | s) SRCDIR=$OPTARG ;;
|
|---|
| 33 | v) verbose=y ;;
|
|---|
| 34 | d) ECHO=echo debug=y ;;
|
|---|
| 35 | h) hardlinks=y ;;
|
|---|
| 36 | ?) echo $USAGE >&2
|
|---|
| 37 | exit 2;;
|
|---|
| 38 | esac
|
|---|
| 39 | done
|
|---|
| 40 |
|
|---|
| 41 | : ${MANIFEST:=${SRCDIR}/MANIFEST}
|
|---|
| 42 |
|
|---|
| 43 | [ -n "$debug" ] && verbose=
|
|---|
| 44 |
|
|---|
| 45 | shift $(( $OPTIND - 1 ))
|
|---|
| 46 |
|
|---|
| 47 | if [ $# -lt 1 ]; then
|
|---|
| 48 | echo $USAGE >&2
|
|---|
| 49 | exit 2
|
|---|
| 50 | fi
|
|---|
| 51 |
|
|---|
| 52 | if [ ! -f $MANIFEST ]; then
|
|---|
| 53 | echo "$prog: $MANIFEST: no such file or directory" >&2
|
|---|
| 54 | echo "$prog: must be run with valid -s argument or from source directory" >&2
|
|---|
| 55 | exit 1
|
|---|
| 56 | fi
|
|---|
| 57 |
|
|---|
| 58 | rm_ltmp=false
|
|---|
| 59 | LINKTEMP=`mktemp -t linktmp.XXXXXXXX 2>/dev/null`
|
|---|
| 60 | if [ -z "$LINKTEMP" ]; then
|
|---|
| 61 | : ${TMPDIR:=/tmp}
|
|---|
| 62 | LINKTEMP=${TMPDIR}/linktmp.$$
|
|---|
| 63 | rm_ltmp=true
|
|---|
| 64 | fi
|
|---|
| 65 |
|
|---|
| 66 | $rm_ltmp && rm -f ${LINKTEMP}
|
|---|
| 67 | # if the user specified hard links, then do that. otherwise, try to use
|
|---|
| 68 | # symlinks if they're present
|
|---|
| 69 | if [ -n "$hardlinks" ]; then
|
|---|
| 70 | LN=ln
|
|---|
| 71 | elif (ln -s /dev/null ${LINKTEMP}) >/dev/null 2>&1; then
|
|---|
| 72 | LN="ln -s"
|
|---|
| 73 | else
|
|---|
| 74 | LN=ln
|
|---|
| 75 | fi
|
|---|
| 76 | rm -f ${LINKTEMP}
|
|---|
| 77 |
|
|---|
| 78 | TARGET=$1
|
|---|
| 79 |
|
|---|
| 80 | if [ ! -d "$TARGET" ]; then
|
|---|
| 81 | mkdir "$TARGET"
|
|---|
| 82 | fi
|
|---|
| 83 |
|
|---|
| 84 | echo "${prog}: creating clone of bash source tree (from $SRCDIR) in $TARGET"
|
|---|
| 85 |
|
|---|
| 86 | cd "$TARGET" || { echo "${prog}: cannot cd to $TARGET" >&2 ; exit 1; }
|
|---|
| 87 |
|
|---|
| 88 | while read fname type mode
|
|---|
| 89 | do
|
|---|
| 90 | [ -z "$fname" ] && continue
|
|---|
| 91 |
|
|---|
| 92 | case "$fname" in
|
|---|
| 93 | \#*) continue ;;
|
|---|
|
|---|