Debian package installation:
============================
GKrellM is in the Debian archives, you can install using apt-get:

  apt-get update
  apt-get install gkrellm




RedHat package installation:
============================
Fresh install:
  rpm -i gkrellm-0.x.y-1.i386.rpm
or, upgrade
  rpm -U gkrellm-0.x.y-1.i386.rpm




Installation from source:
=========================
First untar the tarball:
------------------------
  tar -xvzf gkrellm-0.x.y.tar.gz
  cd gkrellm-0.x.y


Next compile GKrellM for your target system:
-------------------------------------------
Linux
-----
  make
  make install


FreeBSD 2.x
-----------
  make freebsd2
  make install

FreeBSD 3.x
-----------
  make freebsd
  make install


Other systems with libgtop:
---------------------------
If you have libgtop installed, you can make and install
a version that uses libgtop to read system data.   A libgtop version
will not have a disk, internet, or apm monitor.
--If you have libgtop 1.1.x:
	make gtop
	make install

--If you have libgtop 1.0.x installed in /usr/include and /usr/lib:
	make gtop1.0
	make install

--If you have libgtop 1.0.x installed elsewhere, eg in /opt/gnome:
	make gtop1.0 GTOP_PREFIX=/opt/gnome
	make install
	
==========================================================================
Note, the default action for make install is to place the gkrellm binary
in /usr/local/bin and the gkrellm include files in /usr/local/include/gkrellm
If you want different locations, you can override them in the install step.
For example, to install in /usr/bin use:

	make install INSTALLDIR=/usr/bin INCLUDEDIR=/usr/include
