mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Closes: https://bugs.gentoo.org/944565 Signed-off-by: Craig Andrews <candrews@gentoo.org>
36 lines
808 B
Bash
36 lines
808 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
inherit apache-module
|
|
|
|
if [[ ${PV} == *9999 ]] ; then
|
|
EGIT_REPO_URI="https://github.com/phokz/mod-auth-external.git"
|
|
inherit git-r3
|
|
S="${WORKDIR}/${P}/${PN}"
|
|
else
|
|
SRC_URI="https://github.com/phokz/mod-auth-external/archive/${P}.tar.gz"
|
|
KEYWORDS="amd64"
|
|
S="${WORKDIR}/mod-auth-external-${P}"
|
|
fi
|
|
DEPEND="dev-libs/libbsd"
|
|
RDEPEND="dev-libs/libbsd"
|
|
|
|
DESCRIPTION="An Apache2 authorization DSO using unix groups"
|
|
HOMEPAGE="https://github.com/phokz/mod-auth-external"
|
|
|
|
LICENSE="Apache-1.1"
|
|
SLOT="0"
|
|
need_apache2_4
|
|
|
|
DOCFILES="CHANGES INSTALL README"
|
|
|
|
APXS2_ARGS="-c ${PN}.c -lbsd"
|
|
APACHE2_MOD_CONF="10_${PN}"
|
|
APACHE2_MOD_DEFINE="AUTHZ_UNIXGROUP"
|
|
|
|
pkg_setup() {
|
|
_init_apache2
|
|
_init_apache2_late
|
|
}
|