freebsd-ports/print/dvips/pkg-deinstall
Jean-Marc Zucconi 52d947c22f Warn and request confirmation for installing/removing the package. One file
may also be used by xdvi; the package is build with some defaults, which
may be not wanted by the user.
1995-04-22 16:51:49 +00:00

22 lines
368 B
Bash

#!/bin/sh
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
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
exit 0