File: installdat.sh

package info (click to toggle)
samba 2%3A3.2.5-4lenny15
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 124,704 kB
  • ctags: 69,181
  • sloc: ansic: 564,153; xml: 219,271; sh: 11,039; perl: 4,458; makefile: 4,301; python: 1,975; cpp: 1,224; exp: 1,147; yacc: 881; awk: 557; csh: 58; sed: 45
file content (65 lines) | stat: -rwxr-xr-x 1,680 bytes parent folder | download | duplicates (3)
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
#!/bin/sh
#fist version March 2002, Herb  Lewis

DESTDIR=$1
DATDIR=`echo $2 | sed 's/\/\//\//g'`
SRCDIR=$3/
shift
shift
shift

case $0 in
	*uninstall*)
		if test ! -d "$DESTDIR/$DATDIR"; then
			echo "Directory $DESTDIR/$DATDIR does not exist! "
			echo "Do a "make installmsg" or "make install" first. "
			exit 1
		fi
		mode='uninstall'
		;;
	*) mode='install' ;;    
esac

for f in $SRCDIR/codepages/*.dat; do
	FNAME="$DESTDIR/$DATDIR/`basename $f`"
	if test "$mode" = 'install'; then
		echo "Installing $f as $FNAME "
		cp "$f" "$FNAME"
		if test ! -f "$FNAME"; then
			echo "Cannot install $FNAME.  Does $USER have privileges? "
			exit 1
		fi
		chmod 0644 "$FNAME"
	elif test "$mode" = 'uninstall'; then
		echo "Removing $FNAME "
		rm -f "$FNAME"
		if test -f "$FNAME"; then
			echo "Cannot remove $FNAME.  Does $USER have privileges? "
			exit 1
		fi
	else
		echo "Unknown mode, $mode.  Script called as $0 "
		exit 1
	fi
done

if test "$mode" = 'install'; then
	cat << EOF
======================================================================
The dat files have been installed.  You may uninstall the dat files
using the command "make uninstalldat" or "make uninstall" to uninstall
binaries, man pages, dat files, and shell scripts.
======================================================================
EOF
else
	cat << EOF
======================================================================
The dat files have been removed.  You may restore these files using
the command "make installdat" or "make install" to install binaries, 
man pages, modules, dat files, and shell scripts.
======================================================================
EOF
fi

exit 0