summaryrefslogtreecommitdiff
path: root/www/ns-remote
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2005-03-23 11:40:34 +0000
committerabs <abs@pkgsrc.org>2005-03-23 11:40:34 +0000
commitb68b18fcccf8100805962e43c584cd0d5515737c (patch)
tree9e2e0c42a84ace90ac2adac0dbd332efd517c49b /www/ns-remote
parent323b7c2365dd1ca2d7267f7ad86209db14118cbe (diff)
downloadpkgsrc-b68b18fcccf8100805962e43c584cd0d5515737c.tar.gz
update ns-remote to 1.10:
- when giving the URL to a running 'netscape' do not explicitly specify a new window, let the browser decide (allows firefox to use a new tab based on user preference) - move firefox ahead of communicator in preference terms
Diffstat (limited to 'www/ns-remote')
-rw-r--r--www/ns-remote/Makefile5
-rwxr-xr-xwww/ns-remote/files/ns-open6
2 files changed, 5 insertions, 6 deletions
diff --git a/www/ns-remote/Makefile b/www/ns-remote/Makefile
index 2b004068960..905302158ea 100644
--- a/www/ns-remote/Makefile
+++ b/www/ns-remote/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.22 2005/03/08 20:15:14 bad Exp $
+# $NetBSD: Makefile,v 1.23 2005/03/23 11:40:34 abs Exp $
DISTNAME= ns-remote
-PKGNAME= ns-remote-1.9
-PKGREVISION= 2
+PKGNAME= ns-remote-1.10
CATEGORIES= www
MASTER_SITES= http://home.netscape.com/newsref/std/
DISTFILES= remote.c vroot.h
diff --git a/www/ns-remote/files/ns-open b/www/ns-remote/files/ns-open
index 34c440e2c5d..9f131fe99ab 100755
--- a/www/ns-remote/files/ns-open
+++ b/www/ns-remote/files/ns-open
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: ns-open,v 1.12 2004/02/14 01:03:29 grant Exp $
+# $NetBSD: ns-open,v 1.13 2005/03/23 11:40:34 abs Exp $
#
# Simple script to open a URL in Netscape, starting a new process if necessary
# If a netscape process is not running it will look for a valid netscape
@@ -8,7 +8,7 @@
# overridden by the user in the environment.
if [ -z "$NETSCAPE_PREFERRED" ]; then
- NETSCAPE_PREFERRED=netscape7:communicator:navigator:mozilla:firefox:mozilla-netbsd:mozilla-linux:mozilla-solaris:firefox-netbsd:firefox-gtk2-linux:firefox-linux:firefox-solaris
+ NETSCAPE_PREFERRED=netscape7:firefox:mozilla:communicator:navigator:mozilla-netbsd:mozilla-linux:mozilla-solaris:firefox-netbsd:firefox-gtk2-linux:firefox-linux:firefox-solaris
fi
# Locate appropriate netscape binary and set NETSCAPE_BIN
@@ -79,7 +79,7 @@ if [ -z "$START_NEW_NETSCAPE" ];then
if [ -z "$URL" ];then
URL=about:blank
fi
- NS_REMOTE_ARGS="$NS_REMOTE_ARGS -remote openURL(${URL},new-window)"
+ NS_REMOTE_ARGS="$NS_REMOTE_ARGS -remote openURL(${URL})"
fi
if ns-remote -noraise 2>/dev/null; then
if ns-remote $NS_REMOTE_ARGS ; then