Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 28 Oct 1998 09:10:11 +0900 (JST)
From:      shige@kuis.kyoto-u.ac.jp
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Cc:        shige@kuis.kyoto-u.ac.jp
Subject:   ports/8470: Update port: www/netscape4-communicator and www/netscape4-navigator
Message-ID:  <199810280010.JAA15209@smtp01.odn.ne.jp>

next in thread | raw e-mail | index | archive | help

>Number:         8470
>Category:       ports
>Synopsis:       Update port: www/netscape4-*
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:
>Keywords:
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Oct 27 16:20:00 PST 1998
>Last-Modified:
>Originator:     Shigeyuki FUKUSHIMA
>Organization:
Dept. of Information Science, Kyoto Univ., JAPAN
>Release:        FreeBSD 3.0-CURRENT i386
>Environment:

	FreeBSD 3.0-CURRENT i386 with aout libraries.
	FreeBSD 2.2.7-RELEASE i386

>Description:


Update port: www/netscape4-communicator and www/netscape4-navigator

I modify these ports 
  . www/netscape4-communicator
  . www/netscape4-navigator
as follows:

   1) comminicator-4.0x and navigator-4.0x can co-exist on the same system.

      NDIR in the port Makefile is the netscape4-* install directory.
      We can install netscape4 anywhere on the system, since Netscape
      Version 4.


   2) With ns-install which the netscape distribution includes 
      we can not do `make re-install`. Then I does not use ns-install
      in these ports.

      Ns-install delete itself after install.
      Therefore I define do-install target in the port Makefile.
      The way of install is the same way in the README.install.
      (REAME.install is included in the netscape distribution.)


   3) Importing %%NSUBDIR%% in the pkg/PLIST.  

      NSUBDIR is the directory with removing PREFIX from NDIR.
      This is for the improvement of the management ports.


   4) Master and slave.

      Www/netscape4-communicator is the master port, and
      www/netscape4-navigator is the slave port.

      The Makefile in the slave port do `include' the Makefile 
      in the master port.


How to patch:
  $ cd ${PORTSDIR}/www
  $ patch -p1 < [this_mail]


Thnak you.

--- shige

>How-To-Repeat:

>Fix:

diff -urN /usr/ports/www/netscape4-communicator/Makefile www/netscape4-communicator/Makefile
--- /usr/ports/www/netscape4-communicator/Makefile	Wed Oct 14 23:39:20 1998
+++ www/netscape4-communicator/Makefile	Thu Oct 15 20:59:01 1998
@@ -6,21 +6,35 @@
 # $Id: Makefile,v 1.23 1998/10/14 04:24:20 jseger Exp $
 #
 
-DISTNAME=       netscape-communicator-4.07
+DISTNAME=	netscape-${BROWSER}
 CATEGORIES=	www
-MASTER_SITES=   ftp://ftp.netscape.com/pub/communicator/4.07/development/english/unix/freebsd/professional_edition/
-DISTFILES=      communicator-v407-export.x86-unknown-freebsd.tar.gz ${AUTOADMIN}
+MASTER_SITES?=	ftp://ftp.netscape.com/pub/communicator/4.07/development/english/unix/freebsd/professional_edition/
+DISTFILES=	${BROWSER_NAME}-v407-export.x86-unknown-freebsd.tar.gz ${AUTOADMIN}
 AUTOADMIN=      autoadmin-v407.x86-unknown-freebsd.tar.gz
 
 MAINTAINER=     ache@FreeBSD.ORG
 
+# This package includes aout binaries and shared libraries.
 NO_FILTER_SHLIBS=	yes
+STRIP=
 
-WRKSRC=         ${WRKDIR}/communicator-v407.x86-unknown-freebsd
+WRKSRC=		${WRKDIR}/${BROWSER_NAME}-v407.x86-unknown-freebsd
 NO_BUILD=       Yes
 
-NDIR=           ${PREFIX}/lib/netscape
-BINDIR=		${PREFIX}/bin
+BROWSER_NAME?=		communicator
+BROWSER_VERSION=	4.07
+BROWSER_VER=		4
+BROWSER=		${BROWSER_NAME}-${BROWSER_VERSION}
+BROWSER_LINK=		${BROWSER_NAME}-${BROWSER_VER}
+NSUBDIR=           	lib/netscape-${BROWSER_NAME}${BROWSER_VER}
+# Netscape components is installed to `NDIR'.
+NDIR=           	${PREFIX}/${NSUBDIR}
+BINDIR=			${PREFIX}/bin
+INFILE_HEAD?=		'Communicator,4.07.0.98272,'
+
+SCRIPTS_ENV=	NSUBDIR=${NSUBDIR} BROWSER=${BROWSER}
+PLIST_SUB=	NSUBDIR=${NSUBDIR} \
+		BROWSER=${BROWSER} BROWSER_LINK=${BROWSER_LINK}
 
 .if defined(USE_128BIT)
 MASTER_SITES+=	ftp://ftp.fortify.net/pub/Fortify/ \
@@ -34,23 +48,32 @@
 		@${ECHO} "You can make Netscape use 128-bit encryption by defining USE_128BIT"
 .endif
 
+post-configure:
+	@${ECHO} -n ${INFILE_HEAD} >${WRKSRC}/infile
+	@${ECHO} ${NDIR} >>${WRKSRC}/infile
+
 do-install:
