freebsd-ports/games/qix/pkg-deinstall
Doug Barton 44fa804810 s/X11BASE/LOCALBASE/, or equivalent.
The X11BASE variable is long gone, however these ports were not updated.
2012-06-24 21:53:38 +00:00

18 lines
375 B
Bash

#!/bin/sh
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
X11BASE=/usr/local
FONTDIR=$X11BASE/lib/X11/fonts/local
ALIAS=$FONTDIR/fonts.alias
sed -e /qix/d $ALIAS > $ALIAS.tmp
mv $ALIAS.tmp $ALIAS
if [ ! -s $ALIAS ]; then rm -f $ALIAS; fi
$X11BASE/bin/mkfontdir $FONTDIR
if [ `ls -l $FONTDIR/fonts.dir|awk '{print $5}'` = 2 ]; then
rm $FONTDIR/fonts.dir
fi
exit 0