[buildout] parts= mariadb boinc extends = ../automake/buildout.cfg ../curl/buildout.cfg ../cyrus-sasl/buildout.cfg ../gnutls/buildout.cfg ../libressl/buildout.cfg ../libtool/buildout.cfg ../m4/buildout.cfg ../mariadb/buildout.cfg ../openldap/buildout.cfg ../pkgconfig/buildout.cfg ../subversion/buildout.cfg ../../stack/slapos.cfg [mariadb] # Compile dir is for plugins, not needed in boinc keep-compile-dir = false #checkout boinc package from svn repository [boinc-package] recipe = plone.recipe.command location = ${buildout:parts-directory}/${:_buildout_section_name_} tarball = ${buildout:parts-directory}/boinc.tar.gz svnversion = ${subversion:location}/bin/svnversion command = ${subversion:location}/bin/svn co --revision 26162 http://boinc.berkeley.edu/svn/branches/server_stable ${:location} && \ sed -i 's#/usr/bin/svnversion#${:svnversion}#' ${:location}/tools/make_project && \ sed -i "20i\#include <unistd.h>" ${:location}/tools/process_input_template.cpp && \ sed -i "25i\#include <unistd.h>" ${:location}/sched/single_job_assimilator.cpp && \ sed -i "27i\#include <unistd.h>" ${:location}/tools/create_work.cpp && \ sed -i 's#--prefix=$(prefix)#--prefix=/$(prefix)#' ${:location}/py/Makefile.am && \ sed -i 's#parent::base_escape_string#@parent::base_escape_string#' ${:location}/html/inc/boinc_db.inc cd ${:location} && rm -f ${:tarball} && tar -cvzf ${:tarball} . update-command = # Compile now boinc # When installing boinc python module, path /srv/slapgrid/... is strip to srv/slapgrid... It is why # we need to set --prefix="/${buildout:parts-directory}/${:_buildout_section_name_}" [boinc] recipe = slapos.recipe.cmmi url = ${boinc-package:tarball} keep-compile-dir = true source = ${buildout:parts-directory}/${:_buildout_section_name_}__compile__ configure-command = echo 'AC_PROG_OBJCXX' >> configure.ac aclocal -I${pkgconfig:location}/share/aclocal -I${libtool:location}/share/aclocal ./_autosetup ./configure configure-options = --prefix="${buildout:parts-directory}/${:_buildout_section_name_}" --disable-fcgi --disable-shared --enable-static --disable-manager --disable-client --with-pkg-config --with-ssl=${libressl:location} --with-libsasl2=${cyrus-sasl:location}/lib --with-libldap=${openldap:location}/lib --with-libgnutls=${gnutls:location}/lib --with-libcurl=${curl:location}/lib --with-x=no environment = PATH=${pkgconfig:location}/bin:${automake:location}/bin:${autoconf:location}/bin:${libtool:location}/bin:${subversion:location}/bin:%(PATH)s PKG_CONFIG_PATH=${libressl:location}/lib/pkgconfig M4=${m4:location}/bin/m4 CPPFLAGS=-I${libressl:location}/include -I${mariadb:location}/include LDFLAGS = -L${libressl:location}/lib -Wl,-rpath=${libressl:location}/lib -L${mariadb:location}/lib -Wl,-rpath=${mariadb:location}/lib -L${zlib:location}/lib -Wl,-rpath=${zlib:location}/lib MYSQL_CONFIG=${mariadb:location}/bin/mysql_config ACLOCAL_PATH=${pkgconfig:location}/share/aclocal:${libtool:location}/share/aclocal