You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.3...

30 lines
794 B

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit apache-module
DESCRIPTION="Rewrites X-Forwarded-For to REMOTE_ADDR for reverse proxy configurations"
HOMEPAGE="http://www.openinfo.co.uk/apache/index.html"
#SRC_URI="http://www.openinfo.co.uk/apache/extract_forwarded-${PV}.tar.gz"
SRC_URI="https://dev.gentoo.org/~pacho/maintainer-needed/${P}.tar.xz"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="mod-proxy"
DEPEND=""
RDEPEND="mod-proxy? ( www-servers/apache[apache2_modules_proxy_connect] )"
APACHE2_MOD_CONF="98_${PN}"
APACHE2_MOD_DEFINE="EXTRACT_FORWARDED"
need_apache2_4
src_prepare() {
if ! use mod-proxy; then
sed -i -e 's:#define USING_proxy_http_module .*::' mod_extract_forwarded.c || die
fi
}