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