Files
gentoo/app-crypt/adcli/adcli-0.9.3.1.ebuild
2026-06-05 18:02:22 +01:00

54 lines
1.5 KiB
Bash

# Copyright 2021-2026 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 ~arm64 ~x86"
IUSE="doc netapi selinux"
DEPEND="
app-crypt/mit-krb5
net-nds/openldap:=[sasl]
netapi? ( net-fs/samba )"
# still pull in kerberos policies, provides labelling and might some day
# actually bring policies which are currently still internal (see src_configure)
RDEPEND="${DEPEND}
selinux? ( sec-policy/selinux-kerberos )"
BDEPEND="
doc? (
app-text/docbook-xml-dtd:4.3
app-text/xmlto
dev-libs/libxslt
)"
src_prepare() {
default
eautoreconf
}
src_configure() {
# builds its own policy, no selinux until policies are official
local myconf="--disable-selinux-support"
# building selinux policies is explicitly disabled, but
# configure still checks for existence of
# /usr/share/selinux/devel/Makefile with AC_CHECK_FILE - this
# results in an error when cross-compiling:
#
# checking for /usr/share/selinux/devel/Makefile... configure:
# error: cannot check for file existence when cross compiling
local -x ac_cv_file__usr_share_selinux_devel_Makefile=no
econf \
${myconf} \
$(use_enable doc) \
$(use_enable netapi offline-join-support) \
KRB5_CONFIG="${ESYSROOT}"/usr/bin/krb5-config
}