diff options
author | abs <abs> | 2001-07-27 14:26:18 +0000 |
---|---|---|
committer | abs <abs> | 2001-07-27 14:26:18 +0000 |
commit | 22d495c8baf8a5f01920380d2237637cc4778803 (patch) | |
tree | d46d06ebdeb061df12170798d4e393920a10d9e2 /www/netscape/files | |
parent | d41d7f2283220d348551aef9cccbfea109cbb323 (diff) | |
download | pkgsrc-22d495c8baf8a5f01920380d2237637cc4778803.tar.gz |
Permit netscape to default to mozilla as well as communicator and navigator.
Leave default as communicator
Diffstat (limited to 'www/netscape/files')
-rw-r--r-- | www/netscape/files/netscape_mozilla | 9 | ||||
-rw-r--r-- | www/netscape/files/netscape_navigator | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/www/netscape/files/netscape_mozilla b/www/netscape/files/netscape_mozilla new file mode 100644 index 00000000000..ff087ca1e1d --- /dev/null +++ b/www/netscape/files/netscape_mozilla @@ -0,0 +1,9 @@ +#!/bin/sh +# $NetBSD: netscape_mozilla,v 1.1 2001/07/27 14:26:18 abs Exp $ + +# Simple script used if NS_MOZILLA is set when netscape installed + +if [ -z "$NETSCAPE_PREFERRED" ]; then + NETSCAPE_PREFERRED=mozilla:navigator:communicator +fi +exec ns-open $@ diff --git a/www/netscape/files/netscape_navigator b/www/netscape/files/netscape_navigator index 281aba3ea39..e4ea581b4ab 100644 --- a/www/netscape/files/netscape_navigator +++ b/www/netscape/files/netscape_navigator @@ -1,9 +1,9 @@ #!/bin/sh -# $NetBSD: netscape_navigator,v 1.1.1.1 2000/09/02 23:13:58 abs Exp $ +# $NetBSD: netscape_navigator,v 1.2 2001/07/27 14:26:18 abs Exp $ # Simple script used if NS_NAVIGATOR is set when netscape installed if [ -z "$NETSCAPE_PREFERRED" ]; then - NETSCAPE_PREFERRED=navigator:communicator + NETSCAPE_PREFERRED=navigator:communicator:mozilla fi exec ns-open $@ |