| 1 |
[buildout]
|
| 2 |
extends =
|
| 3 |
../software-profiles/subversion.cfg
|
| 4 |
../software-profiles/libexpat.cfg
|
| 5 |
../software-profiles/openssl.cfg
|
| 6 |
|
| 7 |
parts =
|
| 8 |
pysvn-python
|
| 9 |
|
| 10 |
[pysvn-python-download]
|
| 11 |
recipe = hexagonit.recipe.download
|
| 12 |
url = http://pysvn.barrys-emacs.org/source_kits/pysvn-1.7.4.tar.gz
|
| 13 |
md5sum = d60e4356bce77bf3b89fd163ab3d9e95
|
| 14 |
strip-top-level-dir = true
|
| 15 |
|
| 16 |
[pysvn-python]
|
| 17 |
recipe = plone.recipe.command
|
| 18 |
stop-on-error = true
|
| 19 |
location = ${buildout:parts-directory}/${:_buildout_section_name_}
|
| 20 |
command =
|
| 21 |
cd ${pysvn-python-download:location} &&
|
| 22 |
${buildout:executable} setup.py egg_info &&
|
| 23 |
cd Source &&
|
| 24 |
${buildout:executable} setup.py configure --svn-inc-dir=${subversion:location}/include/subversion-1/ --apr-inc-dir=${apache:location}/include/ --svn-lib-dir=${subversion:location}/lib/ --apr-lib-dir=${apache:location}/lib/ &&
|
| 25 |
make clean &&
|
| 26 |
make LDLIBS="-L${subversion:location}/lib -Wl,--rpath -Wl,${subversion:location}/lib -L${openssl:location}/lib -L/lib64 -Wl,--rpath -Wl,${openssl:location}/lib -L${libexpat:location}/lib -Wl,--rpath -Wl,${libexpat:location}/lib -lsvn_client-1 -lsvn_diff-1 -lsvn_repos-1 -lcom_err -lresolv -lexpat -lneon -lssl" &&
|
| 27 |
exit 1
|