blob: 597c6b187e5bf296695b8d5707324ff9bfc90c77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=cyrus-sasl
pkgver=2.1.28
pkgrel=5
pkgdesc="Cyrus Simple Authentication Service Layer (SASL)"
url="https://www.cyrusimap.org/sasl/"
arch="all"
license="custom"
options="!check" # No test suite.
subpackages="
$pkgname-static
$pkgname-dev
$pkgname-doc
$pkgname-openrc
libsasl
$pkgname-gssapiv2:_plugin
$pkgname-gs2:_plugin
$pkgname-scram:_plugin
$pkgname-ntlm:_plugin
$pkgname-crammd5:_plugin
$pkgname-digestmd5:_plugin
$pkgname-login:_plugin
$pkgname-sql:_plugin
"
# use heimdal to avoid circular dep: cyrus-sasl -> krb5 -> openldap -> cyrus-sasl
makedepends="
gdbm-dev
openssl-dev>3
heimdal-dev
py3-sphinx
sqlite-dev
automake
autoconf
libtool
"
source="https://github.com/cyrusimap/cyrus-sasl/releases/download/cyrus-sasl-$pkgver/cyrus-sasl-$pkgver.tar.gz
saslauthd.initd
"
# secfixes:
# 2.1.28-r0:
# - CVE-2022-24407
# 2.1.27-r5:
# - CVE-2019-19906
# 2.1.26-r7:
# - CVE-2013-4122
# 0:
# - CVE-2020-8032
prepare() {
default_prepare
aclocal --install
autoreconf -vfi -Wno-portability
}
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/share/man \
--enable-static \
--enable-shared \
--with-plugindir=/usr/lib/sasl2 \
--with-configdir=/etc/sasl2 \
--with-dbpath=/etc/sasl2/sasldb2 \
--disable-krb4 \
--with-gss_impl=heimdal \
--enable-gssapi \
--with-rc4 \
--with-dblib=gdbm \
--with-saslauthd=/run/saslauthd \
--without-pwcheck \
--with-devrandom=/dev/urandom \
--enable-sql \
--without-mysql \
--without-pgsql \
--without-sqlite \
--with-sqlite3=/usr/lib \
--enable-anon \
--enable-cram \
--enable-digest \
--enable-httpform \
--enable-ntlm \
--enable-plain \
--enable-login \
--enable-auth-sasldb \
--enable-alwaystrue \
--disable-otp
make
}
package() {
make -j1 DESTDIR="$pkgdir" install
install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
install -Dm755 "$srcdir"/saslauthd.initd "$pkgdir"/etc/init.d/saslauthd
}
_plugin() {
depends=
local plugin=${subpkgname/$pkgname-/}
replaces="libsasl"
pkgdesc="Cyrus SASL plugin for $plugin"
amove usr/lib/sasl2/lib$plugin.so*
}
libsasl() {
depends=
pkgdesc="Cyrus Simple Authentication and Security Layer (SASL) library"
replaces="cyrus-sasl-plain"
local lib=
for lib in anonymous sasldb plain; do
amove usr/lib/sasl2/*$lib*.so*
done
amove usr/lib/libsasl*.so.*
}
sha512sums="
db15af9079758a9f385457a79390c8a7cd7ea666573dace8bf4fb01bb4b49037538d67285727d6a70ad799d2e2318f265c9372e2427de9371d626a1959dd6f78 cyrus-sasl-2.1.28.tar.gz
f76bfb61567172428cdbc1ed900d5e0b6e66afc38118db6ba0e2fd8ba01956ad896e56463b2249bdc46d8725384f1b975a2af3601c0735327d3f8bc26ce1ed75 saslauthd.initd
"
|