summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.2.ebuild')
-rw-r--r--www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.2.ebuild32
1 files changed, 0 insertions, 32 deletions
diff --git a/www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.2.ebuild b/www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.2.ebuild
deleted file mode 100644
index 09a77b1fbbed..000000000000
--- a/www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-
-inherit apache-module
-
-DESCRIPTION="Apache module that 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"
-
-LICENSE="Apache-1.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="mod_proxy"
-
-DEPEND=""
-RDEPEND="mod_proxy? ( www-servers/apache[apache2_modules_proxy_connect] )"
-
-S="${WORKDIR}/extract_forwarded"
-
-APACHE2_MOD_CONF="98_${PN}"
-APACHE2_MOD_DEFINE="EXTRACT_FORWARDED"
-
-need_apache2_2
-
-src_prepare() {
- if ! use mod_proxy; then
- sed -i -e 's:#define USING_proxy_http_module .*::' mod_extract_forwarded.c || die
- fi
-}