If possible, use RPM or emerge (Gentoo) - they allow easy
uninstallation and more package management than setup.py

Prerequisites:
==============

You may need to install (or re-install) libglade, pygtk, gnome-python,
bonobo-python, pyorbit or gtk for your current version of python or
possibly you can just set your PYTHONPATH eg.

	export PYTHONPATH=/usr/local/lib/python2.3/site-packages/

Packages needed on gentoo are (in dependency order - it might be less
trouble to install them from the right hand side of this list and let the
Gentoo dependency system take care of modules to the left - but I
haven't tried it):

	 >=gtk+-2 >=libglade-2 >=pygtk-2 gnome-python-2 >=pyorbit-2

As at this writing, I have the following Gentoo ebuilds installed:

	x11-libs/gtk+-2.2.4-r1
	gnome-base/libglade-2.0.1
	dev-python/pygtk-2.2.0
	dev-python/gnome-python-2.0.0 (pulls in pyorbit)
	dev-python/pyorbit-2.0.0
	
Presumably rpm-based systems (RedHat, Mandrake, SuSE) are similar
(please advise).

Make sure the python packages are installed in the site-packages
directory for the version of python that you are using (do a "python
-V" to find out the version):

	/usr/lib/pythonX.X/site-packages

If they're not there then you may need to re-install them - for
example, it happened to me when python got upgraded from 2.2 to 2.3 -
/usr/lib/python2.X/site-packages directory is not automatically
updated.) I then had to

	emerge unmerge libglade pygtk gnome-python bonobo-python pyorbit
	emerge libglade pygtk gnome-python bonobo-python pyorbit

On Gentoo:
==========

Until and unless gjots2 has an official ebuild (look in
/usr/portage/app-office) you'll have to do this:

Make sure you have a line like the following in your /etc/make.conf:

PORTDIR_OVERLAY=/usr/local/portage

Then:	

VERSION=2.1.0
CAT=/usr/local/portage/app-office/gjots2
cd /usr/portage/distfiles
wget http://bhepple.freeshell.org/gjots/gjots2-${VERSION}.tgz
mkdir -p ${CAT}
cd ${CAT}
wget http://bhepple.freeshell.org/gjots/gjots2-${VERSION}.ebuild
ebuild ${CAT}/gjots2-${VERSION}.ebuild digest
emerge gjots2

RPM-based systems:
==================
Just do this:

VERSION=2.1.0
wget http://bhepple.freeshell.org/gjots/gjots2-${VERSION}-1.noarch.rpm
rpm -i gjots2-${VERSION}-1.noarch.rpm

Of course, you may need to install dependencies first such as
pygtk, libglade, etc

From the tarball source:
========================

VERSION=2.1.0
wget http://bhepple.freeshell.org/gjots/gjots2-${VERSION}.tgz

If installing from the tarball, after unpacking the tar file and
cd'ing to it do this:

	python setup.py install [ --prefix=/usr/... ]

Uninstall with the uninstall.sh script provided here.