commit: 86d645d1ab1d7ca5fe4310f3df23f3e09a735a0d Author: Craig Andrews <candrews <AT> gentoo <DOT> org> AuthorDate: Mon Jun 10 15:31:54 2024 +0000 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org> CommitDate: Mon Jun 10 15:31:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d645d1
www-apache/mod_authz_unixgroup: update EAPI 7 -> 8 Bug: https://bugs.gentoo.org/933847 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org> .../mod_authz_unixgroup-1.1.0-r2.ebuild | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/www-apache/mod_authz_unixgroup/mod_authz_unixgroup-1.1.0-r2.ebuild b/www-apache/mod_authz_unixgroup/mod_authz_unixgroup-1.1.0-r2.ebuild new file mode 100644 index 000000000000..e445b9e407d1 --- /dev/null +++ b/www-apache/mod_authz_unixgroup/mod_authz_unixgroup-1.1.0-r2.ebuild @@ -0,0 +1,32 @@ +# 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 + +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 NOTICE" + +APACHE2_MOD_CONF="10_${PN}" +APACHE2_MOD_DEFINE="AUTHZ_UNIXGROUP" + +pkg_setup() { + _init_apache2 + _init_apache2_late +}
