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
56
57
58
59
60
61
62
63
64
|
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.1.1.1 2002/05/31 13:01:41 seb Exp $
PKGNAME=$1
STAGE=$2
case ${STAGE} in
PRE-INSTALL)
;;
POST-INSTALL)
cat <<EOF
=============================================================
1. If you customize namazu configuration, copy
@EXAMPLEDIR@/share/namazu/namazurc.default and
@EXAMPLEDIR@/mknmzrc.default to @CONFDIR@,
and edit them.
2. Since index file format is differnet from namazu 1.X, you need to
rebuild index files if you upgrade from namazu 1.X.
3. In order to processing Japanese, you need to set "LC_ALL", "LANG"
or "LC_CTYPE" environment to "ja". Or use --indexing-lang option
of mknmz.
4. In order to display Japanese message, you need to set "LANGUAGE",
"LC_ALL", "LC_MESSAGES" or "LANG" environment to "ja".
5. Because of lack of locale support, you need to set "PERL_BADLANG"
for perl to stop the warning on NetBSD 1.5.X and before.
On NetBSD current (1.6 or later), you don't need to set
"PERL_BADLANG" but "LC_LANG" environment.
6. If you want to make index of bellow file type, please install
appropriate package.
Adobe PDF xpdf
Adobe PostScript ghostscript
JustSystem Ichitaro DocCat
Microsoft Excel xlHtml or DocCat
Microsoft PowerPoint xlHtml or DocCat
Microsoft Word wv or DocCat
Redhat RPM rpm
TeX source detex
TeX dvi dvi2tty
For handling non-English language, you might need lv and/or nkf
package, too.
DocCat is a commercial product from Dehenken Limited and it dosen't
provided as NetBSD package (yet?).
See http://www.dehenken.co.jp/english/doccat.html in detail.
=============================================================
EOF
;;
*)
echo "Unexpected argument: ${STAGE}"
exit 1
;;
esac
exit 0
|