summaryrefslogtreecommitdiff
path: root/editors/wordperfect/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'editors/wordperfect/INSTALL')
-rw-r--r--editors/wordperfect/INSTALL35
1 files changed, 35 insertions, 0 deletions
diff --git a/editors/wordperfect/INSTALL b/editors/wordperfect/INSTALL
new file mode 100644
index 00000000000..0a0621b81ee
--- /dev/null
+++ b/editors/wordperfect/INSTALL
@@ -0,0 +1,35 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1 2001/10/31 21:24:21 zuntum Exp $
+
+PKGNAME=$1
+STAGE=$2
+
+case ${STAGE} in
+PRE-INSTALL)
+ ;;
+POST-INSTALL)
+ cat << EOF
+===========================================================================
+Please read carefully through the End User License Agreement for Corel(R)
+WordPerfect(R) for Linux at
+
+ ${PKG_PREFIX}/@WPDIR@/wpbin/README.lic
+
+By installing this package, you have agreed to the terms of the license.
+---------------------------------------------------------------------------
+You need to register your license for WordPerfect(R) for Linux at:
+
+ http://venus.corel.com/nasapps/wp8linuxreg/register.html
+
+After you have registered, you will receive a product registration key
+to be entered into WordPerfect that will allow WordPerfect to function.
+===========================================================================
+EOF
+ ;;
+*)
+ echo "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0