freebsd-ports/www/flashplugin/pkg-req
Akinori MUSHA a42adeafdd Style fix:
- Remove post-install information from DESCR's.
  - Replace /usr/local with ${PREFIX} in DESCR's and MESSAGE's.
  - Remove unnecessary whitespace.

Pointed out by:	portlint
2000-04-04 19:03:36 +00:00

31 lines
593 B
Bash

#!/bin/sh
[ X"$2" = X"INSTALL" ] || exit 0;
check=${PKG_PREFIX}/lib/netscape/plugins/libnullplugin.so
if [ ! -f $check ]; then
cat <<EOF
****
Please install Netscape Communicator/Navigator 4.0 or later
before installing this plugin.
****
EOF
exit 1
fi
if file $check | grep -qw ELF ; then
cat <<EOF
****
It seems you are using Netscape for Linux, but the binary
that you are going to install is a FreeBSD's a.out.
Go get the Linux binary at:
http://www.geocities.com/TimesSquare/Labyrinth/5084/flash.html
or use Netscape for FreeBSD with this port.
****
EOF
exit 1
fi