summaryrefslogtreecommitdiff
path: root/editors/wordperfect/INSTALL
blob: 0a0621b81ee612a3c5ebf282a9f4789becc5f28c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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