HOW TO INSTALL suggestions:

Note, that klearnnotes2-1.0.tar.gz are original, unpatched sources.
Below I describe the way to patch and install patched version.



Note, that you will probably have to do at least some of these operations
as root. I TAKE ABSOLUTELY NO RESPONSIBILITY IF YOU HURT YOURSELF! 
There is no way for me to know all peculiarities of all systems. 
THINK BEFORE DOING ANYTHING! Try to understand what the commands I suggested
are doing, and do not do anything that is not covered by your system docs
for these commands (rpm, tar ...).



================= 1. RPM system

   * Please, let me know (through BUGS reporting page at 
     http://klearnnotes2.sourceforge.net), why you didn't use src.rpm!
     If there are any errors in the way I did src.rpm I would try to fix them.

Below suggestions are based on RedHat 7.3 experience. On other rpm systems
things should be quite similar. I hope. ;)

   * to make RPMs form the sources you have here:

cp klearnnotes2-1.0.tar.gz klearnnotes2-1.0_p02.patch /usr/src/redhat/SOURCES
cp klearnnotes2.spec /usr/src/redhat/SPECS
cd /usr/src/redhat/SPECS
rpm -ba klearnnotes2.spec

   * this should make /usr/src/redhat/RPMS/i386/klearnnotes2-1.0-2.i386.rpm
     and /usr/src/redhat/SRPMS/klearnnotes2-1.0-2.src.rpm

     install in standard way:
rpm -i /usr/src/redhat/RPMS/i386/klearnnotes2-1.0-2.i386.rpm

     or upgrade in standard way:
rpm -U /usr/src/redhat/RPMS/i386/klearnnotes2-1.0-2.i386.rpm

================= 2. non-RPM system

tar -xzf klearnnotes2-1.0.tar.gz
cd klearnnotes2-1.0/
patch -p1 < ../klearnnotes2-1.0_p02.patch
./configure --prefix=/usr/
make
make install

	Note, that other --prefix may be more appropriate for your system.

	Only the last operation has to be done by root!

	If your make supports --prefix, you can make trial installation:
make --prefix=/tmp/klearnnotes2-trial install
	to see what will be installed, before doing actual 'make install'.