summaryrefslogblamecommitdiff
path: root/print/xdvi/pkg-deinstall
blob: 6a3fcb2b788572bb24ad9a332584339ef1a6b77b (plain) (tree)




















                                                                       
#!/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

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