# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 inherit apache-module eutils systemd DESCRIPTION="An Apache authentication module using Kerberos" HOMEPAGE="http://modauthkerb.sourceforge.net/" SRC_URI="mirror://sourceforge/modauthkerb/${P}.tar.gz https://dev.gentoo.org/~mgorny/dist/${P}-gentoo-patchset.tar.bz2" LICENSE="BSD openafs-krb5-a HPND" SLOT="0" KEYWORDS="amd64 x86" IUSE="+apache2" REQUIRED_USE="apache2" DEPEND=" virtual/krb5 www-servers/apache " RDEPEND="${DEPEND}" APACHE2_MOD_CONF="11_${PN}" APACHE2_MOD_DEFINE="AUTH_KERB" DOCFILES="INSTALL README" need_apache2 PATCHES=( "${WORKDIR}/${P}-gentoo-patchset"/${P}-rcopshack.patch "${WORKDIR}/${P}-gentoo-patchset"/${P}-fixes.patch "${WORKDIR}/${P}-gentoo-patchset"/${P}-s4u2proxy.patch "${WORKDIR}/${P}-gentoo-patchset"/${P}-httpd24.patch "${WORKDIR}/${P}-gentoo-patchset"/${P}-delegation.patch "${WORKDIR}/${P}-gentoo-patchset"/${P}-cachedir.patch "${WORKDIR}/${P}-gentoo-patchset"/${P}-longuser.patch "${WORKDIR}/${P}-gentoo-patchset"/${P}-handle-continue.patch "${WORKDIR}/${P}-gentoo-patchset"/${P}-heimdal.patch #Infinera fixes "${FILESDIR}"/mod_auth_kerb-krb5_kt_close.patch "${FILESDIR}"/mit-krb5-1.18.2.patch ) src_configure() { CFLAGS="" APXS="${APXS}" econf --with-krb5=/usr --without-krb4 } src_compile() { emake } src_install() { apache-module_src_install systemd_dotmpfilesd "${FILESDIR}/${PN}.conf" }