This file tells how to build openfetion on your system.

PREPARE
=======
You need the following things pre-installed on your system:

a) pkg-config, the package config system;
b) cmake, the make system;
c) gettext, GNU locale utilities, if you want to enable Native 
   language support; and
d) required libraries: libofetion, glib-2, gtk+-2, gdk-pixbuf-2,
   gstreamer, if you want to enable sound support,
   libnotify, if you want to enable notification support,
   libXScrnSaver, if you want to enable auto-leaving support,
   NetworkManager and dbus-glib, if you want to enable network monitor 
     support via dbus.

CONFIGURE
=========
The following options can be turned on/off in cmake:
-DNLS=ON|OFF
-DGSTREAMER=ON|OFF
-DLIBNOTIFY=ON|OFF
-DLIBXSS=ON|OFF
-DNETWORKMANAGER=ON|OFF
Other options can be set via the following macros:
 BIN_INSTALL_DIR
 DATA_INSTALL_DIR
 MAN_INSTALL_DIR
 RESOURCE_INSTALL_DIR
 SKIN_INATALL_DIR
 LOCALE_INSTALL_DIR

BUILD
=====
Build from /path/to/your/openfetion, execute:

$ mkdir build
$ cd build/
$ cmake \
        -DCMAKE_INSTALL_PREFIX=/path/to/dest \
        -DCMAKE_BUILD_TYPE=release \
        -DNLS=ON \
        -DGSTREAMER=ON \
        -DLIBNOTIFY=ON \
        -DLIBXSS=ON \
        -DNETWORKMANAGER=ON \
        ..
$ make
$ sudo make install

DEBUG
=====

UNINSTALL
=========
To uninstall, run
# xargs rm < install_manifest.txt
