InstallFreeBSD

Version 2 (Adrian Georgescu, 03/22/2009 11:22 am)

1 2 Adrian Georgescu
= Installation procedure on FreeBSD ==
2 1 Adrian Georgescu
3 1 Adrian Georgescu
The installation procedure includes 5 steps described below:
4 1 Adrian Georgescu
5 2 Adrian Georgescu
 * Step 1. Prerequisites
6 2 Adrian Georgescu
 * Step 2. Install dependencies
7 2 Adrian Georgescu
 * Step 3. Install SIP SIMPLE client
8 1 Adrian Georgescu
9 1 Adrian Georgescu
10 2 Adrian Georgescu
== Step 1. Prerequisites ==
11 1 Adrian Georgescu
12 1 Adrian Georgescu
You must install the C compiling environment, python 2.5 and the following
13 1 Adrian Georgescu
packages:
14 1 Adrian Georgescu
15 1 Adrian Georgescu
gnutls >=2.4.1, libxml2 >=2.6.32, libxslt >=1.1.24, python-setuptools =>0.6c9
16 1 Adrian Georgescu
17 1 Adrian Georgescu
Install subversion and darcs version control tools. Darcs is
18 1 Adrian Georgescu
available a port or directly from http://darcs.net.
19 1 Adrian Georgescu
20 1 Adrian Georgescu
portinstall devel/darcs devel/subversion lang/ghc \
21 1 Adrian Georgescu
security/gnutls textproc/libxml2 textproc/libxslt devel/py-setuptools \
22 1 Adrian Georgescu
devel/gmake security/py-gnutls
23 1 Adrian Georgescu
24 1 Adrian Georgescu
25 2 Adrian Georgescu
== Step 2. Install dependencies ==
26 1 Adrian Georgescu
27 1 Adrian Georgescu
You can use the easy_install script provided by the python-setuptools
28 1 Adrian Georgescu
package to install and/or update the dependencies:
29 1 Adrian Georgescu
30 1 Adrian Georgescu
easy_install -U lxml cython python-application dnspython twisted py zope.interface
31 1 Adrian Georgescu
32 1 Adrian Georgescu
Or you can install the following packages from source, notice the minimum
33 1 Adrian Georgescu
version numbers:
34 1 Adrian Georgescu
35 2 Adrian Georgescu
 * python-gnutls       http://pypi.python.org/simple/python-gnutls       >=1.1.6
36 2 Adrian Georgescu
 * python-lxml         http://codespeak.net/lxml                         >=2.1.2
37 2 Adrian Georgescu
 * cython              http://www.cython.org                             >=0.10
38 2 Adrian Georgescu
 * python-application  http://pypi.python.org/simple/python-application  >=1.1.0
39 2 Adrian Georgescu
 * dnspython           http://www.dnspython.org                          >=1.6.0
40 2 Adrian Georgescu
 * twisted             http://twistedmatrix.com/trac                     >=8.1.0
41 2 Adrian Georgescu
 * pylib               http://codespeak.net/py                           >=0.9.2
42 2 Adrian Georgescu
 * zope-interface      http://www.zope.org                               >=3.3.1
43 1 Adrian Georgescu
44 1 Adrian Georgescu
Download and install dependencies available in AG Projects repositories:
45 1 Adrian Georgescu
46 2 Adrian Georgescu
{{{
47 1 Adrian Georgescu
# eventlet for twisted
48 1 Adrian Georgescu
wget http://download.ag-projects.com/EventletTwisted/eventlet-0.9pre.tar.gz
49 1 Adrian Georgescu
tar -xf eventlet-0.9pre.tar.gz
50 1 Adrian Georgescu
cd eventlet-0.9pre
51 1 Adrian Georgescu
sudo python setup.py install
52 1 Adrian Georgescu
cd ..
53 1 Adrian Georgescu
54 1 Adrian Georgescu
# python-xcaplib
55 1 Adrian Georgescu
if [ -d python-xcaplib ]; then
56 1 Adrian Georgescu
        cd python-xcaplib
57 1 Adrian Georgescu
        darcs pull -a
58 1 Adrian Georgescu
        sudo python setup.py install
59 1 Adrian Georgescu
else
60 1 Adrian Georgescu
        darcs get http://devel.ag-projects.com/repositories/python-xcaplib
61 1 Adrian Georgescu
        cd python-xcaplib
62 1 Adrian Georgescu
        sudo python setup.py install
63 1 Adrian Georgescu
fi
64 1 Adrian Georgescu
cd ..
65 1 Adrian Georgescu
66 1 Adrian Georgescu
# python-msrplib
67 1 Adrian Georgescu
if [ -d python-msrplib ]; then
68 1 Adrian Georgescu
        cd python-msrplib
69 1 Adrian Georgescu
        darcs pull -a
70 1 Adrian Georgescu
        sudo python setup.py install
71 1 Adrian Georgescu
else
72 1 Adrian Georgescu
        darcs get http://devel.ag-projects.com/repositories/python-msrplib
73 1 Adrian Georgescu
        cd python-msrplib
74 1 Adrian Georgescu
        sudo python setup.py install
75 1 Adrian Georgescu
fi
76 1 Adrian Georgescu
cd ..
77 2 Adrian Georgescu
}}}
78 1 Adrian Georgescu
79 1 Adrian Georgescu
80 2 Adrian Georgescu
== Step 3. Install SIP SIMPLE client ==
81 1 Adrian Georgescu
82 1 Adrian Georgescu
Download SIP SIMPLE client sources. Run the next step once:
83 1 Adrian Georgescu
84 2 Adrian Georgescu
{{{
85 1 Adrian Georgescu
darcs get http://devel.ag-projects.com/repositories/python-sipsimple
86 2 Adrian Georgescu
}}}
87 1 Adrian Georgescu
88 1 Adrian Georgescu
The software is downloaded under python-sipsimple directory. To update it at
89 1 Adrian Georgescu
a later time:
90 1 Adrian Georgescu
91 2 Adrian Georgescu
{{{
92 1 Adrian Georgescu
cd python-sipsimple
93 1 Adrian Georgescu
darcs pull -a
94 2 Adrian Georgescu
}}}
95 1 Adrian Georgescu
96 1 Adrian Georgescu
Build and install the software library:
97 1 Adrian Georgescu
98 2 Adrian Georgescu
{{{
99 1 Adrian Georgescu
cd python-sipsimple
100 1 Adrian Georgescu
sudo python setup.py install
101 2 Adrian Georgescu
}}}