1995-04-22 02:14:30 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
prefix=/usr/local
|
|
|
|
|
|
|
|
cat << END
|
|
|
|
|
|
|
|
Installing xdvi will remove $prefix/MakeTeXPK. This file may be used by
|
|
|
|
dvips or other programs. If this is the case, you must make a backup of
|
|
|
|
this file now.
|
|
|
|
|
|
|
|
END
|
|
|
|
|
1999-07-04 23:41:46 +02:00
|
|
|
if [ -z ${PACKAGE_BUILDING} ]; then
|
|
|
|
echo -n "do you want to deinstall the package ? [y] "
|
|
|
|
read answ; if [ "$answ" = "" ]; then answ=y; fi
|
|
|
|
case $answ in
|
|
|
|
y*|Y*) break;;
|
|
|
|
*) exit 1;;
|
|
|
|
esac
|
|
|
|
fi
|
1995-04-22 02:14:30 +02:00
|
|
|
|
|
|
|
exit 0
|