| 219 | | At first, you have to compile ''Ariba'' and ''MCPO''. Therefor you can follow the instructions below. Further information are provided on the official Ariba-Installation page (http://ariba-underlay.org/wiki/BaseInstall). |
| 220 | | |
| 221 | | On an clean ''ubuntu 9.10 / 10.04'' the following packages are necessary: |
| 222 | | * (subversion) |
| | 219 | In order to compile the vlc-mcpo plugin, you have to install ''Ariba'' and ''MCPO'' first. By following the instructions below, you compile ''Ariba'' and ''MCPO'' and install them to ''$HOME/local'' in your home-directory.[[BR]] |
| | 220 | [Further information are provided on the official Ariba-Installation page http://ariba-underlay.org/wiki/BaseInstall]. |
| | 221 | |
| | 222 | On ''ubuntu 9.10 / 10.04'' the following packages are necessary: |
| 232 | | |
| 233 | | The following lines compile ''Ariba'' and ''MCPO'' and installing them to ''$HOME/local'' in the user's home-directory. |
| 234 | | |
| 235 | | {{{ |
| 236 | | * get the Ariba sourcecode |
| 237 | | * in the "ariba"-directory do: |
| 238 | | ./bootstrap |
| 239 | | ./configure --prefix=$HOME/local |
| 240 | | make install |
| 241 | | |
| 242 | | * get the MCPO sourcecode |
| 243 | | * in the "mcpo"-directory do: |
| 244 | | ./bootstrap |
| 245 | | ./configure --prefix=$HOME/local LDFLAGS=-L$HOME/local/lib CPPFLAGS=-I$HOME/local/include |
| 246 | | make install |
| 247 | | }}} |
| 248 | | |
| 249 | | |
| 250 | | |
| 251 | | |
| 252 | | |
| 253 | | === compile ariba & mcpo === |
| 254 | | (see http://ariba-underlay.org/wiki/BaseInstall) |
| 255 | | |
| 256 | | {{{ |
| 257 | | sudo apt-get install subversion build-essential libtool autoconf automake libgmp3-dev liblog4cxx10-dev libboost-thread-dev libboost-system-dev libboost-regex-dev |
| 258 | | |
| 259 | | svn checkout ``ariba´´ |
| 260 | | cd ariba |
| 261 | | ./bootstrap |
| 262 | | ./configure --prefix=$HOME/local |
| 263 | | make install |
| 264 | | cd .. |
| 265 | | |
| 266 | | svn checkout ``mcpo´´ |
| 267 | | cd mcpo |
| 268 | | ./bootstrap |
| 269 | | ./configure --prefix=$HOME/local LDFLAGS=-L$HOME/local/lib CPPFLAGS=-I$HOME/local/include |
| 270 | | make install |
| 271 | | cd .. |
| 272 | | }}} |
| | 232 | * (subversion) |
| | 233 | |
| | 234 | {{{ |
| | 235 | * get the Ariba sourcecode |
| | 236 | * in the "ariba"-directory do: |
| | 237 | ./bootstrap |
| | 238 | ./configure --prefix=$HOME/local |
| | 239 | make install |
| | 240 | |
| | 241 | * get the MCPO sourcecode |
| | 242 | * in the "mcpo"-directory do: |
| | 243 | ./bootstrap |
| | 244 | ./configure --prefix=$HOME/local LDFLAGS=-L$HOME/local/lib CPPFLAGS=-I$HOME/local/include |
| | 245 | make install |
| | 246 | }}} |
| | 247 | |