aboutsummaryrefslogtreecommitdiff
path: root/www/linux-opera7/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'www/linux-opera7/pkg-install')
-rw-r--r--www/linux-opera7/pkg-install27
1 files changed, 0 insertions, 27 deletions
diff --git a/www/linux-opera7/pkg-install b/www/linux-opera7/pkg-install
deleted file mode 100644
index 18e1ca019af2..000000000000
--- a/www/linux-opera7/pkg-install
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-case $2 in
- PRE-INSTALL)
- ${PAGER:-more} share/doc/opera/LICENSE
- echo
- echo
- echo -n 'Do you agree to the terms of the license? '
- read answer
- case ${answer} in
- [Yy]|[Yy][Ee][Ss])
- exit 0
- ;;
- *)
- exit 1
- ;;
- esac
- ;;
- POST-INSTALL)
- exit 0
- ;;
- *)
- echo "Unexpected Argument $2!!!"
- exit 1
- ;;
-esac
-