freebsd-ports/x11/wrapper/pkg-deinstall
Renato Botelho e7f43038ad - Fix PLIST problem and unbreak
PR:		ports/85024
Submitted by:	Marcus Grando <marcus@corp.grupos.com.br>
Approved by:	maintainer timeout (20 days)
2005-09-06 19:20:40 +00:00

16 lines
492 B
Bash

#!/bin/sh
if [ -e ${PKG_PREFIX}/bin/X.bck ]; then
mv ${PKG_PREFIX}/bin/X.bck ${PKG_PREFIX}/bin/X
else
if [ -x ${PKG_PREFIX}/bin/XFree86 ]; then
ln -sf ${PKG_PREFIX}/bin/XFree86 ${PKG_PREFIX}/bin/X
exit 0
elif [ -x ${PKG_PREFIX}/bin/Xorg ]; then
ln -sf ${PKG_PREFIX}/bin/Xorg ${PKG_PREFIX}/bin/X
exit 0
else
rm -f ${PKG_PREFIX}/bin/X
fi
fi
[ -x ${PKG_PREFIX}/bin/XFree86 ] && chmod u+s ${PKG_PREFIX}/bin/XFree86
[ -x ${PKG_PREFIX}/bin/Xorg ] && chmod u+s ${PKG_PREFIX}/bin/Xorg