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