0508239181
Linux compatibility package based on the openSUSE Linux distribution. Please visit http://www.opensuse.org/ for more information about openSUSE Linux. This package supports running ELF binaries linked with glibc2 that don't require X11 shared libraries.
24 lines
659 B
Text
24 lines
659 B
Text
# $NetBSD: DEINSTALL,v 1.1.1.1 2012/03/21 13:35:50 obache Exp $
|
|
|
|
EMULDIR="${PKG_PREFIX}/@EMULSUBDIR@"
|
|
|
|
case "${STAGE}" in
|
|
DEINSTALL)
|
|
# Run any actions that require root privileges.
|
|
${TEST} ! -x ./+ROOT_ACTIONS ||
|
|
./+ROOT_ACTIONS REMOVE ${PKG_METADATA_DIR} || exit 1
|
|
|
|
# Blow away the /proc directory
|
|
${RMDIR} -p ${EMULDIR}/proc
|
|
|
|
# Remove some files created by pkgsrc.
|
|
${RM} -f ${EMULDIR}/etc/ld.so.cache
|
|
${RM} -f ${EMULDIR}/etc/mtab
|
|
${RM} -f ${EMULDIR}/etc/group
|
|
${RM} -f ${EMULDIR}/etc/gshadow
|
|
${RM} -f ${EMULDIR}/etc/passwd
|
|
${RM} -f ${EMULDIR}/etc/shadow
|
|
${RM} -f ${EMULDIR}/var/cache/ldconfig/aux-cache
|
|
${RM} -rf ${EMULDIR}/var/lock
|
|
;;
|
|
esac
|