Gentoo Archives: gentoo-dev

From: Gold is Heavy <aeoo@×××××××.org>
To: gentoo-dev@××××××××××.org
Subject: [gentoo-dev] kmail on gentoo: how to make it use ispell
Date: Thu, 11 Oct 2001 18:05:12
Message-Id: auto-000008568770@front1.mail.megapathdsl.net
1 Yo guys,
2
3 I figured out how to make kmail use ispell. I couldn't take kmail not
4 allowing me to do spell checking, so I used a handy strace command to see
5 what the photon is going on.
6
7 strace -s 256 kmail --nofork > /tmp/kmail.log 2>&1 &
8
9 Ok, -s 256 allows me to see the entire strings in the function arguments.
10 The reason I chose piping the output instead of using strace -o option is
11 because I wanted to see kmail's own debugging output combined with strace.
12 Looking quickly at the log file, I noticed that kmail was looking for
13
14 /usr/lib/ispell/english.hash
15
16 So, I got there, and of course, there is no english.hash file. I type 'man
17 ispell' and what do you know, it explains how to make .hash file. So, I su
18 to root, then do
19
20 cd /usr/lib/ispell
21 buildhash english.med english.aff english.hash
22
23 And, presto, kmail works. It's still kinda weird, because kmail is supposed
24 to recognize all the dictionaries installed, but it doesn't. I don't think
25 it understands /usr/lib/ispell/americanmed.hash stuff -- I think it wants to
26 see /usr/lib/ispell/american.hash instead, maybe? Or maybe not. It works
27 well enough now.
28
29 I hope this helps some of you.
30
31 --Leo

Replies

Subject Author
Re: [gentoo-dev] kmail on gentoo: how to make it use ispell Dan Armak <danarmak@g.o>