net-misc/gsasl: add 2.2.2

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-03-31 21:59:54 +01:00
parent 52ac5e6811
commit 83bd74df8d
2 changed files with 89 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST gsasl-2.2.1.tar.gz 3344807 BLAKE2B 3bb1f7dee8510c19215dc8fdc5efd8e53318ab967b4d4af9e48474857a112b0e08872016a5c5bcbd6b1b340f29fbd77623efc6c41a1f87fb734623e2f173e1bf SHA512 161b8a315862a79807ba067c5ae840175b0d8ec14806aceafc3f92d571713b94d1b8c1a5b188c47bf94a79b9a1f133065f96b087baa5e7f360ae7fb8336381ab
DIST gsasl-2.2.2.tar.gz 3254843 BLAKE2B a470697405df87ec6ad98415f2801fa831fdd72eecc951bfe0c16088b95f2a77f2687a5d9081bd86df1094dd198f15729c0e5562d370339975ded99cc1ff8028 SHA512 62fb4a9383392e4816a036f3e8f408c5161a10723e59f0a8f6df5f72101e0b644787f3b07a71c772628fc4f4050960c842c7500736edacd24313ef654e703bc9

View File

@@ -0,0 +1,88 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
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"
# Before giving keywords (or ideally even bumping), please check https://www.gnu.org/software/gsasl/ to see
# if it's a stable release or not!
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="+client gcrypt gnutls idn kerberos nls ntlm +server static-libs"
REQUIRED_USE="|| ( client server )"
DEPEND="
!net-libs/libgsasl
sys-libs/readline:=
gcrypt? ( dev-libs/libgcrypt:= )
gnutls? ( net-libs/gnutls:= )
idn? ( net-dns/libidn:= )
kerberos? ( >=net-libs/libgssglue-0.5-r1 )
nls? ( >=sys-devel/gettext-0.18.1 )
ntlm? ( >=net-libs/libntlm-0.3.5 )
"
RDEPEND="${DEPEND}"
QA_CONFIG_IMPL_DECL_SKIP=(
# gnulib FPs
unreachable
MIN
alignof
static_assert
)
src_configure() {
local krb5_impl="--with-gssapi-impl=no"
# See https://blog.josefsson.org/2022/07/14/towards-pluggable-gss-api-modules/
if use kerberos; then
krb5_impl="--with-gssapi-impl=gssglue"
fi
local myeconfargs=(
--disable-gcc-warnings
--disable-valgrind-tests
--disable-rpath
--with-packager="Gentoo Linux"
--with-packager-bug-reports="https://bugs.gentoo.org"
--with-packager-version="r${PR}"
$(use_enable client)
$(use_enable server)
$(use_enable kerberos gssapi)
${krb5_impl}
$(use_enable kerberos gs2)
$(use_with gcrypt libgcrypt)
$(use_with gnutls)
$(use_enable nls)
$(use_with idn stringprep)
$(use_enable ntlm)
$(use_enable static-libs static)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
if ! use static-libs; then
rm -f "${ED}"/usr/lib*/lib*.la || die
fi
doman doc/gsasl.1 doc/man/*.3
}
pkg_postinst() {
ewarn "For USE=kerberos, ${PN} now uses libgssglue to allow choosing"
ewarn "the Kerberos implementation at runtime."
elog "See https://blog.josefsson.org/2022/07/14/towards-pluggable-gss-api-modules/"
elog "for more details."
}