blob: abf23f7845da8e9bec06b9e6af935de4236cc1cf (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="The GNU SASL client, server, and library"
HOMEPAGE="https://www.gnu.org/software/gsasl/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc gcrypt idn kerberos nls ntlm static-libs +threads"
DEPEND="
gcrypt? ( dev-libs/libgcrypt:0= )
idn? ( net-dns/libidn:= )
kerberos? ( virtual/krb5 )
nls? ( >=sys-devel/gettext-0.18.1 )
ntlm? ( net-libs/libntlm )
"
RDEPEND="${DEPEND}"
src_prepare() {
default
sed -i -e '/gl_WARN_ADD(\[-Werror/d' \
-e 's/ -Werror//' configure.ac || die
sed -i -e 's/ -Werror//' lib/configure.ac || die
eautoreconf
}
src_configure() {
local krb5_impl
if use kerberos; then
krb5_impl="--with-gssapi-impl="
# These are the two providers of virtual/krb5
if has_version app-crypt/mit-krb5; then
krb5_impl+="mit"
else
krb5_impl+="heimdal"
fi
fi
econf \
--enable-client \
--enable-server \
--disable-valgrind-tests \
--disable-rpath \
--without-libshishi \
--without-libgss \
--disable-kerberos_v5 \
$(use_enable kerberos gssapi) \
${krb5_impl} \
$(use_enable kerberos gs2) \
$(use_with gcrypt libgcrypt) \
$(use_enable nls) \
$(use_with idn stringprep) \
$(use_enable ntlm) \
$(use_with ntlm libntlm) \
$(use_enable static-libs static) \
$(use_enable threads)
}
src_install() {
default
if ! use static-libs; then
rm -f "${ED}"/usr/lib*/lib*.la || die
fi
doman doc/gsasl.1 doc/man/*.3
if use doc; then
dodoc doc/*.{eps,ps,pdf}
docinto html
dodoc doc/*.html
docinto examples
dodoc examples/*.c
fi
}
|