Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 1946 - w3m with Japanese support
Summary: w3m with Japanese support
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Stuart Bouyer (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-04-20 00:29 UTC by Cong
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Cong 2002-04-20 00:29:37 UTC
I use USE flag nls to decide whether enable Japanese or not.
Comment 1 Cong 2002-04-20 00:33:24 UTC
I could not create an attachment of ebuild file.
It said: "No file was provided, or it was empty"
Comment 2 Seemant Kulleen (RETIRED) gentoo-dev 2002-04-24 07:10:57 UTC
Please paste the diff here
Comment 3 Cong 2002-04-25 10:18:26 UTC
vochi8@freespace vochi8 $ diff /usr/portage/net-www/w3m/w3m-0.2.2.ebuild
~/etc/w3m-0.2.2.ebuild 
30c30
< 		echo 2
---
> 		use nls &>/dev/null && echo 1 && echo E || echo 2
32a33,34
> 		# Do you want to use 2-byte character for table border, item, etc.
> 		use nls &>/dev/null && echo n
57c59
< 		echo /usr/bin/vi
---
> 		echo /usr/bin/vim
61c63
< 		echo /usr/bin/mozilla
---
> 		echo /usr/bin/galeon
Comment 4 Arcady Genkin (RETIRED) gentoo-dev 2002-05-24 02:25:14 UTC
Is this still an issue with 0.3-r1?

Thanks.
Comment 5 Cong 2002-05-26 08:48:38 UTC
Yes, it is.

Cong
Comment 6 Cong 2002-07-16 20:07:05 UTC
For w3m-0.3-r3

%diff /usr/portage/net-www/w3m/w3m-0.3-r3.ebuild ~/etc/w3m.ebuild 
37c37,41
<               echo 2
---
>               use nls &>/dev/null && echo 1 || echo 2
>               # What is your display kanji code
>               use nls &>/dev/null && echo E
>               # Use 2-byte character for table border, item, etc.
>               use nls &>/dev/null && echo n
48c52
<               # 
---
>               #
50c54,62
<               echo 5
---
>               echo 6
>               # Do you want color ESC sequence for kterm/pxvt?
>               echo n
>               # Use mouse (requires xterm/kterm/gpm/sysmouse)?
>               use gpm &>/dev/null && echo y || echo n
>               # Use popup menu?
>               echo y
>               # Use cookie?
>               echo y
Comment 7 Stuart Bouyer (RETIRED) gentoo-dev 2002-07-17 11:35:52 UTC
added w3m-3.0-r4.ebuild. It's masked for testing so please let me know if it
works for you or not

thanks

Stuart Bouyer
Comment 8 Stuart Bouyer (RETIRED) gentoo-dev 2002-07-17 11:40:18 UTC
Forgot to mention that I have used "cjk" instead of "nls" as the flag for
Japanese support.

USE="cjk" emerge w3m

should get it working properly
Comment 9 Cong 2002-07-18 02:58:12 UTC
It works well, thank you!

Cong