Installation Instructions
*************************

Requirements
************
You will need to have the binary and development files (and all their
dependencies) for the following packages installed to compile this program:

gtk-2.0 >= 2.12
libgnomevfs-2.0
libpanel-applet-2.0
libglade-2.0
libgnome-desktop-2.0

You will also need the following packages installed to compile this program:
pkg-config
cmake

Configuration
*************
There are 4 configuration options available:
	* CMAKE_INSTALL_PATH
    * CMAKE_INSTALL_LIB_DIR
    * CMAKE_INSTALL_GCONF_SCHEMA_DIR
    * CMAKE_INSTALL_GLADEUI_DIR

CMAKE_INSTALL_PATH specifies the installation prefix and currently only affects
installation of the icons which are installed in
CMAKE_INSTALL_PATH/share/pixmaps and
CMAKE_INSTALL_PATH/share/icons/hicolor/128x128/apps. The default is /usr.

CMAKE_INSTALL_LIB_DIR specifies the installation prefix of the binary
application file and bonobo server file which are installed in
CMAKE_INSTALL_LIB_DIR/gnome-panel and CMAKE_INSTALL_LIB_DIR/bonobo/servers
respectively. The default is CMAKE_INSTALL_PATH/lib.

CMAKE_INSTALL_GCONF_SCHEMA_DIR specifies the installation prefix of the gconf schema
file. The default is CMAKE_INSTALL_PATH/share/gconf/schemas

CMAKE_INSTALL_GLADEUI_DIR specifies the installation prefix of the glade ui
file. The default is CMAKE_INSTALL_PATH/share/file-browser-applet/glade

To configure using the defaults, execute:
'cmake .'

To specify an option, execute:
'cmake -D CMAKE_OPTION=/new/option/val .

Compiling
*********
At the project's root directory, execute:
'make'

Installation
************
At the project's root directory, with root privileges execute:
'make install'

Similarly, to uninstall...
'make uninstall'
