blob: 8de08020f79058dc8dd3305df17ed371092841df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
#
# $NetBSD: DEINSTALL,v 1.2 2002/06/20 19:28:24 jlam Exp $
case ${STAGE} in
POST-DEINSTALL)
for file in au coda-setup-ports codaconfedit; do
${RM} -f ${PKG_PREFIX}/sbin/${file}
if [ -f ${PKG_PREFIX}/sbin/vice-${file} ]; then
${LN} -sf vice-${file} ${PKG_PREFIX}/sbin/${file}
fi
done
;;
esac
|