Merge openembedded@openembedded.bkbits.net:packages
[vuplus_openembedded] / cyrus-sasl / cyrus-sasl_2.1.18.oe
1 DEPENDS = "virtual/libc db3"
2 DESCRIPTION = "Generic client/server library for SASL authentication."
3
4 SRC_URI = "ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-${PV}.tar.gz"
5
6 inherit autotools 
7
8 acpaths = "-I ${S}/cmulocal -I ${S}/config -I ."
9 CFLAGS_append = " -I${S}/include -I${S}/saslauthd/include"
10 EXTRA_OECONF = "--enable-shared --enable-static --with-dblib=berkeley \
11                 --with-bdb-libdir=${STAGING_LIBDIR} \
12                 --with-bdb-incdir=${STAGING_INCDIR} \
13                 --without-opie --without-des"
14
15 do_configure_prepend () {
16         rm -f acinclude.m4
17 }
18
19 do_compile_prepend () {
20         cd include
21         ${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS} makemd5.c -o makemd5
22         touch makemd5.o makemd5.lo makemd5
23         cd ..
24 }
25
26 do_stage () {
27         oe_libinstall -so -a -C lib libsasl2 ${STAGING_LIBDIR}
28         install -d ${STAGING_LIBDIR}/sasl
29         install -d ${STAGING_INCDIR}/sasl
30         install -m 0644 ${S}/include/hmac-md5.h ${STAGING_INCDIR}/sasl/
31         install -m 0644 ${S}/include/md5.h ${STAGING_INCDIR}/sasl/
32         install -m 0644 ${S}/include/md5global.h ${STAGING_INCDIR}/sasl/
33         install -m 0644 ${S}/include/sasl.h ${STAGING_INCDIR}/sasl/
34         install -m 0644 ${S}/include/saslplug.h ${STAGING_INCDIR}/sasl/
35         install -m 0644 ${S}/include/saslutil.h ${STAGING_INCDIR}/sasl/
36         install -m 0644 ${S}/include/prop.h ${STAGING_INCDIR}/sasl/
37 }