summaryrefslogtreecommitdiff
path: root/emulators/freebsd_lib/pkg/INSTALL
diff options
context:
space:
mode:
authorzuntum <zuntum>2001-10-31 22:52:58 +0000
committerzuntum <zuntum>2001-10-31 22:52:58 +0000
commitec263708b4436f2f6fe8ff2c5ddd38bc49dbd322 (patch)
treeb3c17888184b1b17ed1b1fa28f1697197bb0b4f6 /emulators/freebsd_lib/pkg/INSTALL
parent26e767802169bc1a013a3a64740d0a84afa59755 (diff)
downloadpkgsrc-ec263708b4436f2f6fe8ff2c5ddd38bc49dbd322.tar.gz
Move pkg/ files into package's toplevel directory
Diffstat (limited to 'emulators/freebsd_lib/pkg/INSTALL')
-rw-r--r--emulators/freebsd_lib/pkg/INSTALL34
1 files changed, 0 insertions, 34 deletions
diff --git a/emulators/freebsd_lib/pkg/INSTALL b/emulators/freebsd_lib/pkg/INSTALL
deleted file mode 100644
index 40af90b9a13..00000000000
--- a/emulators/freebsd_lib/pkg/INSTALL
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-# $NetBSD: INSTALL,v 1.1 1999/05/22 19:31:07 tv Exp $
-
-emul=freebsd
-if [ "$2" != "POST-INSTALL" ]; then exit 0; fi
-
-cat <<EOF
-==============================================================================
-
-Do not forget to include COMPAT_FREEBSD in your kernel configuration file.
-(FreeBSD binaries require this option in order to work.)
-Note that FreeBSD ELF binaries are not yet supported with this package.
-EOF
-
-if [ "`cd /etc && cd ${PKG_PREFIX}/emul/$emul 2>/dev/null && pwd -P`" != \
- "`cd / && cd /emul/$emul 2>/dev/null && pwd -P`" ]; then
- if [ -e /emul/$emul -o -L /emul/$emul ] || \
- [ \( -e /emul -o -L /emul \) -a ! -d /emul ]; then
- cat <<-EOF
-
- IMPORTANT: You must create a symbolic link from /emul/$emul to
- ${PKG_PREFIX}/emul/$emul in order for this package to work properly.
- (It seems there is something else located at /emul/$emul.)
- EOF
- else
- mkdir -p /emul
- ln -sf ${PKG_PREFIX}/emul/$emul /emul/$emul
- fi
-fi
-
-cat <<EOF
-
-==============================================================================
-EOF