summaryrefslogtreecommitdiff
path: root/net/coda5_server/INSTALL
diff options
context:
space:
mode:
authorzuntum <zuntum@pkgsrc.org>2001-10-31 22:52:58 +0000
committerzuntum <zuntum@pkgsrc.org>2001-10-31 22:52:58 +0000
commitd038a73ebd432fae3ce355b84443038f88cb7199 (patch)
treeb3c17888184b1b17ed1b1fa28f1697197bb0b4f6 /net/coda5_server/INSTALL
parent70bae73d77e50256a2ee847bd9be11b761bcea01 (diff)
downloadpkgsrc-d038a73ebd432fae3ce355b84443038f88cb7199.tar.gz
Move pkg/ files into package's toplevel directory
Diffstat (limited to 'net/coda5_server/INSTALL')
-rw-r--r--net/coda5_server/INSTALL30
1 files changed, 30 insertions, 0 deletions
diff --git a/net/coda5_server/INSTALL b/net/coda5_server/INSTALL
new file mode 100644
index 00000000000..7b065fcd3cc
--- /dev/null
+++ b/net/coda5_server/INSTALL
@@ -0,0 +1,30 @@
+#! /bin/sh
+#
+# $NetBSD: INSTALL,v 1.1 2001/10/31 22:55:04 zuntum Exp $
+
+PKGNAME=$1
+STAGE=$2
+
+LN="@LN@"
+RM="@RM@"
+
+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}
+ fi
+ done
+ ;;
+
+*)
+ echo "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0