blob: d85ef20577990f89edcea85fa98a4b8e95990bee [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001SUMMARY = "Generic client/server library for SASL authentication"
2SECTION = "libs"
3HOMEPAGE = "http://asg.web.cmu.edu/sasl/"
4DEPENDS = "openssl db groff-native"
5LICENSE = "BSD-4-Clause"
6LIC_FILES_CHKSUM = "file://COPYING;md5=3f55e0974e3d6db00ca6f57f2d206396"
7
8SRCREV = "7a6b45b177070198fed0682bea5fa87c18abb084"
9
10SRC_URI = "git://github.com/cyrusimap/cyrus-sasl;protocol=https;branch=cyrus-sasl-2.1 \
11 file://avoid-to-call-AC_TRY_RUN.patch \
12 file://debian_patches_0014_avoid_pic_overwrite.diff \
13 file://0001-sample-Rename-dprintf-to-cyrus_dprintf.patch \
14 file://saslauthd.service \
15 file://saslauthd.conf \
16 file://CVE-2019-19906.patch \
Andrew Geissler615f2f12022-07-15 14:00:58 -050017 file://CVE-2022-24407.patch \
Andrew Geissler87f5cff2022-09-30 13:13:31 -050018 file://0001-Fix-time.h-check.patch \
Andrew Geissler9aee5002022-03-30 16:27:02 +000019 "
20
21UPSTREAM_CHECK_URI = "https://github.com/cyrusimap/cyrus-sasl/archives"
22
23S = "${WORKDIR}/git"
24
25inherit autotools pkgconfig useradd systemd
26
27EXTRA_OECONF += "--with-dblib=berkeley \
28 --with-plugindir='${libdir}/sasl2' \
29 andrew_cv_runpath_switch=none"
30
31PACKAGECONFIG ??= "\
32 ${@bb.utils.filter('DISTRO_FEATURES', 'ldap pam', d)} \
33"
34PACKAGECONFIG[gssapi] = "--enable-gssapi=yes,--enable-gssapi=no,krb5,"
35PACKAGECONFIG[pam] = "--with-pam,--without-pam,libpam,"
36PACKAGECONFIG[opie] = "--with-opie,--without-opie,opie,"
37PACKAGECONFIG[des] = "--with-des,--without-des,,"
38PACKAGECONFIG[ldap] = "--with-ldap=${STAGING_LIBDIR} --enable-ldapdb,--without-ldap --disable-ldapdb,openldap,"
39PACKAGECONFIG[ntlm] = "--enable-ntlm=yes,--enable-ntlm=no,,"
40
41CFLAGS += "-fPIC"
42
43do_configure:prepend () {
44 # make it be able to work with db 5.0 version
45 local sed_files="sasldb/db_berkeley.c utils/dbconverter-2.c"
46 for sed_file in $sed_files; do
47 sed -i 's#DB_VERSION_MAJOR == 4.*#(&) || DB_VERSION_MAJOR == 5#' ${S}/$sed_file
48 done
49}
50
51do_compile:prepend () {
52 cd include
53 ${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS} ${S}/include/makemd5.c -o makemd5
54 touch makemd5.o makemd5.lo makemd5
55 cd ..
56}
57
58do_install:append() {
59 if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
60 install -d ${D}${systemd_unitdir}/system
61 install -m 0644 ${WORKDIR}/saslauthd.service ${D}${systemd_unitdir}/system
62
63 sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/saslauthd.service
64 sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${systemd_unitdir}/system/saslauthd.service
65 sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/saslauthd.service
66
67 install -d ${D}${sysconfdir}/tmpfiles.d
68 echo "d /run/saslauthd/ - - - -" > ${D}${sysconfdir}/tmpfiles.d/saslauthd.conf
69
70 install -d ${D}${sysconfdir}/default/
71 install -m 0644 ${WORKDIR}/saslauthd.conf ${D}${sysconfdir}/default/saslauthd
72 sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${sysconfdir}/default/saslauthd
73 fi
74}
75
76USERADD_PACKAGES = "${PN}-bin"
Patrick Williams2a254922023-08-11 09:48:11 -050077GROUPADD_PARAM:${PN}-bin = "--system mail"
Andrew Geissler9aee5002022-03-30 16:27:02 +000078USERADD_PARAM:${PN}-bin = "--system --home=/var/spool/mail -g mail cyrus"
79
80SYSTEMD_PACKAGES = "${PN}-bin"
81SYSTEMD_SERVICE:${PN}-bin = "saslauthd.service"
82SYSTEMD_AUTO_ENABLE = "disable"
83
84SRC_URI[md5sum] = "a7f4e5e559a0e37b3ffc438c9456e425"
85SRC_URI[sha256sum] = "8fbc5136512b59bb793657f36fadda6359cae3b08f01fd16b3d406f1345b7bc3"
86
87PACKAGES =+ "${PN}-bin"
88
89FILES:${PN} += "${libdir}/sasl2/*.so*"
90FILES:${PN}-bin += "${bindir} \
91 ${sysconfdir}/default/saslauthd \
92 ${systemd_unitdir}/system/saslauthd.service \
93 ${sysconfdir}/tmpfiles.d/saslauthd.conf"
94FILES:${PN}-dev += "${libdir}/sasl2/*.la"
95FILES:${PN}-dbg += "${libdir}/sasl2/.debug"
96FILES:${PN}-staticdev += "${libdir}/sasl2/*.a"
97
98INSANE_SKIP:${PN} += "dev-so"