mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 07:30:32 -04:00
category. Namazu is a full-text search system intended for easy use. Not only it works as a CGI program for a small or medium scale Web search engine, but also works as a personal use search system for your pile of emails. (The Japanese word `Namazu' means `catfish' in English) - Remove the Japanese specific dependencies. - Add a patch to provide a better configuration example.
33 lines
665 B
Perl
33 lines
665 B
Perl
--- pl/conf.pl.in.orig Thu Aug 23 17:19:52 2001
|
|
+++ pl/conf.pl.in Sat Oct 13 05:34:48 2001
|
|
@@ -173,17 +173,17 @@
|
|
#
|
|
# Network Kanji Filter nkf v1.62 or later
|
|
#
|
|
-$NKF = "@NKF@";
|
|
+$NKF = "module_nkf";
|
|
|
|
#
|
|
# KAKASI
|
|
#
|
|
-$KAKASI = "@DO_KAKASI@";
|
|
+$KAKASI = "module_kakasi";
|
|
|
|
#
|
|
# ChaSen 1.51 or later (simple wakatigaki)
|
|
#
|
|
-$CHASEN = "@DO_CHASEN@";
|
|
+$CHASEN = "module_chasen";
|
|
|
|
#
|
|
# ChaSen 1.51 or later (with noun words extraction)
|
|
@@ -193,7 +193,8 @@
|
|
#
|
|
# Default Japanese processer: KAKASI or ChaSen.
|
|
#
|
|
-$WAKATI = $@OPT_WAKATI_DEFAULT@;
|
|
+$WAKATI = $KAKASI;
|
|
+$WAKATI = $CHASEN;
|
|
|
|
|
|
#===================================================================
|