blob: 4f63cb406a93cf52552c2873947f0a7356413847 (
plain)
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
|
#!/bin/sh
#
# $Id$
#
# install preformatted manual pages
cmd="$1"; shift
INSTALL_DATA="$1"; shift
mkinstalldirs="$1"; shift
srcdir="$1"; shift
manbase="$1"; shift
suffix="$1"; shift
catinstall="${INSTALL_CATPAGES-yes}"
for f in "$@"; do
echo $f
base=`echo "$f" | sed 's/\([^/]*\/\)*\(.*\)\.\([^.]*\)$/\2/'`
section=`echo "$f" | sed 's/\([^/]*\/\)*\(.*\)\.\([^.]*\)$/\3/'`
mandir="$manbase/man$section"
catdir="$manbase/cat$section"
c="$base.cat$section"
if test "$catinstall" = yes -a -f "$srcdir/$c"; then
if test "$cmd" = install ; then
if test \! -d "$catdir"; then
eval "$mkinstalldirs $catdir"
fi
eval "echo $INSTALL_DATA $srcdir/$c $catdir/$base.$suffix"
eval "$INSTALL_DATA $srcdir/$c $catdir/$base.$suffix"
elif test "$cmd" = uninstall ; then
eval "echo rm -f $catdir/$base.$suffix"
eval "rm -f $catdir/$base.$suffix"
fi
fi
for link in `sed -n -e '/SYNOPSIS/q;/DESCRIPTION/q;s/^\.Nm \([^ ]*\).*/\1/p' $srcdir/$f`; do
if test "$link" = "$base" ; then
continue
fi
if test "$cmd" = install ; then
target="$mandir/$link.$section"
for lncmd in "ln -f $mandir/$base.$section $target" \
"ln -s $base.$section $target" \
"cp -f $mandir/$base.$section $target"
do
if eval "$lncmd"; then
eval echo "$lncmd"
break
fi
done
if test "$catinstall" = yes -a -f "$srcdir/$c"; then
target="$catdir/$link.$suffix"
for lncmd in "ln -f $catdir/$base.$suffix $target" \
"ln -fs $base.$suffix $target" \
"cp -f $catdir/$base.$suffix $target"
do
if eval "$lncmd"; then
eval echo "$lncmd"
break
fi
done
fi
elif test "$cmd" = uninstall ; then
target="$mandir/$link.$section"
eval "echo rm -f $target"
eval "rm -f $target"
if test "$catinstall" = yes; then
target="$catdir/$link.$suffix"
eval "echo rm -f $target"
eval "rm -f $target"
fi
fi
done
done
|