head	1.2;
access;
symbols
	old_RELEASE_4_3_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2001.05.16.12.20.28;	author des;	state dead;
branches;
next	1.1;

1.1
date	2001.03.08.11.12.09;	author des;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Opera 5.0 for Linux has now been released.
@
text
@#!/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

@


1.1
log
@Add a pre-install script that displays the license agreement and asks for
confirmation before installing.
@
text
@@

