diff options
author | itojun <itojun> | 2000-07-15 00:36:28 +0000 |
---|---|---|
committer | itojun <itojun> | 2000-07-15 00:36:28 +0000 |
commit | 50cca99e2596a84487844e9a6c6fe2b1188ece63 (patch) | |
tree | a48d6896e8efc253e11eb60228c163038101826b /www/w3m | |
parent | cf9b54f0035409b1f7eb11d57cb93fdb770772ba (diff) | |
download | pkgsrc-50cca99e2596a84487844e9a6c6fe2b1188ece63.tar.gz |
two changes for non-japanese guys (as the pkgsrc is used by many
non-japanese people):
- use ascii letters, instead of jisx0208, for screen output (like <LI> or <HR>).
- set default help messages to english (not japanese).
Diffstat (limited to 'www/w3m')
-rw-r--r-- | www/w3m/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/www/w3m/Makefile b/www/w3m/Makefile index f850f5f05ec..dc66c114aae 100644 --- a/www/w3m/Makefile +++ b/www/w3m/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2000/06/21 08:22:08 itohy Exp $ +# $NetBSD: Makefile,v 1.14 2000/07/15 00:36:28 itojun Exp $ DISTNAME= w3m-0.1.10 CATEGORIES= www @@ -26,16 +26,21 @@ EXTRACT_ELEMENTS= --exclude ${DISTNAME}/gc/\* # 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 |