| 1 |
[buildout]
|
| 2 |
parts =
|
| 3 |
cyrus-sasl
|
| 4 |
extends =
|
| 5 |
zlib.cfg
|
| 6 |
|
| 7 |
[cyrus-sasl-gcc4.4-patch]
|
| 8 |
# patch available thanks to Gentoo packagers
|
| 9 |
recipe = hexagonit.recipe.download
|
| 10 |
url = http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/dev-libs/cyrus-sasl/files/cyrus-sasl-2.1.22-gcc44.patch?revision=1.2
|
| 11 |
md5sum = 5deb4d67b53ecba20c7887fc8fdebee1
|
| 12 |
filename = cyrus-sasl-2.1.22-gcc44.patch
|
| 13 |
download-only = true
|
| 14 |
|
| 15 |
[cyrus-sasl]
|
| 16 |
recipe = hexagonit.recipe.cmmi
|
| 17 |
url = ftp://ftp.cyrusimap.org/cyrus-sasl/cyrus-sasl-2.1.23.tar.gz
|
| 18 |
md5sum = 2eb0e48106f0e9cd8001e654f267ecbc
|
| 19 |
|
| 20 |
patches =
|
| 21 |
${cyrus-sasl-gcc4.4-patch:location}/${cyrus-sasl-gcc4.4-patch:filename}
|
| 22 |
patch-options =
|
| 23 |
-p1
|
| 24 |
|
| 25 |
configure-options =
|
| 26 |
--disable-digest
|
| 27 |
--disable-gssapi
|
| 28 |
--disable-otp
|
| 29 |
--with-dblib=none
|
| 30 |
--without-des
|
| 31 |
--without-openssl
|
| 32 |
--without-pam
|
| 33 |
--without-saslauthd
|
| 34 |
# it seems that parallel build sometimes fails.
|
| 35 |
make-options =
|
| 36 |
-j1
|
| 37 |
|
| 38 |
environment =
|
| 39 |
CPPFLAGS=-I${zlib:location}/include
|
| 40 |
LDFLAGS=-L${zlib:location}/lib -Wl,-rpath -Wl,${zlib:location}/lib
|