#!/bin/sh
if [ "$2" != "INSTALL" ]; then
  exit 0
fi
echo "*****************************************************************"
echo "*                          N o t e                              *"
echo "* This port contains source code copyrighted by VIACOM.         *"
echo "* Please read the licensing information in the file             *"
echo "* ${PKG_PREFIX}/share/doc/e93/LICENSE.TXT) first before using      *"
echo "* this port.                                                    *"
echo "*****************************************************************"
echo ""
echo -n "Will you promise to do that? (y/n) ==> "
read ans;
case x"$ans" in
  xy*|xY*)
    return 0;
    ;;
  *)
    echo "Well, I won't install it then....";
    return 1;
    ;;
esac
