diff options
author | abs <abs@pkgsrc.org> | 2001-07-27 14:26:18 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2001-07-27 14:26:18 +0000 |
commit | ce231fc6e0e842e9cc19acb8c30bd29e543eeff8 (patch) | |
tree | d46d06ebdeb061df12170798d4e393920a10d9e2 /www/netscape/files | |
parent | d2eb68d2a60c38796f99debfc547660ea4ad83e1 (diff) | |
download | pkgsrc-ce231fc6e0e842e9cc19acb8c30bd29e543eeff8.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 $@ |