diff options
author | marcus <marcus@FreeBSD.org> | 2002-11-24 08:24:04 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-11-24 08:24:04 +0800 |
commit | b1c38d310f23d32319e1c368aa770e49adc18521 (patch) | |
tree | d7b8b5c3cdbbd105c83dbc1cc47e48106580430a /www/mozilla-devel | |
parent | f03697bdcc62a0dc29a18644b33ae22d07db423c (diff) | |
download | freebsd-ports-gnome-b1c38d310f23d32319e1c368aa770e49adc18521.tar.gz freebsd-ports-gnome-b1c38d310f23d32319e1c368aa770e49adc18521.tar.zst freebsd-ports-gnome-b1c38d310f23d32319e1c368aa770e49adc18521.zip |
Make the Mozilla startup scripts a little smarter. Instead of launching a
new Mozilla instance each time, check to see if one already exists, and if
so, spawn a new browser tab in the current window.
PR: 45610
Submitted by: Nick Jennings
Diffstat (limited to 'www/mozilla-devel')
-rw-r--r-- | www/mozilla-devel/Makefile | 4 | ||||
-rw-r--r-- | www/mozilla-devel/files/mozilla.sh | 24 |
2 files changed, 22 insertions, 6 deletions
diff --git a/www/mozilla-devel/Makefile b/www/mozilla-devel/Makefile index 0f2f416a3c29..7ef9a86ffacd 100644 --- a/www/mozilla-devel/Makefile +++ b/www/mozilla-devel/Makefile @@ -7,7 +7,7 @@ PORTNAME?= mozilla PORTVERSION= 1.2b -PORTREVISION?= 1 +PORTREVISION?= 2 PORTEPOCH?= 1 CATEGORIES?= www MASTER_SITES= ${MASTER_SITE_MOZILLA} \ @@ -174,7 +174,7 @@ post-patch: ${WRKSRC}/config/autoconf.mk.in post-build: - ${SED} -e "s;@PREFIX@;${PREFIX};g" -e "s;%%MOZILLA%%;${MOZILLA};g" \ + ${SED} -e "s|%%PREFIX%%|${PREFIX}|g" -e "s|%%MOZILLA%%|${MOZILLA}|g" \ ${FILESDIR}/mozilla.sh >${WRKSRC}/${MOZILLA} (cd ${WRKSRC}/dist/bin; \ ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ diff --git a/www/mozilla-devel/files/mozilla.sh b/www/mozilla-devel/files/mozilla.sh index efea04a63e16..0e34950cd32c 100644 --- a/www/mozilla-devel/files/mozilla.sh +++ b/www/mozilla-devel/files/mozilla.sh @@ -1,6 +1,22 @@ #!/bin/sh -# -# $FreeBSD$ -cd @PREFIX@/lib/%%MOZILLA%% -exec ./mozilla "$@" +MOZILLA_DIR="%%PREFIX%%/lib/%%MOZILLA%%" +MOZILLA_EXEC="mozilla" +LOCATION='new-tab' + +cd $MOZILLA_DIR || exit 1 + +# catch calls for mozilla mail +if [ "$1" = "-mail" ]; then + REMOTE_COMMAND="xfeDoCommand (openInbox)" +else + REMOTE_COMMAND="openURL($@, $LOCATION)" +fi + +# process found +./$MOZILLA_EXEC -remote "ping()" && +./$MOZILLA_EXEC -remote "$REMOTE_COMMAND" && exit 0 + +# no existing process +exec ./$MOZILLA_EXEC "$@" + |