| 1 | Some notes from installing fedd on a machine at StarBED on 2011-03-15: |
| 2 | |
| 3 | {{{ |
| 4 | install them in this order: |
| 5 | strongswan-4.4.0/libstrongswan |
| 6 | abac |
| 7 | fedd |
| 8 | |
| 9 | fedd: |
| 10 | ubuntu depends: |
| 11 | python-zsi |
| 12 | python-m2crypto |
| 13 | python-pyasn1 |
| 14 | |
| 15 | # get the source |
| 16 | git clone git://deterlab.net/fedd |
| 17 | cd fedd/fedd |
| 18 | |
| 19 | # build/install |
| 20 | make |
| 21 | sudo python setup.py install |
| 22 | |
| 23 | abac: |
| 24 | ubuntu depends: |
| 25 | swig |
| 26 | autoconfig-archive |
| 27 | libtool |
| 28 | |
| 29 | # get the source |
| 30 | git clone git://deterlab.net/abac |
| 31 | cd abac |
| 32 | |
| 33 | # configure build/install |
| 34 | ./autogen.sh |
| 35 | ./configure --with-strongswan=$HOME/path/to/strongswan-4.4.0 |
| 36 | make && sudo make install |
| 37 | |
| 38 | # update system libraries |
| 39 | sudo ldconfig |
| 40 | |
| 41 | strongswan 4.4.0, but only libstrongswan: |
| 42 | ubuntu depends: |
| 43 | libgmp3-dev |
| 44 | |
| 45 | # get the file and untar |
| 46 | wget http://download.strongswan.org/strongswan-4.4.0.tar.gz |
| 47 | tar xzvf strongswan-4.4.0.tar.gz |
| 48 | cd strongswan-4.4.0 |
| 49 | |
| 50 | # configure/build/install |
| 51 | ./configure --enable-monolithic |
| 52 | cd src/libstrongswan |
| 53 | make && sudo make install |
| 54 | |
| 55 | # update system libraries |
| 56 | sudo ldconfig |
| 57 | }}} |