KLEAR REQUIREMENTS
------------------

kde >= 3.2 is needed to run this application

To compile klear, the kde development
packages are needed: kdelibs-devel, kdebase-devel

scons is also needed http://www.scons.org 
Make sure scons is at least v0.96.1, otherwise
the compilation will fail. In case if you do not have
it, a minimum distribution is provided (see SCONS below)

-> One should only have to run :
$ scons
# scons install 
(do "scons install" as root - the menus may not 
show up if you skip this step)

USEFUL SCONS COMMANDS
---------------------

display the help    : scons -h
build the targets   : scons
install them        : scons install
clean the project   : scons -c
uninstall           : scons -c install
build in parallel   : scons -j2

CONFIGURATION NOTES
-------------------

The installation script are relying on the kde-config program.
The programs kde-config, qmake, uic and moc must be accesssible
through your PATH.

Qt and kde may not be installed as expected (in QTDIR and KDEDIR)
So until kde-config is able to give that information, you may
have to give those paths.

Here are some examples :
On amd/64 platforms
   scons configure libsuffix=64
On Fedora/Redhat
   scons configure kdeincludes=/usr/include/kde/
On Debian
   scons configure qtincludes=/usr/include/qt/ kdeinclude=/usr/include/kde/
To install in some particular location
   scons configure prefix=~/tmp

For more options to tune the build try :
   scons --help
   scons -h
Or look at the .py files in the top-level directory (generic.py, kde.py)

The build system is based on bksys, a build system that replaces
autoconf, automake and make in a row. Feel free to give your opinion
about it.

BUILDING RPMS OR DEBS WITH CHECKINSTALL
---------------------------------------

With checkinstall 1.6, use
$ scons
# checkinstall --fstrans=no --nodoc scons install
# scons uninstall

---------------------------------------

Your Klear Developers

(INSTALLATION ADAPTED FROM KDISSERT AND BKSYS PROJECT FROM THOMAS NAGY. THANKS!)
