summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorabs <abs>2005-03-23 11:40:34 +0000
committerabs <abs>2005-03-23 11:40:34 +0000
commit642a00a08bc14d06e14f2789337b70aab226c827 (patch)
tree9e2e0c42a84ace90ac2adac0dbd332efd517c49b
parent6e112c355769dce204963db0ce4f4c5e02ef2bdd (diff)
downloadpkgsrc-642a00a08bc14d06e14f2789337b70aab226c827.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
-rw-r--r--doc/CHANGES4
-rw-r--r--www/ns-remote/Makefile5
-rwxr-xr-xwww/ns-remote/files/ns-open6
3 files changed, 8 insertions, 7 deletions
diff --git a/doc/CHANGES b/doc/CHANGES
index 1fc7073c1fb..089f31cdd0e 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.9573 2005/03/23 10:54:38 jmmv Exp $
+$NetBSD: CHANGES,v 1.9574 2005/03/23 11:41:06 abs Exp $
Changes to the packages collection and infrastructure in 2005:
@@ -1585,3 +1585,5 @@ Changes to the packages collection and infrastructure in 2005:
Removed rox-base [rxg 2005-03-23]
Updated suse91_base to 9.1nb5 [tron 2005-03-23]
Updated libopendaap to 0.3.0nb1 [jmmv 2005-03-23]
+ Updated ns-remote to 1.10 [abs 2005-03-23]
+
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