Thank you so much for your guidance, I really appreciate it. Im actually not much of a PC person actually but I was able to install what you mentioned
After installing kdelibs (I learned now that fedora14 is using kde4 not kde3 which i noticed some of the files inside the tarball had), anyhoo:
I tried 2 more attempts (this took me 4 hours woohoo.. im poooped...):
TRY ATTEMPT #1
------------------------
Commands Ran:
sudo yum install -y kdelib*
....and it worked ok... installed a bunch of kde things....
mkdir kanjisaver-0.9.10\ \(3\)/
cd kanjisaver-0.9.10\ \(3\)/
cp ../31660-kanjisaver-0.9.10.tar.gz .
tar xvfz 31660-kanjisaver-0.9.10.tar.gz
cd kanjisaver-0.9.10/
ls
sudo ./configure
make
Results:
I made the folder, copied the tarball into the folder, and extracted it. I ran ./configure and it outputted:
...lots of checks... and then finished with these lines:
config.status: creating src/Makefile
config.status: creating config.h
config.status: executing depfiles commands
Good - your configure finished. Start make now
... So now I ran make but it errored with these:
make all-recursive
make[1]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10' Entering...
Making all in doc
make[2]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10/doc' Entering...
Making all in .
make[3]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10/doc' Entering...
make[3]: `all-am' Failed.
make[3]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10/doc' Leaving...
Making all in en
make[3]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10/doc/en' Entering...
/usr/bin/meinproc --check --cache index.cache.bz2 ./index.docbook
make[3]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10/doc/en' Leaving...
make[2]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10/doc' Leaving...
Making all in po
make[2]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10/po' Entering...
make[2]: `all' Failed.
make[2]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10/po' Leaving...
Making all in src
make[2]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10/src' Entering...
/usr/lib/qt-3.3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -o kanjisaverui.h ./kanjisaverui.ui
if g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/lib/qt-3.3/include -I. -UQT_NO_ASCII_CAST -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -O2 -Wformat-security -Wmissing-format-attribute -fno-exceptions -fno-check-new -fno-common -MT kanjisaver.o -MD -MP -MF ".deps/kanjisaver.Tpo" -c -o kanjisaver.o kanjisaver.cpp; \
then mv -f ".deps/kanjisaver.Tpo" ".deps/kanjisaver.Po"; else rm -f ".deps/kanjisaver.Tpo"; exit 1; fi
In file included from kanjisaver.cpp:28:0:
kanjisaver.h:9:26: fatal error: kscreensaver.h: No such file or directory. Compile failed.
make[2]: *** [kanjisaver.o] Error 1
make[2]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10/src' Leaving...
make[1]: *** [all-recursive] Error 1
make[1]: Directory `/home/matsubara/TestingKanjiSaver/kanjisaver/kanjisaver-0.9.10 (3)/kanjisaver-0.9.10' Leaving...
make: *** [all] Error 2
It sounds like the kanjisaver.cpp that has a line for #include "kanjisaver.h" failed. Im not sure why, but the both files are in the same directory

... Anyone tried doing this?
THE SECOND ATTEMPT---------
-------------------------------
Somebody told me to subsitute replace all occurances of 'kde3' with 'kde4' in all of the extracted files... This sounded weird but I did what she told me:
$ find . -type f | xargs sed 's/kde3/kde4/g'
$ ./configure ;
and it printed....
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking for -p flag to install... yes
checking whether build environment is sane... yes
..
....a bunch of stuff... then eventually...
checking for perl... /usr/bin/perl
checking for Qt... libraries /usr/lib/qt-3.3/lib, headers /usr/lib/qt-3.3/include using -mt
checking for moc... /usr/lib/qt-3.3/bin/moc
checking for uic... /usr/lib/qt-3.3/bin/uic
checking whether uic supports -L ... yes
checking whether uic supports -nounload ... yes
checking if Qt needs -ljpeg... no
checking for rpath... yes
checking for KDE... configure: error:
I can't find the designer plugins. These are required and should have been installed
by kdelibs
make: failed
So... that didnt work too... Any advice? Try to compile the tarball on your box too if you want. The file name is:
31660-kanjisaver-0.9.10.tar.gz
I got it from the URL listed in the beginning of this topic. thanks so much,
any more advice?

---------- Post added at 11:49 PM ---------- Previous post was at 11:48 PM ----------
Btw, for the previous post on ATTEMPT#1, i did "sudo make", and also tried su - c and ran the same commands but the same results each time