[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

www/w3m: use English message by default



as www/w3m is used by non-Japanese people as well, I think the following
change makes more sense:
- help messages default to Ensligh
- signs (like <LI>) use ASCII letters, instead of JIS 0208 letters

itojun


? work
Index: Makefile
===================================================================
RCS file: /cvsroot/pkgsrc/www/w3m/Makefile,v
retrieving revision 1.13
diff -u -r1.13 Makefile
--- Makefile	2000/06/21 08:22:08	1.13
+++ Makefile	2000/07/14 14:02:11
@@ -26,16 +26,21 @@
 
 # Set this to NO for ISO-8859-1 support (exclusive to Japanese).
 W3M_USE_JAPANESE?=	YES
+# Set this to YES if you want to use Japanese symbol/messages.
+W3M_USE_JAPANESE_SYMBOL?=NO
 # Set this to YES to use lynx like key binding.
 W3M_USE_LYNX_KEY?=	NO
 
 .if defined(W3M_USE_JAPANESE) && ${W3M_USE_JAPANESE} == YES
 CONFIGURE_ENV+=	def_lg=1
 CONFIGURE_ENV+=	def_dcode=n
+.else
+CONFIGURE_ENV+=	def_lg=2
+.endif
+.if defined(W3M_USE_JAPANESE_SYMBOL) && ${W3M_USE_JAPANESE_SYMBOL} == YES
 CONFIGURE_ENV+=	kanji_symbols=y
 HELP_LANG=	_ja
 .else
-CONFIGURE_ENV+=	def_lg=2
 CONFIGURE_ENV+=	kanji_symbols=n
 HELP_LANG=	_en
 .endif