How to install the Kaenguru System

Please note that the install procedure is a somewhat dull thing!

1. At first extract your kaenguru archiv in a place where you have enough
   space to compile the thing (about 5 MB), eg. `/usr/src'.  It should
   expand to a directory like 'kaenguru-x.y', where x.y is the current
   version.  Let's call this directory SRCDIR; change to it:

      cd /usr/src
      tar xplzvf kaenguru-0.2.tar.gz

      cd /usr/src/kaenguru-0.2

2. Just say './configure' to get all things right.  You may specify paths
   different from the default, with the standard configure-options:

     --prefix=PATH        Where the installation will go to, e.g. the
			  binaries will go to 'PATH/bin', k4-files will go
			  to 'PATH/lib/kaenguru/k4', etc.  Default is
			  /usr/local 

     --bindir=PATH        You may specify where your binaries should go,
			  e.g. --bindir=/opt/bin; all other files will go
			  to $(prefix)/... places.

   etc.  See the documentation to configure for all options.

     --enable-remote-sm=[yes,no]   Include the functions for remote storage
				   manager into the binaries.  Remote
				   storage manager are still pretty
				   preliminary, so you want, enable this by
				   now. 

3. If configure succeded, just say 'make'; if nothing went wrong, say 'make
   install' and you should have be done.

Now you system should be ready installed.  It is up to you, to set up a
'/etc/kaenguru.conf' and the configuration-files.  There are some examples
in the SRCDIR/etc directory, which you may use as a start off (see the info
documentation to get started).

The Emacs k4-mode (SRCDIR/etc/k4-mode.el) is not installed automatically.
You will have to byte-compile and move it to place, where Emacs can find it
(e.g. /usr/share/emacs/site-lisp).  Put these lines to your ~/.emacs file
to autoload k4-mode editing k4-progs:

   (setq auto-mode-alist
     (append '(("\\.k4$"     . k4-mode)) auto-mode-alist))

   (add-hook 'k4-mode-hook
	  '(lambda ()
	     (line-number-mode 1)
	     (font-lock-mode t)))



