1995-04-22 00:14:30 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2005-03-25 06:11:28 +00:00
|
|
|
prefix=%%PREFIX%%
|
|
|
|
|
|
|
|
if [ "$2" != "DEINSTALL" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
1995-04-22 00:14:30 +00:00
|
|
|
|
|
|
|
cat << END
|
|
|
|
|
2005-03-25 06:11:28 +00:00
|
|
|
Installing xdvi will remove $prefix/bin/MakeTeXPK. This file may be used by
|
1995-04-22 00:14:30 +00:00
|
|
|
dvips or other programs. If this is the case, you must make a backup of
|
|
|
|
this file now.
|
|
|
|
|
|
|
|
END
|
|
|
|
|
1999-07-04 21:41:46 +00: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 00:14:30 +00:00
|
|
|
|
|
|
|
exit 0
|