
ZORP installation
-----------------

Zorp requires some preinstalled components to compile properly. Since the
required version of glib is currently a development version, it's
recommended that you put zorp and glib to its own directory hierarchy. 

As soon as glib 1.3.1 becomes part of your distribution this will not be
required.

Note that ZORP requires the linux kernel version 2.2.x (latest is 2.2.16 as
of this writing) with transparent proxy support compiled in.

Required packages:

glib 1.3.1	- CVS version as of 07-16-2000
python 1.5.2
python-extclass 1.2
openldap 1.2.10
openssl 0.9.5a

Installation steps:
-------------------

1) Choose an installation prefix (/usr/local/zorp), or simply /usr/local if
you plan to use the libraries installed on your system.

1) Install glib 1.3.1

	tar xvfz glib-1.3.1.tar.gz
	cd glib-1.3.1
	./configure --prefix=/usr/local/zorp
	make
	make install
	
2) Set environment variables

	export PATH=/usr/local/zorp/bin:$PATH
	export LD_LIBRARY_PATH=/usr/local/zorp/lib:/usr/local/zorp/lib/zorp
	export PYTHONPATH=/usr/local/zorp/share/zorp

3) Install Zorp

	tar xvfz zorp-xxx.tar.gz
	cd zorp-xxx
	./configure --prefix=/usr/local/zorp
	make
	make install

4) Create your policy

	Create your policy file /usr/local/zorp/etc/zorp/policy.py according
	to the administrator's guide and/or online documentation.


