summaryrefslogtreecommitdiff
path: root/net/coda5_server/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'net/coda5_server/INSTALL')
-rw-r--r--net/coda5_server/INSTALL25
1 files changed, 4 insertions, 21 deletions
diff --git a/net/coda5_server/INSTALL b/net/coda5_server/INSTALL
index 7b065fcd3cc..8dcb5005006 100644
--- a/net/coda5_server/INSTALL
+++ b/net/coda5_server/INSTALL
@@ -1,30 +1,13 @@
#! /bin/sh
#
-# $NetBSD: INSTALL,v 1.1 2001/10/31 22:55:04 zuntum Exp $
-
-PKGNAME=$1
-STAGE=$2
-
-LN="@LN@"
-RM="@RM@"
+# $NetBSD: INSTALL,v 1.2 2002/06/20 19:28:35 jlam Exp $
case ${STAGE} in
-PRE-INSTALL)
- ;;
-
POST-INSTALL)
- # coda-client may have already created these links
- for script in coda-setup-ports codaconfedit; do
- if [ ! -f ${PKG_PREFIX}/sbin/${script} ]
- then
- ${LN} -sf vice-${script} ${PKG_PREFIX}/sbin/${script}
+ for file in au coda-setup-ports codaconfedit; do
+ if [ ! -f ${PKG_PREFIX}/sbin/${file} ]; then
+ ${LN} -sf vice-${file} ${PKG_PREFIX}/sbin/${file}
fi
done
;;
-
-*)
- echo "Unexpected argument: ${STAGE}"
- exit 1
- ;;
esac
-exit 0