summaryrefslogtreecommitdiff
path: root/www/flashplugin/pkg-req
blob: d30aa1111db9811e5a1749845ddd65bcf2974bf0 (plain) (blame)
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
#!/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