blob: 92ded2f1844b9de8a4cff28ea5b38b9f01474899 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
#! /bin/sh
if test $# -lt 4; then
echo >&2 "Usage: $0 <dist-tree-name> <top-source-dir> <top-build-dir> <type> <make-args>"
exit 2
fi
case "$1" in
/*) disttree=$1 ;;
*) disttree=`pwd`/$1 ;;
esac
case "$2" in
/*) sdir_top=$2 ;;
*) sdir_top=`pwd`/$2 ;;
esac
case "$3" in
/*) dir_top=$3 ;;
*) dir_top=`pwd`/$3 ;;
esac
type=$4
shift 4
rm -rf $disttree
sed_separate='
:1
$!{
N
b1
}
s/\n/ /g
s/^/deplist=;globlist=! /
s/$/ !/
s/ */ /g
s/ \([^?*[!][^?*[!]*\) / !deplist="$deplist \1"! /g
s/! !/;/g
s/! \([^!]*\) !/;globlist="$globlist \1";/g
s/!/;/g
s/;;*/;/g
'
filelist=filelist$$
trap 'rm -f $filelist; rm -rf $disttree; exit 1' 1 2 15
(
cd $sdir_top
find . -name '?*.*' -prune -o -name .distfiles -print
) > $filelist
( while read dfn; do
subdir=`echo $dfn | sed 's,/\.distfiles$,,'`
echo >&2 "Processing directory $subdir..."
eval "DISTFILES_$type="
. $sdir_top/$dfn
eval "distfiles=\$DISTFILES_$type"
if test -n "$distfiles"; then
cmds=`echo "$distfiles" | sed -e "$sed_separate"`
eval "$cmds"
if test -n "$deplist" && test -f $dir_top/$subdir/Makefile; then
( trap '' 1 2 15; cd $dir_top/$subdir && "$@" $deplist ) || exit 1
fi
$sdir_top/mkinstalldirs $disttree/$subdir || exit 1
for f in $deplist `test -z "$globlist" || ( cd $dir_top/$subdir && eval "echo $globlist")`; do
if test -f $dir_top/$subdir/$f; then
# ln $dir_top/$subdir/$f $disttree/$subdir/$f || \
cp -p $dir_top/$subdir/$f $disttree/$subdir/$f || exit 1
elif test -f $sdir_top/$subdir/$f; then
# ln $sdir_top/$subdir/$f $disttree/$subdir/$f || \
cp -p $sdir_top/$subdir/$f $disttree/$subdir/$f || exit 1
else
echo >&2 "$0: can't find file $subdir/$f"
exit 1
fi
done
fi
done ) < $filelist
status=$?
rm -f $filelist
trap '' 1 2 15
if test $status -ne 0; then
rm -rf $disttree
exit $status
fi
exec chmod -R a+rX,u+w,g-s,go-w $disttree
|