Advertisement
Guest User

Untitled

a guest
Jun 19th, 2011
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. [buildout]
  2.  
  3. versions = versions
  4. eggs =
  5. Plone
  6. ${python-ldap:egg}
  7. zcml =
  8. parts =
  9. zope2
  10. instance
  11. find-links =
  12. http://dist.plone.org
  13. http://download.zope.org/ppix/
  14. http://download.zope.org/distribution/
  15. http://effbot.org/downloads
  16.  
  17. [zope2]
  18. recipe = plone.recipe.zope2install
  19. url = ${versions:zope2-url}
  20. fake-zope-eggs = true
  21. additional-fake-eggs =
  22. ZConfig
  23. pytz
  24.  
  25. [instance]
  26. recipe = plone.recipe.zope2instance
  27. zope2-location = ${zope2:location}
  28. user = admin:rWF5ajhE
  29. http-address = ${buildout:http-address}
  30. debug-mode = ${buildout:debug-mode}
  31. verbose-security = off
  32. deprecation-warnings = off
  33. eggs = ${buildout:eggs}
  34. zcml = ${buildout:zcml}
  35.  
  36.  
  37. [versions]
  38. zc.recipe.egg = 1.2.2
  39.  
  40.  
  41. [openldap]
  42. recipe = zc.recipe.cmmi
  43. url = file://${buildout:download-cache}/openldap-stable-20071118.tgz
  44. extra_options = --with-sasl --with-tls --enable-slapd=no
  45. environment =
  46. # Workaround for “error: storage size of ‘peercred’ isn’t known”
  47. # http://www.openldap.org/lists/openldap-bugs/200808/msg00130.html
  48. CPPFLAGS=-D_GNU_SOURCE
  49. CC=gcc-4.3
  50.  
  51. [python-ldap]
  52. recipe = zc.recipe.egg:custom
  53. egg = python-ldap == 2.3.13
  54. include-dirs = ${openldap:location}/include
  55. library-dirs = ${openldap:location}/lib
  56. rpath = ${openldap:location}/lib
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement