diff options
author | Sam James <sam@gentoo.org> | 2021-10-26 05:55:00 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-10-26 05:55:40 +0100 |
commit | 01db544de893262e857685e11b33c2a74210181f (patch) | |
tree | 2337ea06ab31d79bd03ced3e5b5796912d6f5884 /app-crypt/adcli/adcli-0.9.1-r1.ebuild | |
parent | dev-python/APScheduler: Suppress setuptools warning (diff) | |
download | gentoo-01db544de893262e857685e11b33c2a74210181f.tar.gz gentoo-01db544de893262e857685e11b33c2a74210181f.tar.bz2 gentoo-01db544de893262e857685e11b33c2a74210181f.zip |
app-crypt/adcli: add glibc-2.34 patch
Let's revbump as Henning needed it anyway for internal purposes and I'd
rather know immediately if there's any problems.
Closes: https://github.com/gentoo/gentoo/pull/22702
Closes: https://bugs.gentoo.org/820224
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-crypt/adcli/adcli-0.9.1-r1.ebuild')
-rw-r--r-- | app-crypt/adcli/adcli-0.9.1-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-crypt/adcli/adcli-0.9.1-r1.ebuild b/app-crypt/adcli/adcli-0.9.1-r1.ebuild new file mode 100644 index 000000000000..5224249d5001 --- /dev/null +++ b/app-crypt/adcli/adcli-0.9.1-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Tool for performing actions on an Active Directory domain" +HOMEPAGE="https://www.freedesktop.org/software/realmd/adcli/adcli.html" +SRC_URI="https://gitlab.freedesktop.org/realmd/adcli/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND=" + app-crypt/mit-krb5 + net-nds/openldap[sasl]" +RDEPEND="${DEPEND}" +BDEPEND=" + doc? ( + app-text/docbook-xml-dtd:4.3 + app-text/xmlto + dev-libs/libxslt + )" + +PATCHES=( + "${FILESDIR}"/${P}-glibc-2.34-resolv.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf $(use_enable doc) +} |