blob: 6d9024f31de53c40cb775d018a69f0efba19de7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/japanese/netscape7/scripts/Attic/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 10 \
"browser" "Web browser (6592 kB)" ON \
"defljajp" "Japanese/Japan profile defaults (26 kB)" ON \
"flash" "Flash plugin (576 kB)" ON \
"jre" "Java plugin (13808 kB)" ON \
"langjajp" "Japanese/Japan language pack (624 kB)" ON \
"mail" "e-mail and news (1824 kB)" ON \
"regjp" "regional settings for Japan (54 kB)" ON \
"regus" "regional settings for the USA (56 kB)" ON \
"spellchecker" "spell-checker (544 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
|