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