freebsd-ports/emulators/linux_base-f10/pkg-deinstall
Alexander Leidinger 9657b6671f - add conflict with linux-libgcc
- update bash, glibc, libgcc, libselinux, pcre, slang, termcap and zlib
- add SRPM of libgcc (gcc SRPM itself)
- parametize the glibc version number in the plist
- reword some parts in pkg-*install
2006-05-07 12:11:48 +00:00

18 lines
390 B
Bash

#!/bin/sh
# a deinstallation script for linux_base
case "$2" in
DEINSTALL)
if [ -n "`mount | grep ^linproc`" ] || \
[ -d /compat/linux/proc ]; then
echo ""
echo "You may need to do by hand:"
echo " o unmount linprocfs if mounted"
echo " o delete ${PKG_PREFIX}/proc if present"
echo " o remove/comment linprocfs from /etc/fstab if present"
echo ""
fi
;;
esac
exit 0