Requirements
============

- Qt 3.x and KDE 3.x libraries
- libhdate library by Kobi Zamir.
  It is available from

    http://libhdate.sourceforge.net/


Building and installing kjewishdatefinder
=========================================

- Make sure that the Qt command line tools are in your path.
  The environment variable QTDIR should point to your Qt
  installation, and the environment variable PATH should
  contain the directory $QTDIR/bin

- Enter

    ./configure

  This will create the Makefile with the aid of qmake.

- Enter

    make

  This will compile the program

- Optionally, enter as root

    make install

  This will copy the executable file to a convenient location.

  The file kjewishdatefinder-icon.png contains an icon (Luach in Hebrew)
  for it.
  The file kjewishdatefinder.desktop contains a sample KDE shortcut - the
  path to the icon has to be adapted, and the shortcut file has to be
  copied to the appropriate location.
  Hint for newbies: the format specification of such a .desktop file is
  available at

    http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html


Uninstalling the program, removing object files
-----------------------------------------------

- To uninstall the program (remove the executable file from /usr/local/bin),
  type as root

    make uninstall

- The command

    make clean

  removes generated the object files as well as the files generated by the
  moc compiler.

- The command

    make distclean

  does the same as 'make clean', but it also removes the executable file
  from the compilation directory.

