www-apache/mod_qos: add 11.77

Signed-off-by: Craig Andrews <candrews@gentoo.org>
This commit is contained in:
Craig Andrews
2026-02-10 16:39:12 -05:00
parent f45cffec6e
commit 237ac7b481
2 changed files with 63 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST mod_qos-11.76.tar.gz 1233631 BLAKE2B 0747fa68d2185a8b84cffabbbe981af536b04b8af66ed93474a8bf844a87b3565626a42d7b7cca6839183772950283f864c77e3c5754cb528deae3b16d21f8f8 SHA512 8a1a0abc041d8488fd6a1513b8a15c18d056d2c8b6173dfca4331caa1a3798384c9114e481661639722b9e8ebe12d741948ab8fb99fd088b0eb48fb5657fac73
DIST mod_qos-11.77.tar.gz 1233735 BLAKE2B 648bf810852cedd30ab89a0ee09830b078980e4245beefa76a31c513d73f06bc711cfd25912405ffeeb444217dab8ca0433736df6a9bbd52f319477266ed0a32 SHA512 1d5919336f1428ddf955aaa216efc1114185abbdc7a9ec425c263709a08941ee42d963b15f0520284a276e22ce742e94a4d7487fb053458986393d40ffe343b9

View File

@@ -0,0 +1,62 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools apache-module
DESCRIPTION="A QOS module for the apache webserver"
HOMEPAGE="http://mod-qos.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/mod-qos/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-libs/libpcre2
dev-libs/openssl:0=
media-libs/libpng:0=
virtual/zlib:=
"
DEPEND="${RDEPEND}"
APXS2_S="${S}/apache2"
APACHE2_MOD_CONF="10_${PN}"
APACHE2_MOD_DEFINE="QOS"
DOCFILES="${S}/doc/*.txt ${S}/README.TXT"
need_apache2
pkg_setup() {
_init_apache2
_init_apache2_late
}
src_prepare() {
default
pushd "${S}"/tools &>/dev/null || die
eautoreconf
popd &>/dev/null || die
}
src_configure() {
pushd "${S}"/tools &>/dev/null || die
econf
popd &>/dev/null || die
}
src_compile() {
apache-module_src_compile
emake -C "${S}"/tools
}
src_install() {
einfo "Installing Apache module ..."
pushd "${S}"/tools &>/dev/null || die
apache-module_src_install
popd &>/dev/null || die
einfo "Installing module utilities ..."
emake -C "${S}"/tools install DESTDIR="${D}"
}