mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
www-apache/mod_auth_openidc: add 2.4.16.7
Closes: https://bugs.gentoo.org/932521 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
parent
d0f22208ed
commit
2d18b8a260
@ -1 +1,2 @@
|
||||
DIST mod_auth_openidc-2.4.14.4.tar.gz 632757 BLAKE2B e01df9c431df848c1773f8152d87b5efc183b016516718bbf5eff3de66d12c87396b649a06548b5f0e42a52d08baef9ced8cd4b79acfc1657b7427dab0c9c14d SHA512 b7d61f15d48292f2a567653632f7d9df8b6cb54303d4de0c333c8122a32df8749e508a0abd5259ac7ca15da5b244eec1e1d21f62140720ddb1705ec289551984
|
||||
DIST mod_auth_openidc-2.4.16.7.tar.gz 688803 BLAKE2B ddebeea109f2a33fb2bf71c4f1311f6b2bae6cd2cd6b6d4d3124ec0a99cca82ad7ee209f62ded3070390fff7c65ee062f758f410eea7f7cba3dcfef9c6b31ee6 SHA512 0f0d656294eab0c7bc5c8e637765ca58f0e9465cfb7971041d0efd41f67ccc1dcd4417cc4d0d3629eb05fe42e859804f4d39e3beae7285e582f4e373826da383
|
||||
|
||||
70
www-apache/mod_auth_openidc/mod_auth_openidc-2.4.16.7.ebuild
Normal file
70
www-apache/mod_auth_openidc/mod_auth_openidc-2.4.16.7.ebuild
Normal file
@ -0,0 +1,70 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit depend.apache apache-module autotools
|
||||
|
||||
DESCRIPTION="OpenID Connect Relying Party implementation for Apache HTTP Server 2.x"
|
||||
HOMEPAGE="https://github.com/OpenIDC/mod_auth_openidc"
|
||||
SRC_URI="https://github.com/OpenIDC/mod_auth_openidc/releases/download/v${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="brotli redis"
|
||||
|
||||
RDEPEND="
|
||||
app-misc/jq
|
||||
dev-libs/apr
|
||||
dev-libs/cjose
|
||||
dev-libs/jansson:=
|
||||
dev-libs/openssl:=
|
||||
dev-libs/libpcre
|
||||
net-misc/curl
|
||||
sys-libs/zlib:=
|
||||
brotli? ( app-arch/brotli:= )
|
||||
redis? ( dev-libs/hiredis:= )
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
"
|
||||
BDEPEND="virtual/pkgconfig"
|
||||
|
||||
APACHE2_MOD_CONF="10_mod_auth_openidc"
|
||||
APACHE2_MOD_DEFINE="AUTH_OPENIDC"
|
||||
DOCFILES="README.md ChangeLog AUTHORS INSTALL auth_openidc.conf"
|
||||
|
||||
need_apache2_4
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
ECONF_ARGS=(
|
||||
$(use_with brotli)
|
||||
$(use_with redis hiredis)
|
||||
)
|
||||
|
||||
CONFIG_SHELL="${BROOT}"/bin/bash econf "${ECONF_ARGS[@]}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# Do not use apache-module_src_compile ; it does not compile properly
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# Do not use apache-module_src_install ; it does not link properly
|
||||
default
|
||||
|
||||
insinto "${APACHE_MODULES_CONFDIR}"
|
||||
doins "${FILESDIR}/${APACHE2_MOD_CONF}.conf"
|
||||
dodoc ${DOCFILES}
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
apache-module_pkg_postinst
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user