-	cd ${WRKSRC} && yes "" | \
-	    LC_TIME=C MOZILLA_HOME="${NDIR}" ./ns-install
-	mv -f ${NDIR}/netscape ${NDIR}/communicator-4.07.bin
-	${INSTALL_SCRIPT} ${WRKSRC}/netscape ${BINDIR}/communicator-4.07
-	ln -sf communicator-4.07 ${BINDIR}/communicator-4
-	ln -sf communicator-4 ${BINDIR}/netscape
-	if [ ! -f ${NDIR}/mailcap ] ; then \
+	@${MKDIR} ${NDIR}/java/classes
+	@${INSTALL_DATA} ${WRKSRC}/*.jar ${NDIR}/java/classes
+	@${INSTALL_PROGRAM} ${WRKSRC}/vreg ${NDIR}
+	@for i in ${WRKSRC}/*.nif; do \
+		${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} $${i} -C ${NDIR}; \
+	done
+	@${WRKSRC}/vreg ${NDIR}/registry ${WRKSRC}/infile
+	@${MV} -f ${NDIR}/netscape ${NDIR}/${BROWSER}.bin
+	@${INSTALL_SCRIPT} ${WRKSRC}/netscape ${BINDIR}/${BROWSER}
+	@${LN} -sf ${BROWSER} ${BINDIR}/${BROWSER_LINK}
+	@${LN} -sf ${BROWSER_LINK} ${BINDIR}/netscape
+	@if [ ! -f ${NDIR}/mailcap ] ; then \
 	    ${INSTALL_DATA} ${FILESDIR}/mailcap ${NDIR}; \
 	fi
-	rm -rf ${NDIR}/movemail-src
-	tar zxvf ${DISTDIR}/${AUTOADMIN} -C ${NDIR}
+	@${RM} -rf ${NDIR}/movemail-src
+	@tar zxf ${DISTDIR}/${AUTOADMIN} -C ${NDIR}
 .if defined(USE_128BIT) && defined(USA_RESIDENT) && ${USA_RESIDENT} == NO
-	cd ${WRKDIR}/Fortify-1.2.8-unix-x86 && \
-		(${ECHO} yes ; ${ECHO} no) | ./Fortify.sh ${NDIR}/communicator-4.07.bin
+	@cd ${WRKDIR}/Fortify-1.2.8-unix-x86 && \
+		(${ECHO} yes ; ${ECHO} no) | ./Fortify.sh ${NDIR}/${BROWSER}.bin
 .endif
-	chown -R bin.bin ${NDIR}
+	@chown -R bin.bin ${NDIR}
 
 post-install:
 	@${CAT} ${PKGDIR}/DESCR
diff -urN /usr/ports/www/netscape4-communicator/files/netscape.sh www/netscape4-communicator/files/netscape.sh
--- /usr/ports/www/netscape4-communicator/files/netscape.sh	Sat Oct 10 06:30:37 1998
+++ www/netscape4-communicator/files/netscape.sh	Thu Oct 15 00:18:05 1998
@@ -1,5 +1,5 @@
 #!/bin/sh
-export MOZILLA_HOME; MOZILLA_HOME=${MOZILLA_HOME:=@PREFIX@/lib/netscape}
+export MOZILLA_HOME; MOZILLA_HOME=${MOZILLA_HOME:=@PREFIX@/@NSUBDIR@}
 export CLASSPATH ; CLASSPATH=.:$MOZILLA_HOME
 export XCMSDB; XCMSDB=/dev/null
-exec $MOZILLA_HOME/communicator-4.07.bin $*
+exec $MOZILLA_HOME/@BROWSER@.bin $*
diff -urN /usr/ports/www/netscape4-communicator/pkg/PLIST www/netscape4-communicator/pkg/PLIST
--- /usr/ports/www/netscape4-communicator/pkg/PLIST	Sat Oct 10 06:30:37 1998
+++ www/netscape4-communicator/pkg/PLIST	Thu Oct 15 00:21:53 1998
@@ -1,201 +1,201 @@
-bin/communicator-4.07
-@exec ln -sf %f %B/communicator-4
-@exec ln -sf communicator-4 %B/netscape
+bin/%%BROWSER%%
+@exec ln -sf %f %B/%%BROWSER_LINK%%
+@exec ln -sf %%BROWSER_LINK%% %B/netscape
 @unexec rm -f %B/netscape
-@unexec rm -f %B/communicator-4
-lib/netscape/README
-lib/netscape/LICENSE
-lib/netscape/Netscape.ad
-lib/netscape/XKeysymDB
-lib/netscape/movemail
-lib/netscape/libAutoAdmin.so
-lib/netscape/plugins/libnullplugin.so
-lib/netscape/libjsd.so.1.0
-lib/netscape/bookmark.htm
-lib/netscape/java/classes/awt.properties
-lib/netscape/java/classes/font.properties
-lib/netscape/java/classes/font.properties.zh_TW_Big5
-lib/netscape/java/classes/font.properties.zh_TW
-lib/netscape/java/classes/font.properties.zh_GB2312
-lib/netscape/java/classes/font.properties.zh
-lib/netscape/java/classes/font.properties.tr
-lib/netscape/java/classes/font.properties.ru
-lib/netscape/java/classes/font.properties.pl
-lib/netscape/java/classes/font.properties.lv
-lib/netscape/java/classes/font.properties.lt
-lib/netscape/java/classes/font.properties.ko
-lib/netscape/java/classes/font.properties.ja
-lib/netscape/java/classes/font.properties.hu
-lib/netscape/java/classes/font.properties.el
-lib/netscape/java/classes/font.properties.cs
-lib/netscape/java/classes/aix/font.properties
-lib/netscape/java/classes/aix/font.properties.cs
-lib/netscape/java/classes/aix/font.properties.hu
-lib/netscape/java/classes/aix/font.properties.ja
-lib/netscape/java/classes/aix/font.properties.ko
-lib/netscape/java/classes/aix/font.properties.pl
-lib/netscape/java/classes/aix/font.properties.ru
-lib/netscape/java/classes/aix/font.properties.zh
-lib/netscape/java/classes/aix/font.properties.zh_TW
-lib/netscape/java/classes/hpux/font.properties
-lib/netscape/java/classes/hpux/font.properties.bg
-lib/netscape/java/classes/hpux/font.properties.cs
-lib/netscape/java/classes/hpux/font.properties.el
-lib/netscape/java/classes/hpux/font.properties.hr
-lib/netscape/java/classes/hpux/font.properties.hu
-lib/netscape/java/classes/hpux/font.properties.ja
-lib/netscape/java/classes/hpux/font.properties.ko
-lib/netscape/java/classes/hpux/font.properties.pl
-lib/netscape/java/classes/hpux/font.properties.ro
-lib/netscape/java/classes/hpux/font.properties.ru
-lib/netscape/java/classes/hpux/font.properties.sk
-lib/netscape/java/classes/hpux/font.properties.sl
-lib/netscape/java/classes/hpux/font.properties.tr
-lib/netscape/java/classes/hpux/font.properties.zh_GB2312
-lib/netscape/java/classes/hpux/font.properties.zh_TW_Big5
-lib/netscape/java/classes/hpux/font.properties.zh_TW_CNS11643
-lib/netscape/java/classes/font.properties.zh_TW_CNS11643
-lib/netscape/java/classes/irix/font.properties
-lib/netscape/java/classes/irix/font.properties.cs
-lib/netscape/java/classes/irix/font.properties.el
-lib/netscape/java/classes/irix/font.properties.hu
-lib/netscape/java/classes/irix/font.properties.ja
-lib/netscape/java/classes/irix/font.properties.ko
-lib/netscape/java/classes/irix/font.properties.zh_GB2312
-lib/netscape/java/classes/irix/font.properties.zh_TW_Big5
-lib/netscape/java/classes/irix/font.properties.zh_TW_CNS11643
-lib/netscape/java/classes/ifc11.jar
-lib/netscape/java/classes/iiop10.jar
-lib/netscape/java/classes/jae40.jar
-lib/netscape/java/classes/java40.jar
-lib/netscape/java/classes/jio40.jar
-lib/netscape/java/classes/jsd10.jar
-lib/netscape/java/classes/ldap10.jar
-lib/netscape/java/classes/scd10.jar
-lib/netscape/nethelp/Back_dep.gif
-lib/netscape/nethelp/Topic.js
-lib/netscape/nethelp/System.js
-lib/netscape/nethelp/Stack.js
-lib/netscape/nethelp/Local-1.js
-lib/netscape/nethelp/IdxData.js
-lib/netscape/nethelp/Header.js
-lib/netscape/nethelp/CntTool.js
-lib/netscape/nethelp/CntData.js
-lib/netscape/nethelp/Button.js
-lib/netscape/nethelp/picsfail.jar
-lib/netscape/nethelp/picsfail.htm
-lib/netscape/nethelp/ToolUI.htm
-lib/netscape/nethelp/System.htm
-lib/netscape/nethelp/Status.htm
-lib/netscape/nethelp/NoJSerr.htm
-lib/netscape/nethelp/NavUI.htm
-lib/netscape/nethelp/NSHIfrm.htm
-lib/netscape/nethelp/IdxTopic.htm
-lib/netscape/nethelp/IdxTool.htm
-lib/netscape/nethelp/IdxKey.htm
-lib/netscape/nethelp/IdxFill.htm
-lib/netscape/nethelp/CntTool.htm
-lib/netscape/nethelp/Blank.htm
-lib/netscape/nethelp/netwatch.gif
-lib/netscape/nethelp/Wait.gif
-lib/netscape/nethelp/Tool_up.gif
-lib/netscape/nethelp/Tool_sel.gif
-lib/netscape/nethelp/Tool_dep.gif
-lib/netscape/nethelp/Prnt_up.gif
-lib/netscape/nethelp/Prnt_sel.gif
-lib/netscape/nethelp/Prnt_dep.gif
-lib/netscape/nethelp/Forw_up.gif
-lib/netscape/nethelp/Forw_sel.gif
-lib/netscape/nethelp/Forw_dis.gif
-lib/netscape/nethelp/Forw_dep.gif
-lib/netscape/nethelp/Exit_up.gif
-lib/netscape/nethelp/Exit_sel.gif
-lib/netscape/nethelp/Exit_dep.gif
-lib/netscape/nethelp/Back_up.gif
-lib/netscape/nethelp/Back_sel.gif
-lib/netscape/nethelp/Back_dis.gif
-lib/netscape/nethelp/Utility.js
-lib/netscape/nethelp/netscape/collabra/collabra.gif
-lib/netscape/nethelp/netscape/collabra/discgrps.gif
-lib/netscape/nethelp/netscape/collabra/coll.htm
-lib/netscape/nethelp/netscape/collabra/collHdr.htm
-lib/netscape/nethelp/netscape/collabra/help.hpf
-lib/netscape/nethelp/netscape/composer/composer.gif
-lib/netscape/nethelp/netscape/composer/comtlbr2.gif
-lib/netscape/nethelp/netscape/composer/fmtlbr3.gif
-lib/netscape/nethelp/netscape/composer/tagicon2.gif
-lib/netscape/nethelp/netscape/composer/comp.htm
-lib/netscape/nethelp/netscape/composer/compHdr.htm
-lib/netscape/nethelp/netscape/composer/help.hpf
-lib/netscape/nethelp/netscape/confernc/brws2.gif
-lib/netscape/nethelp/netscape/confernc/chat2.gif
-lib/netscape/nethelp/netscape/confernc/circle2.gif
-lib/netscape/nethelp/netscape/confernc/confernc.gif
-lib/netscape/nethelp/netscape/confernc/eraser2.gif
-lib/netscape/nethelp/netscape/confernc/fhndtl2.gif
-lib/netscape/nethelp/netscape/confernc/filex2.gif
-lib/netscape/nethelp/netscape/confernc/horline2.gif
-lib/netscape/nethelp/netscape/confernc/line2.gif
-lib/netscape/nethelp/netscape/confernc/pointer2.gif
-lib/netscape/nethelp/netscape/confernc/rect2.gif
-lib/netscape/nethelp/netscape/confernc/txttool2.gif
-lib/netscape/nethelp/netscape/confernc/whtbd2.gif
-lib/netscape/nethelp/netscape/confernc/conf.htm
-lib/netscape/nethelp/netscape/confernc/confHdr.htm
-lib/netscape/nethelp/netscape/confernc/help.hpf
-lib/netscape/nethelp/netscape/home/home.gif
-lib/netscape/nethelp/netscape/home/home.htm
-lib/netscape/nethelp/netscape/home/homeHdr.htm
-lib/netscape/nethelp/netscape/home/help.hpf
-lib/netscape/nethelp/netscape/messengr/mailbox.gif
-lib/netscape/nethelp/netscape/messengr/messengr.gif
-lib/netscape/nethelp/netscape/messengr/mpctrl.gif
-lib/netscape/nethelp/netscape/messengr/mess.htm
-lib/netscape/nethelp/netscape/messengr/messHdr.htm
-lib/netscape/nethelp/netscape/messengr/help.hpf
-lib/netscape/nethelp/netscape/navigatr/navigatr.gif
-lib/netscape/nethelp/netscape/navigatr/nav.htm
-lib/netscape/nethelp/netscape/navigatr/navHdr.htm
-lib/netscape/nethelp/netscape/navigatr/help.hpf
-lib/netscape/nethelp/netscape/netcastr/netcastr.gif
-lib/netscape/nethelp/netscape/netcastr/net.htm
-lib/netscape/nethelp/netscape/netcastr/netHdr.htm
-lib/netscape/nethelp/netscape/netcastr/help.hpf
-lib/netscape/nethelp/netscape/shared/admnIcon.gif
-lib/netscape/nethelp/netscape/shared/calIcon.gif
-lib/netscape/nethelp/netscape/shared/collIcon.gif
-lib/netscape/nethelp/netscape/shared/commIcon.gif
-lib/netscape/nethelp/netscape/shared/compIcon.gif
-lib/netscape/nethelp/netscape/shared/confIcon.gif
-lib/netscape/nethelp/netscape/shared/ibmIcon.gif
-lib/netscape/nethelp/netscape/shared/messIcon.gif
-lib/netscape/nethelp/netscape/shared/navIcon.gif
-lib/netscape/nethelp/netscape/shared/netIcon.gif
-lib/netscape/nethelp/netscape/shared/Contents.htm
-lib/netscape/nethelp/netscape/shared/NetHelp1.css
-lib/netscape/nethelp/netscape/nscal/index.html
-lib/netscape/spell/pen4s324.dat
-lib/netscape/spell/netscape.dic
-lib/netscape/vreg
-lib/netscape/registry
-lib/netscape/communicator-4.07.bin
-lib/netscape/mailcap
-@dirrm lib/netscape/spell
-@dirrm lib/netscape/plugins
-@dirrm lib/netscape/nethelp/netscape/shared
-@dirrm lib/netscape/nethelp/netscape/nscal
-@dirrm lib/netscape/nethelp/netscape/netcastr
-@dirrm lib/netscape/nethelp/netscape/navigatr
-@dirrm lib/netscape/nethelp/netscape/messengr
-@dirrm lib/netscape/nethelp/netscape/home
-@dirrm lib/netscape/nethelp/netscape/confernc
-@dirrm lib/netscape/nethelp/netscape/composer
-@dirrm lib/netscape/nethelp/netscape/collabra
-@dirrm lib/netscape/nethelp/netscape
-@dirrm lib/netscape/nethelp
-@dirrm lib/netscape/java/classes/aix
-@dirrm lib/netscape/java/classes/hpux
-@dirrm lib/netscape/java/classes/irix
-@dirrm lib/netscape/java/classes
-@dirrm lib/netscape/java
-@dirrm lib/netscape
+@unexec rm -f %B/%%BROWSER_LINK%%
+%%NSUBDIR%%/README
+%%NSUBDIR%%/LICENSE
+%%NSUBDIR%%/Netscape.ad
+%%NSUBDIR%%/XKeysymDB
+%%NSUBDIR%%/movemail
+%%NSUBDIR%%/libAutoAdmin.so
+%%NSUBDIR%%/plugins/libnullplugin.so
+%%NSUBDIR%%/libjsd.so.1.0
+%%NSUBDIR%%/bookmark.htm
+%%NSUBDIR%%/java/classes/awt.properties
+%%NSUBDIR%%/java/classes/font.properties
+%%NSUBDIR%%/java/classes/font.properties.zh_TW_Big5
+%%NSUBDIR%%/java/classes/font.properties.zh_TW
+%%NSUBDIR%%/java/classes/font.properties.zh_GB2312
+%%NSUBDIR%%/java/classes/font.properties.zh
+%%NSUBDIR%%/java/classes/font.properties.tr
+%%NSUBDIR%%/java/classes/font.properties.ru
+%%NSUBDIR%%/java/classes/font.properties.pl
+%%NSUBDIR%%/java/classes/font.properties.lv
+%%NSUBDIR%%/java/classes/font.properties.lt
+%%NSUBDIR%%/java/classes/font.properties.ko
+%%NSUBDIR%%/java/classes/font.properties.ja
+%%NSUBDIR%%/java/classes/font.properties.hu
+%%NSUBDIR%%/java/classes/font.properties.el
+%%NSUBDIR%%/java/classes/font.properties.cs
+%%NSUBDIR%%/java/classes/aix/font.properties
+%%NSUBDIR%%/java/classes/aix/font.properties.cs
+%%NSUBDIR%%/java/classes/aix/font.properties.hu
+%%NSUBDIR%%/java/classes/aix/font.properties.ja
+%%NSUBDIR%%/java/classes/aix/font.properties.ko
+%%NSUBDIR%%/java/classes/aix/font.properties.pl
+%%NSUBDIR%%/java/classes/aix/font.properties.ru
+%%NSUBDIR%%/java/classes/aix/font.properties.zh
+%%NSUBDIR%%/java/classes/aix/font.properties.zh_TW
+%%NSUBDIR%%/java/classes/hpux/font.properties
+%%NSUBDIR%%/java/classes/hpux/font.properties.bg
+%%NSUBDIR%%/java/classes/hpux/font.properties.cs
+%%NSUBDIR%%/java/classes/hpux/font.properties.el
+%%NSUBDIR%%/java/classes/hpux/font.properties.hr
+%%NSUBDIR%%/java/classes/hpux/font.properties.hu
+%%NSUBDIR%%/java/classes/hpux/font.properties.ja
+%%NSUBDIR%%/java/classes/hpux/font.properties.ko
+%%NSUBDIR%%/java/classes/hpux/font.properties.pl
+%%NSUBDIR%%/java/classes/hpux/font.properties.ro
+%%NSUBDIR%%/java/classes/hpux/font.properties.ru
+%%NSUBDIR%%/java/classes/hpux/font.properties.sk
+%%NSUBDIR%%/java/classes/hpux/font.properties.sl
+%%NSUBDIR%%/java/classes/hpux/font.properties.tr
+%%NSUBDIR%%/java/classes/hpux/font.properties.zh_GB2312
+%%NSUBDIR%%/java/classes/hpux/font.properties.zh_TW_Big5
+%%NSUBDIR%%/java/classes/hpux/font.properties.zh_TW_CNS11643
+%%NSUBDIR%%/java/classes/font.properties.zh_TW_CNS11643
+%%NSUBDIR%%/java/classes/irix/font.properties
+%%NSUBDIR%%/java/classes/irix/font.properties.cs
+%%NSUBDIR%%/java/classes/irix/font.properties.el
+%%NSUBDIR%%/java/classes/irix/font.properties.hu
+%%NSUBDIR%%/java/classes/irix/font.properties.ja
+%%NSUBDIR%%/java/classes/irix/font.properties.ko
+%%NSUBDIR%%/java/classes/irix/font.properties.zh_GB2312
+%%NSUBDIR%%/java/classes/irix/font.properties.zh_TW_Big5
+%%NSUBDIR%%/java/classes/irix/font.properties.zh_TW_CNS11643
+%%NSUBDIR%%/java/classes/ifc11.jar
+%%NSUBDIR%%/java/classes/iiop10.jar
+%%NSUBDIR%%/java/classes/jae40.jar
+%%NSUBDIR%%/java/classes/java40.jar
+%%NSUBDIR%%/java/classes/jio40.jar
+%%NSUBDIR%%/java/classes/jsd10.jar
+%%NSUBDIR%%/java/classes/ldap10.jar
+%%NSUBDIR%%/java/classes/scd10.jar
+%%NSUBDIR%%/nethelp/Back_dep.gif
+%%NSUBDIR%%/nethelp/Topic.js
+%%NSUBDIR%%/nethelp/System.js
+%%NSUBDIR%%/nethelp/Stack.js
+%%NSUBDIR%%/nethelp/Local-1.js
+%%NSUBDIR%%/nethelp/IdxData.js
+%%NSUBDIR%%/nethelp/Header.js
+%%NSUBDIR%%/nethelp/CntTool.js
+%%NSUBDIR%%/nethelp/CntData.js
+%%NSUBDIR%%/nethelp/Button.js
+%%NSUBDIR%%/nethelp/picsfail.jar
+%%NSUBDIR%%/nethelp/picsfail.htm
+%%NSUBDIR%%/nethelp/ToolUI.htm
+%%NSUBDIR%%/nethelp/System.htm
+%%NSUBDIR%%/nethelp/Status.htm
+%%NSUBDIR%%/nethelp/NoJSerr.htm
+%%NSUBDIR%%/nethelp/NavUI.htm
+%%NSUBDIR%%/nethelp/NSHIfrm.htm
+%%NSUBDIR%%/nethelp/IdxTopic.htm
+%%NSUBDIR%%/nethelp/IdxTool.htm
+%%NSUBDIR%%/nethelp/IdxKey.htm
+%%NSUBDIR%%/nethelp/IdxFill.htm
+%%NSUBDIR%%/nethelp/CntTool.htm
+%%NSUBDIR%%/nethelp/Blank.htm
+%%NSUBDIR%%/nethelp/netwatch.gif
+%%NSUBDIR%%/nethelp/Wait.gif
+%%NSUBDIR%%/nethelp/Tool_up.gif
+%%NSUBDIR%%/nethelp/Tool_sel.gif
+%%NSUBDIR%%/nethelp/Tool_dep.gif
+%%NSUBDIR%%/nethelp/Prnt_up.gif
+%%NSUBDIR%%/nethelp/Prnt_sel.gif
+%%NSUBDIR%%/nethelp/Prnt_dep.gif
+%%NSUBDIR%%/nethelp/Forw_up.gif
+%%NSUBDIR%%/nethelp/Forw_sel.gif
+%%NSUBDIR%%/nethelp/Forw_dis.gif
+%%NSUBDIR%%/nethelp/Forw_dep.gif
+%%NSUBDIR%%/nethelp/Exit_up.gif
+%%NSUBDIR%%/nethelp/Exit_sel.gif
+%%NSUBDIR%%/nethelp/Exit_dep.gif
+%%NSUBDIR%%/nethelp/Back_up.gif
+%%NSUBDIR%%/nethelp/Back_sel.gif
+%%NSUBDIR%%/nethelp/Back_dis.gif
+%%NSUBDIR%%/nethelp/Utility.js
+%%NSUBDIR%%/nethelp/netscape/collabra/collabra.gif
+%%NSUBDIR%%/nethelp/netscape/collabra/discgrps.gif
+%%NSUBDIR%%/nethelp/netscape/collabra/coll.htm
+%%NSUBDIR%%/nethelp/netscape/collabra/collHdr.htm
+%%NSUBDIR%%/nethelp/netscape/collabra/help.hpf
+%%NSUBDIR%%/nethelp/netscape/composer/composer.gif
+%%NSUBDIR%%/nethelp/netscape/composer/comtlbr2.gif
+%%NSUBDIR%%/nethelp/netscape/composer/fmtlbr3.gif
+%%NSUBDIR%%/nethelp/netscape/composer/tagicon2.gif
+%%NSUBDIR%%/nethelp/netscape/composer/comp.htm
+%%NSUBDIR%%/nethelp/netscape/composer/compHdr.htm
+%%NSUBDIR%%/nethelp/netscape/composer/help.hpf
+%%NSUBDIR%%/nethelp/netscape/confernc/brws2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/chat2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/circle2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/confernc.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/eraser2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/fhndtl2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/filex2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/horline2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/line2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/pointer2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/rect2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/txttool2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/whtbd2.gif
+%%NSUBDIR%%/nethelp/netscape/confernc/conf.htm
+%%NSUBDIR%%/nethelp/netscape/confernc/confHdr.htm
+%%NSUBDIR%%/nethelp/netscape/confernc/help.hpf
+%%NSUBDIR%%/nethelp/netscape/home/home.gif
+%%NSUBDIR%%/nethelp/netscape/home/home.htm
+%%NSUBDIR%%/nethelp/netscape/home/homeHdr.htm
+%%NSUBDIR%%/nethelp/netscape/home/help.hpf
+%%NSUBDIR%%/nethelp/netscape/messengr/mailbox.gif
+%%NSUBDIR%%/nethelp/netscape/messengr/messengr.gif
+%%NSUBDIR%%/nethelp/netscape/messengr/mpctrl.gif
+%%NSUBDIR%%/nethelp/netscape/messengr/mess.htm
+%%NSUBDIR%%/nethelp/netscape/messengr/messHdr.htm
+%%NSUBDIR%%/nethelp/netscape/messengr/help.hpf
+%%NSUBDIR%%/nethelp/netscape/navigatr/navigatr.gif
+%%NSUBDIR%%/nethelp/netscape/navigatr/nav.htm
+%%NSUBDIR%%/nethelp/netscape/navigatr/navHdr.htm
+%%NSUBDIR%%/nethelp/netscape/navigatr/help.hpf
+%%NSUBDIR%%/nethelp/netscape/netcastr/netcastr.gif
+%%NSUBDIR%%/nethelp/netscape/netcastr/net.htm
+%%NSUBDIR%%/nethelp/netscape/netcastr/netHdr.htm
+%%NSUBDIR%%/nethelp/netscape/netcastr/help.hpf
+%%NSUBDIR%%/nethelp/netscape/shared/admnIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/calIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/collIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/commIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/compIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/confIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/ibmIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/messIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/navIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/netIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/Contents.htm
+%%NSUBDIR%%/nethelp/netscape/shared/NetHelp1.css
+%%NSUBDIR%%/nethelp/netscape/nscal/index.html
+%%NSUBDIR%%/spell/pen4s324.dat
+%%NSUBDIR%%/spell/netscape.dic
+%%NSUBDIR%%/vreg
+%%NSUBDIR%%/registry
+%%NSUBDIR%%/%%BROWSER%%.bin
+%%NSUBDIR%%/mailcap
+@dirrm %%NSUBDIR%%/spell
+@dirrm %%NSUBDIR%%/plugins
+@dirrm %%NSUBDIR%%/nethelp/netscape/shared
+@dirrm %%NSUBDIR%%/nethelp/netscape/nscal
+@dirrm %%NSUBDIR%%/nethelp/netscape/netcastr
+@dirrm %%NSUBDIR%%/nethelp/netscape/navigatr
+@dirrm %%NSUBDIR%%/nethelp/netscape/messengr
+@dirrm %%NSUBDIR%%/nethelp/netscape/home
+@dirrm %%NSUBDIR%%/nethelp/netscape/confernc
+@dirrm %%NSUBDIR%%/nethelp/netscape/composer
+@dirrm %%NSUBDIR%%/nethelp/netscape/collabra
+@dirrm %%NSUBDIR%%/nethelp/netscape
+@dirrm %%NSUBDIR%%/nethelp
+@dirrm %%NSUBDIR%%/java/classes/aix
+@dirrm %%NSUBDIR%%/java/classes/hpux
+@dirrm %%NSUBDIR%%/java/classes/irix
+@dirrm %%NSUBDIR%%/java/classes
+@dirrm %%NSUBDIR%%/java
+@dirrm %%NSUBDIR%%
diff -urN /usr/ports/www/netscape4-communicator/scripts/configure www/netscape4-communicator/scripts/configure
--- /usr/ports/www/netscape4-communicator/scripts/configure	Thu Apr 10 00:12:17 1997
+++ www/netscape4-communicator/scripts/configure	Thu Oct 15 00:18:45 1998
@@ -1,6 +1,7 @@
 #!/bin/sh
 
 sed -e "s;@X11BASE@;${X11BASE};g" -e "s;@PREFIX@;${PREFIX};g" \
+	-e "s;@NSUBDIR@;${NSUBDIR};g" -e "s;@BROWSER@;${BROWSER};g" \
 	${FILESDIR}/netscape.sh >${WRKSRC}/netscape
 chmod +x ${WRKSRC}/netscape
 
diff -urN /usr/ports/www/netscape4-navigator/Makefile www/netscape4-navigator/Makefile
--- /usr/ports/www/netscape4-navigator/Makefile	Sat Oct 10 06:30:38 1998
+++ www/netscape4-navigator/Makefile	Thu Oct 15 23:40:06 1998
@@ -1,68 +1,20 @@
 # New ports collection makefile for:	netscape (navigator only)
-# Version required:     4.06
+# Version required:     4.0*
 # Date created:         24 Feb 1997
 # Whom:                 ache
 #
 # $Id: Makefile,v 1.26 1998/10/09 11:19:33 obrien Exp $
 #
 
-DISTNAME=       netscape-navigator-4.07
-CATEGORIES=	www
-MASTER_SITES=   ftp://ftp.netscape.com/pub/communicator/4.07/development/english/unix/freebsd/navigator_standalone/
-DISTFILES=      navigator-v407-export.x86-unknown-freebsd.tar.gz
+MASTER_SITES=	ftp://ftp.netscape.com/pub/communicator/4.07/development/english/unix/freebsd/navigator_standalone/
 
-MAINTAINER=     asami@FreeBSD.ORG
+FILESDIR=	${BASE_DIR}/files
+MD5_FILE=	${.CURDIR}/files/md5
+SCRIPTDIR=	${BASE_DIR}/scripts
 
-WRKSRC=		${WRKDIR}/navigator-v407.x86-unknown-freebsd
-NO_BUILD=       Yes
-STRIP=
-
-NDIR=           ${PREFIX}/lib/netscape
-BINDIR=		${PREFIX}/bin
+BROWSER_NAME=	navigator
 INFILE_HEAD=	'Navigator,4.07.0.98272,'
 
-.if defined(USE_128BIT)
-MASTER_SITES+=	ftp://ftp.fortify.net/pub/Fortify/ \
-		ftp://ftp.za.freebsd.org/pub/Fortify/
-DISTFILES+=	Fortify-1.2.8-unix-x86.tar.gz
-RESTRICTED=     "Contains strong cryptography"
-.endif
-
-.if !defined(USE_128BIT)
-pre-extract:
-		@${ECHO} "You can make Netscape use 128-bit encryption by defining USE_128BIT"
-.endif
-
-do-configure:
-	${ECHO} -n ${INFILE_HEAD} > ${WRKSRC}/infile
-	${ECHO} ${NDIR} >> ${WRKSRC}/infile
-	${SED} -e "s;@X11BASE@;${X11BASE};g" -e "s;@PREFIX@;${PREFIX};g" \
-		${FILESDIR}/netscape.sh >${WRKSRC}/netscape
-	chmod +x ${WRKSRC}/netscape
-
-do-install:
-	${MKDIR} ${NDIR}/java/classes
-	${INSTALL_DATA} ${WRKSRC}/*.jar ${NDIR}/java/classes
-	${INSTALL_PROGRAM} ${WRKSRC}/vreg ${NDIR}
-	for i in ${WRKSRC}/*.nif; do \
-		${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} $${i} -C ${NDIR}; \
-	done
-	${WRKSRC}/vreg ${NDIR}/registry ${WRKSRC}/infile
-	${MV} -f ${NDIR}/netscape ${NDIR}/navigator-4.07.bin
-	${INSTALL_SCRIPT} ${WRKSRC}/netscape ${BINDIR}/navigator-4.07
-	ln -sf navigator-4.07 ${BINDIR}/navigator-4
-	ln -sf navigator-4 ${BINDIR}/netscape
-	if [ ! -f ${NDIR}/mailcap ] ; then \
-	    ${INSTALL_DATA} ${FILESDIR}/mailcap ${NDIR}; \
-	fi
-	${RM} -rf ${NDIR}/movemail-src
-.if defined(USE_128BIT) && defined(USA_RESIDENT) && ${USA_RESIDENT} == NO
-	cd ${WRKDIR}/Fortify-1.2.8-unix-x86 && \
-		(${ECHO} yes ; ${ECHO} no) | ./Fortify.sh ${NDIR}/navigator-4.07.bin
-.endif
-	chown -R bin.bin ${NDIR}
-
-post-install:
-	@${CAT} ${PKGDIR}/DESCR
+.include "${.CURDIR}/../../www/netscape4-communicator/Makefile"
 
-.include <bsd.port.mk>
+MAINTAINER=	ache@FreeBSD.ORG
diff -urN /usr/ports/www/netscape4-navigator/files/mailcap www/netscape4-navigator/files/mailcap
--- /usr/ports/www/netscape4-navigator/files/mailcap	Tue Feb 25 04:00:29 1997
+++ www/netscape4-navigator/files/mailcap	Thu Jan  1 09:00:00 1970
@@ -1,69 +0,0 @@
-# Example .mailcap file for FreeBSD machines
-#
-# First a note about syntax:
-#    The first token in a configuration line represents a mime type.
-#    A mime type is of the form "SubGroup/Item" and either token
-#    can be replaced by the wildcard character "*"
-# 
-#    the second token is the command that you would run
-#    when the specified mime type is encountered.  An example
-#    would be "xv %s" where %s will be replaced by a filename
-#
-#    remaining tokens represent name value pairs.
-#
-#    the "test=<SOME TEST COMMAND>" pair invokes the test command
-#    specified and checks the UNIX shell return code to see if the
-#    test passed.  If the test passes the mime mapping is made, otherwise
-#    the mapping is not made.
-#
-#    the "stream-buffer-size=<NUMBER>" pair tells the application
-#    to use a popen command to invoke the program specified and to
-#    pipe all data into the command.  Only programs that can handle
-#    piped input can use this method.  When this method is used
-#    a "%s" should not be included in the command.  You should
-#    make sure that the program you wish to use can accept piped
-#    data by trying something like this before using it:
-#       cat "YOUR_DATA_FILE_HERE" | COMMAND_TO_TEST
-#
-#    You may continue lines by using the backslash character "\"
-
-# FreeBSD doesn't seem to support `sfplay' yet, but if a port comes
-# along then the following should be enabled.
-#
-# plays AIFF files
-#audio/x-aiff; sfplay %s
-
-# plays AIFC files
-#audio/x-aifc; sfplay %s
-
-# FreeBSD has no wavplay utility either, but if someone
-# would care to port one then this can also be used.
-# plays WAV files
-#audio/x-wav; wavplay %s > /dev/null 2>&1
-
-# FreeBSD /dev/audio is sun compliant
-audio/basic; cat %s > /dev/audio
-
-# use this to play MPEG audio if you have maplay installed  
-audio/x-mpeg; maplay -; stream-buffer-size=2000
-
-# use this to play MPEG video files if you have mpeg_play installed
-video/mpeg; mpeg_play -quiet %s
-
-# All other anims go well with xanim (if installed)
-video/*; xanim %s > /dev/null 2>&1
-
-# use this to display postscript files
-application/postscript; ghostview %s
-
-# use this to display pdf files
-application/pdf; xpdf %s 2>/dev/null
-
-# this is the default for non GIF or JPEG images
-image/*; xv %s
-
-# if you would prefer an external viewer for GIF and JPEG images
-# uncomment the following lines for XV to act as your external viewer.
-#image/gif; xv %s
-#image/jpg; xv %s
-#image/jpeg; xv %s
diff -urN /usr/ports/www/netscape4-navigator/files/md5 www/netscape4-navigator/files/md5
--- /usr/ports/www/netscape4-navigator/files/md5	Sat Oct 10 06:30:38 1998
+++ www/netscape4-navigator/files/md5	Thu Oct 15 21:00:01 1998
@@ -1,2 +1,2 @@
 MD5 (navigator-v407-export.x86-unknown-freebsd.tar.gz) = c25c3d8ba7571fbb3b3d658093be6a56
-MD5 (Fortify-1.2.8-unix-x86.tar.gz) = 1edd29d027d8f1ca84d5e6fb61f66e07
+MD5 (autoadmin-v407.x86-unknown-freebsd.tar.gz) = 70b216bfde0797a7e755f0de41640d80
diff -urN /usr/ports/www/netscape4-navigator/files/netscape.sh www/netscape4-navigator/files/netscape.sh
--- /usr/ports/www/netscape4-navigator/files/netscape.sh	Sat Oct 10 06:30:38 1998
+++ www/netscape4-navigator/files/netscape.sh	Thu Jan  1 09:00:00 1970
@@ -1,5 +0,0 @@
-#!/bin/sh
-export MOZILLA_HOME; MOZILLA_HOME=${MOZILLA_HOME:=@PREFIX@/lib/netscape}
-export CLASSPATH ; CLASSPATH=.:$MOZILLA_HOME
-export XCMSDB; XCMSDB=/dev/null
-exec $MOZILLA_HOME/navigator-4.07.bin $*
diff -urN /usr/ports/www/netscape4-navigator/pkg/DESCR www/netscape4-navigator/pkg/DESCR
--- /usr/ports/www/netscape4-navigator/pkg/DESCR	Thu Sep 25 17:25:29 1997
+++ www/netscape4-navigator/pkg/DESCR	Thu Oct 15 21:00:00 1998
@@ -1,12 +1,6 @@
 This is the netscape web-surfboard.  Please read the file
 "/usr/local/lib/netscape/LICENSE" for the licensing terms.
 
-Note: If the standalone navigator hangs on startup eating all CPU
-time, find the user_pref("browser.startup.license_accepted", ...);
-line in your ~/.netscape/preferences.js and move it to the end of
-the file, or remove it, if simply moving doesn't help.
-Don't forget to report this bug to Netscape Team.
-
 Note: If Java applets fail to display.  Type this as root:
 		cd /usr/X11R6/lib/X11/fonts/misc
 		/usr/X11R6/bin/mkfontdir
diff -urN /usr/ports/www/netscape4-navigator/pkg/PLIST www/netscape4-navigator/pkg/PLIST
--- /usr/ports/www/netscape4-navigator/pkg/PLIST	Sat Oct 10 06:30:38 1998
+++ www/netscape4-navigator/pkg/PLIST	Thu Oct 15 21:00:00 1998
@@ -1,151 +1,152 @@
-bin/navigator-4.07
-@exec ln -sf %f %B/navigator-4
-@exec ln -sf navigator-4 %B/netscape
+bin/%%BROWSER%%
+@exec ln -sf %f %B/%%BROWSER_LINK%%
+@exec ln -sf %%BROWSER_LINK%% %B/netscape
 @unexec rm -f %B/netscape
-@unexec rm -f %B/navigator-4
-lib/netscape/LICENSE
-lib/netscape/Netscape.ad
-lib/netscape/README
-lib/netscape/XKeysymDB
-lib/netscape/bookmark.htm
-lib/netscape/java/classes/aix/font.properties
-lib/netscape/java/classes/aix/font.properties.cs
-lib/netscape/java/classes/aix/font.properties.hu
-lib/netscape/java/classes/aix/font.properties.ja
-lib/netscape/java/classes/aix/font.properties.ko
-lib/netscape/java/classes/aix/font.properties.pl
-lib/netscape/java/classes/aix/font.properties.ru
-lib/netscape/java/classes/aix/font.properties.zh
-lib/netscape/java/classes/aix/font.properties.zh_TW
-lib/netscape/java/classes/awt.properties
-lib/netscape/java/classes/font.properties
-lib/netscape/java/classes/font.properties.cs
-lib/netscape/java/classes/font.properties.el
-lib/netscape/java/classes/font.properties.hu
-lib/netscape/java/classes/font.properties.ja
-lib/netscape/java/classes/font.properties.ko
-lib/netscape/java/classes/font.properties.lt
-lib/netscape/java/classes/font.properties.lv
-lib/netscape/java/classes/font.properties.pl
-lib/netscape/java/classes/font.properties.ru
-lib/netscape/java/classes/font.properties.tr
-lib/netscape/java/classes/font.properties.zh
-lib/netscape/java/classes/font.properties.zh_GB2312
-lib/netscape/java/classes/font.properties.zh_TW
-lib/netscape/java/classes/font.properties.zh_TW_Big5
-lib/netscape/java/classes/font.properties.zh_TW_CNS11643
-lib/netscape/java/classes/hpux/font.properties
-lib/netscape/java/classes/hpux/font.properties.bg
-lib/netscape/java/classes/hpux/font.properties.cs
-lib/netscape/java/classes/hpux/font.properties.el
-lib/netscape/java/classes/hpux/font.properties.hr
-lib/netscape/java/classes/hpux/font.properties.hu
-lib/netscape/java/classes/hpux/font.properties.ja
-lib/netscape/java/classes/hpux/font.properties.ko
-lib/netscape/java/classes/hpux/font.properties.pl
-lib/netscape/java/classes/hpux/font.properties.ro
-lib/netscape/java/classes/hpux/font.properties.ru
-lib/netscape/java/classes/hpux/font.properties.sk
-lib/netscape/java/classes/hpux/font.properties.sl
-lib/netscape/java/classes/hpux/font.properties.tr
-lib/netscape/java/classes/hpux/font.properties.zh_GB2312
-lib/netscape/java/classes/hpux/font.properties.zh_TW_Big5
-lib/netscape/java/classes/hpux/font.properties.zh_TW_CNS11643
-lib/netscape/java/classes/ifc11.jar
-lib/netscape/java/classes/iiop10.jar
-lib/netscape/java/classes/irix/font.properties
-lib/netscape/java/classes/irix/font.properties.cs
-lib/netscape/java/classes/irix/font.properties.el
-lib/netscape/java/classes/irix/font.properties.hu
-lib/netscape/java/classes/irix/font.properties.ja
-lib/netscape/java/classes/irix/font.properties.ko
-lib/netscape/java/classes/irix/font.properties.zh_GB2312
-lib/netscape/java/classes/irix/font.properties.zh_TW_Big5
-lib/netscape/java/classes/irix/font.properties.zh_TW_CNS11643
-lib/netscape/java/classes/jae40.jar
-lib/netscape/java/classes/java40.jar
-lib/netscape/java/classes/jio40.jar
-lib/netscape/java/classes/jsd10.jar
-lib/netscape/java/classes/ldap10.jar
-lib/netscape/java/classes/scd10.jar
-lib/netscape/mailcap
-lib/netscape/navigator-4.07.bin
-lib/netscape/nethelp/Back_dep.gif
-lib/netscape/nethelp/Back_dis.gif
-lib/netscape/nethelp/Back_sel.gif
-lib/netscape/nethelp/Back_up.gif
-lib/netscape/nethelp/Blank.htm
-lib/netscape/nethelp/Button.js
-lib/netscape/nethelp/CntData.js
-lib/netscape/nethelp/CntTool.htm
-lib/netscape/nethelp/CntTool.js
-lib/netscape/nethelp/Exit_dep.gif
-lib/netscape/nethelp/Exit_sel.gif
-lib/netscape/nethelp/Exit_up.gif
-lib/netscape/nethelp/Forw_dep.gif
-lib/netscape/nethelp/Forw_dis.gif
-lib/netscape/nethelp/Forw_sel.gif
-lib/netscape/nethelp/Forw_up.gif
-lib/netscape/nethelp/Header.js
-lib/netscape/nethelp/IdxData.js
-lib/netscape/nethelp/IdxFill.htm
-lib/netscape/nethelp/IdxKey.htm
-lib/netscape/nethelp/IdxTool.htm
-lib/netscape/nethelp/IdxTopic.htm
-lib/netscape/nethelp/Local-1.js
-lib/netscape/nethelp/NSHIfrm.htm
-lib/netscape/nethelp/NavUI.htm
-lib/netscape/nethelp/NoJSerr.htm
-lib/netscape/nethelp/Prnt_dep.gif
-lib/netscape/nethelp/Prnt_sel.gif
-lib/netscape/nethelp/Prnt_up.gif
-lib/netscape/nethelp/Stack.js
-lib/netscape/nethelp/Status.htm
-lib/netscape/nethelp/System.htm
-lib/netscape/nethelp/System.js
-lib/netscape/nethelp/ToolUI.htm
-lib/netscape/nethelp/Tool_dep.gif
-lib/netscape/nethelp/Tool_sel.gif
-lib/netscape/nethelp/Tool_up.gif
-lib/netscape/nethelp/Topic.js
-lib/netscape/nethelp/Utility.js
-lib/netscape/nethelp/Wait.gif
-lib/netscape/nethelp/netscape/collabra/coll.htm
-lib/netscape/nethelp/netscape/collabra/collHdr.htm
-lib/netscape/nethelp/netscape/collabra/help.hpf
-lib/netscape/nethelp/netscape/collabra/security.gif
-lib/netscape/nethelp/netscape/home/help.hpf
-lib/netscape/nethelp/netscape/home/home.gif
-lib/netscape/nethelp/netscape/home/home.htm
-lib/netscape/nethelp/netscape/home/homeHdr.htm
-lib/netscape/nethelp/netscape/navigatr/help.hpf
-lib/netscape/nethelp/netscape/navigatr/nav.htm
-lib/netscape/nethelp/netscape/navigatr/navHdr.htm
-lib/netscape/nethelp/netscape/navigatr/navigatr.gif
-lib/netscape/nethelp/netscape/netcastr/help.hpf
-lib/netscape/nethelp/netscape/netcastr/net.htm
-lib/netscape/nethelp/netscape/netcastr/netHdr.htm
-lib/netscape/nethelp/netscape/netcastr/netcastr.gif
-lib/netscape/nethelp/netscape/shared/Contents.htm
-lib/netscape/nethelp/netscape/shared/NetHelp1.css
-lib/netscape/nethelp/netscape/shared/collIcon.gif
-lib/netscape/nethelp/netscape/shared/commIcon.gif
-lib/netscape/nethelp/netscape/shared/navIcon.gif
-lib/netscape/nethelp/netscape/shared/netIcon.gif
-lib/netscape/plugins/libnullplugin.so
-lib/netscape/registry
-lib/netscape/vreg
-@dirrm lib/netscape/plugins
-@dirrm lib/netscape/nethelp/netscape/shared
-@dirrm lib/netscape/nethelp/netscape/netcastr
-@dirrm lib/netscape/nethelp/netscape/navigatr
-@dirrm lib/netscape/nethelp/netscape/home
-@dirrm lib/netscape/nethelp/netscape/collabra
-@dirrm lib/netscape/nethelp/netscape
-@dirrm lib/netscape/nethelp
-@dirrm lib/netscape/java/classes/irix
-@dirrm lib/netscape/java/classes/hpux
-@dirrm lib/netscape/java/classes/aix
-@dirrm lib/netscape/java/classes
-@dirrm lib/netscape/java
-@dirrm lib/netscape
+@unexec rm -f %B/%%BROWSER_LINK%%
+%%NSUBDIR%%/LICENSE
+%%NSUBDIR%%/Netscape.ad
+%%NSUBDIR%%/README
+%%NSUBDIR%%/XKeysymDB
+%%NSUBDIR%%/bookmark.htm
+%%NSUBDIR%%/java/classes/aix/font.properties
+%%NSUBDIR%%/java/classes/aix/font.properties.cs
+%%NSUBDIR%%/java/classes/aix/font.properties.hu
+%%NSUBDIR%%/java/classes/aix/font.properties.ja
+%%NSUBDIR%%/java/classes/aix/font.properties.ko
+%%NSUBDIR%%/java/classes/aix/font.properties.pl
+%%NSUBDIR%%/java/classes/aix/font.properties.ru
+%%NSUBDIR%%/java/classes/aix/font.properties.zh
+%%NSUBDIR%%/java/classes/aix/font.properties.zh_TW
+%%NSUBDIR%%/java/classes/awt.properties
+%%NSUBDIR%%/java/classes/font.properties
+%%NSUBDIR%%/java/classes/font.properties.cs
+%%NSUBDIR%%/java/classes/font.properties.el
+%%NSUBDIR%%/java/classes/font.properties.hu
+%%NSUBDIR%%/java/classes/font.properties.ja
+%%NSUBDIR%%/java/classes/font.properties.ko
+%%NSUBDIR%%/java/classes/font.properties.lt
+%%NSUBDIR%%/java/classes/font.properties.lv
+%%NSUBDIR%%/java/classes/font.properties.pl
+%%NSUBDIR%%/java/classes/font.properties.ru
+%%NSUBDIR%%/java/classes/font.properties.tr
+%%NSUBDIR%%/java/classes/font.properties.zh
+%%NSUBDIR%%/java/classes/font.properties.zh_GB2312
+%%NSUBDIR%%/java/classes/font.properties.zh_TW
+%%NSUBDIR%%/java/classes/font.properties.zh_TW_Big5
+%%NSUBDIR%%/java/classes/font.properties.zh_TW_CNS11643
+%%NSUBDIR%%/java/classes/hpux/font.properties
+%%NSUBDIR%%/java/classes/hpux/font.properties.bg
+%%NSUBDIR%%/java/classes/hpux/font.properties.cs
+%%NSUBDIR%%/java/classes/hpux/font.properties.el
+%%NSUBDIR%%/java/classes/hpux/font.properties.hr
+%%NSUBDIR%%/java/classes/hpux/font.properties.hu
+%%NSUBDIR%%/java/classes/hpux/font.properties.ja
+%%NSUBDIR%%/java/classes/hpux/font.properties.ko
+%%NSUBDIR%%/java/classes/hpux/font.properties.pl
+%%NSUBDIR%%/java/classes/hpux/font.properties.ro
+%%NSUBDIR%%/java/classes/hpux/font.properties.ru
+%%NSUBDIR%%/java/classes/hpux/font.properties.sk
+%%NSUBDIR%%/java/classes/hpux/font.properties.sl
+%%NSUBDIR%%/java/classes/hpux/font.properties.tr
+%%NSUBDIR%%/java/classes/hpux/font.properties.zh_GB2312
+%%NSUBDIR%%/java/classes/hpux/font.properties.zh_TW_Big5
+%%NSUBDIR%%/java/classes/hpux/font.properties.zh_TW_CNS11643
+%%NSUBDIR%%/java/classes/ifc11.jar
+%%NSUBDIR%%/java/classes/iiop10.jar
+%%NSUBDIR%%/java/classes/irix/font.properties
+%%NSUBDIR%%/java/classes/irix/font.properties.cs
+%%NSUBDIR%%/java/classes/irix/font.properties.el
+%%NSUBDIR%%/java/classes/irix/font.properties.hu
+%%NSUBDIR%%/java/classes/irix/font.properties.ja
+%%NSUBDIR%%/java/classes/irix/font.properties.ko
+%%NSUBDIR%%/java/classes/irix/font.properties.zh_GB2312
+%%NSUBDIR%%/java/classes/irix/font.properties.zh_TW_Big5
+%%NSUBDIR%%/java/classes/irix/font.properties.zh_TW_CNS11643
+%%NSUBDIR%%/java/classes/jae40.jar
+%%NSUBDIR%%/java/classes/java40.jar
+%%NSUBDIR%%/java/classes/jio40.jar
+%%NSUBDIR%%/java/classes/jsd10.jar
+%%NSUBDIR%%/java/classes/ldap10.jar
+%%NSUBDIR%%/java/classes/scd10.jar
+%%NSUBDIR%%/libAutoAdmin.so
+%%NSUBDIR%%/mailcap
+%%NSUBDIR%%/navigator-4.07.bin
+%%NSUBDIR%%/nethelp/Back_dep.gif
+%%NSUBDIR%%/nethelp/Back_dis.gif
+%%NSUBDIR%%/nethelp/Back_sel.gif
+%%NSUBDIR%%/nethelp/Back_up.gif
+%%NSUBDIR%%/nethelp/Blank.htm
+%%NSUBDIR%%/nethelp/Button.js
+%%NSUBDIR%%/nethelp/CntData.js
+%%NSUBDIR%%/nethelp/CntTool.htm
+%%NSUBDIR%%/nethelp/CntTool.js
+%%NSUBDIR%%/nethelp/Exit_dep.gif
+%%NSUBDIR%%/nethelp/Exit_sel.gif
+%%NSUBDIR%%/nethelp/Exit_up.gif
+%%NSUBDIR%%/nethelp/Forw_dep.gif
+%%NSUBDIR%%/nethelp/Forw_dis.gif
+%%NSUBDIR%%/nethelp/Forw_sel.gif
+%%NSUBDIR%%/nethelp/Forw_up.gif
+%%NSUBDIR%%/nethelp/Header.js
+%%NSUBDIR%%/nethelp/IdxData.js
+%%NSUBDIR%%/nethelp/IdxFill.htm
+%%NSUBDIR%%/nethelp/IdxKey.htm
+%%NSUBDIR%%/nethelp/IdxTool.htm
+%%NSUBDIR%%/nethelp/IdxTopic.htm
+%%NSUBDIR%%/nethelp/Local-1.js
+%%NSUBDIR%%/nethelp/NSHIfrm.htm
+%%NSUBDIR%%/nethelp/NavUI.htm
+%%NSUBDIR%%/nethelp/NoJSerr.htm
+%%NSUBDIR%%/nethelp/Prnt_dep.gif
+%%NSUBDIR%%/nethelp/Prnt_sel.gif
+%%NSUBDIR%%/nethelp/Prnt_up.gif
+%%NSUBDIR%%/nethelp/Stack.js
+%%NSUBDIR%%/nethelp/Status.htm
+%%NSUBDIR%%/nethelp/System.htm
+%%NSUBDIR%%/nethelp/System.js
+%%NSUBDIR%%/nethelp/ToolUI.htm
+%%NSUBDIR%%/nethelp/Tool_dep.gif
+%%NSUBDIR%%/nethelp/Tool_sel.gif
+%%NSUBDIR%%/nethelp/Tool_up.gif
+%%NSUBDIR%%/nethelp/Topic.js
+%%NSUBDIR%%/nethelp/Utility.js
+%%NSUBDIR%%/nethelp/Wait.gif
+%%NSUBDIR%%/nethelp/netscape/collabra/coll.htm
+%%NSUBDIR%%/nethelp/netscape/collabra/collHdr.htm
+%%NSUBDIR%%/nethelp/netscape/collabra/help.hpf
+%%NSUBDIR%%/nethelp/netscape/collabra/security.gif
+%%NSUBDIR%%/nethelp/netscape/home/help.hpf
+%%NSUBDIR%%/nethelp/netscape/home/home.gif
+%%NSUBDIR%%/nethelp/netscape/home/home.htm
+%%NSUBDIR%%/nethelp/netscape/home/homeHdr.htm
+%%NSUBDIR%%/nethelp/netscape/navigatr/help.hpf
+%%NSUBDIR%%/nethelp/netscape/navigatr/nav.htm
+%%NSUBDIR%%/nethelp/netscape/navigatr/navHdr.htm
+%%NSUBDIR%%/nethelp/netscape/navigatr/navigatr.gif
+%%NSUBDIR%%/nethelp/netscape/netcastr/help.hpf
+%%NSUBDIR%%/nethelp/netscape/netcastr/net.htm
+%%NSUBDIR%%/nethelp/netscape/netcastr/netHdr.htm
+%%NSUBDIR%%/nethelp/netscape/netcastr/netcastr.gif
+%%NSUBDIR%%/nethelp/netscape/shared/Contents.htm
+%%NSUBDIR%%/nethelp/netscape/shared/NetHelp1.css
+%%NSUBDIR%%/nethelp/netscape/shared/collIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/commIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/navIcon.gif
+%%NSUBDIR%%/nethelp/netscape/shared/netIcon.gif
+%%NSUBDIR%%/plugins/libnullplugin.so
+%%NSUBDIR%%/registry
+%%NSUBDIR%%/vreg
+@dirrm %%NSUBDIR%%/plugins
+@dirrm %%NSUBDIR%%/nethelp/netscape/shared
+@dirrm %%NSUBDIR%%/nethelp/netscape/netcastr
+@dirrm %%NSUBDIR%%/nethelp/netscape/navigatr
+@dirrm %%NSUBDIR%%/nethelp/netscape/home
+@dirrm %%NSUBDIR%%/nethelp/netscape/collabra
+@dirrm %%NSUBDIR%%/nethelp/netscape
+@dirrm %%NSUBDIR%%/nethelp
+@dirrm %%NSUBDIR%%/java/classes/irix
+@dirrm %%NSUBDIR%%/java/classes/hpux
+@dirrm %%NSUBDIR%%/java/classes/aix
+@dirrm %%NSUBDIR%%/java/classes
+@dirrm %%NSUBDIR%%/java
+@dirrm %%NSUBDIR%%
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199810280010.JAA15209>