aboutsummaryrefslogtreecommitdiffstats
path: root/x11/XFree86-aoutlibs/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'x11/XFree86-aoutlibs/pkg-install')
-rw-r--r--x11/XFree86-aoutlibs/pkg-install19
1 files changed, 0 insertions, 19 deletions
diff --git a/x11/XFree86-aoutlibs/pkg-install b/x11/XFree86-aoutlibs/pkg-install
deleted file mode 100644
index dba6ec91ef37..000000000000
--- a/x11/XFree86-aoutlibs/pkg-install
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-TTY=/dev/tty
-
-case $2 in
- POST-INSTALL)
- ;;
- PRE-INSTALL)
- if dialog --yesno "This port installs old X libraries, which contain possible security exploits. If security is a concern for you, then you can install fresh a.out libraries from the XFree86 3.3.6 port, although these might not work with older a.out binaries." 16 65 < ${TTY} >${TTY} 2>&1; then
- exit 0
- else
- exit 1
- fi
- ;;
- *)
- echo "Unexpected argument $2!"
- exit 1
- ;;
-esac
-exit 0