head	1.3;
access;
symbols
	RELEASE_4_7_0:1.2
	RELEASE_4_6_2:1.2
	RELEASE_4_6_1:1.2
	RELEASE_4_6_0:1.2
	RELEASE_5_0_DP1:1.1;
locks; strict;
comment	@# @;


1.3
date	2002.10.14.13.50.19;	author trevor;	state dead;
branches;
next	1.2;

1.2
date	2002.05.23.13.00.10;	author trevor;	state Exp;
branches;
next	1.1;

1.1
date	2002.03.04.06.29.22;	author trevor;	state Exp;
branches;
next	;


desc
@@


1.3
log
@I remove the linux-netscape6 ports from ports/french, ports/german,
ports/japanese and ports/www.  In their place, I add corresponding netscape7
ports, after repo copies.  Now ports/www/netscape7 will no longer be a slave
port.  Instead it is the master port for the others.

The French, German, and Japanese ports now have AIM, because I had trouble
getting them to work without it.

I add a security warning to all these ports, about the "forward referrer" bug
(Mozilla bug 145579).
@
text
@#!/bin/sh
#
# $FreeBSD: ports/german/linux-netscape6/scripts/configure,v 1.2 2002/05/23 13:00:10 trevor Exp $

echo ${WRKSRC}/components.conf
if [ -f ${WRKSRC}/components.conf ]; then
	exit
fi

tempfile=`/usr/bin/mktemp -t checklist`

if [ -z "${BATCH}" ]; then

/usr/bin/dialog --title "Netscape 6 component selection" --clear \
	--checklist "\n\
Choose components of Netscape 6 to download and install. \n\
Press the space bar to toggle selections." -1 -1 11 \
"browser"	"browser (6576 kB)"				ON \
"defldede"	"German profile defaults (26 kB)"		ON \
"flash"		"Flash plugin (576 kB)"				ON \
"jre"		"Java plugin (13808 kB)"			ON \
"langdede"	"German language pack (592 kB)"			ON \
"mail"		"e-mail and news (1824 kB)"			ON \
"regde"		"regional settings for Germany (56 kB)"		ON \
"regfr"		"regional settings for France (52 kB)"		ON \
"regus"		"regional settings for the USA (56 kB)"		ON \
"spellchecker"	"spell-checker (1040 kB)"			ON \
"talkback"	"sends bug reports to Netscape staff (832 kB)"	ON \
2> /tmp/checklist.tmp.$$

retval=$?

choice=`cat /tmp/checklist.tmp.$$`
rm -f /tmp/checklist.tmp.$$

case $retval in
	0)	if [ -z "$choice" ]; then
			echo "Nothing selected"
			exit 1;
	fi
	;;
	1)	echo "Cancel pressed."
		exit 1
	;;
esac

echo "$choice" \
	| sed -e "s/\"//g" \
	| sed -e "s/mail/mail browser/g" \
	| sed -e "s/browser/browser psm xpcom/g" \
	| sort -u \
	| sed -e "s/ /.xpi /g" \
	| sed -e "s/$/.xpi/g" \
	| perl -pi -e "s/ /\n/g" \
	> ${WRKSRC}/components.conf
fi
@


1.2
log
@Remove some unused code.
@
text
@d3 1
a3 1
# $FreeBSD: ports/german/linux-netscape6/scripts/configure,v 1.1 2002/03/04 06:29:22 trevor Exp $
@


1.1
log
@Add new port of Netscape 6 (Linux binary) with German localization.

Submitted by:	Thomas E. Zander <riggs@@hadiko.de>
@
text
@d3 1
a3 1
# $FreeBSD$
d12 1
a12 7
if [ "${BATCH}" ]; then
	if [ "${NETSCAPE6_OPTIONS}" ]; then
		set ${NETSCAPE6_OPTIONS}
	else
		set \"zlib\" \"MySQL\"
	fi
else
@

