diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-09-23 09:44:17 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-09-23 10:07:12 +0200 |
commit | bad72cce0a5583d5b048d8ad911f84fec9aeafdd (patch) | |
tree | 62f4d132261bf8ee437afe4e2dd8168e7d158871 /www-apache | |
parent | net-p2p/dbhub: Replace underscore in flag name (diff) | |
download | gentoo-bad72cce0a5583d5b048d8ad911f84fec9aeafdd.tar.gz gentoo-bad72cce0a5583d5b048d8ad911f84fec9aeafdd.tar.bz2 gentoo-bad72cce0a5583d5b048d8ad911f84fec9aeafdd.zip |
www-apache/mod_extract_forwarded: Replace underscore in flag name
Closes: https://bugs.gentoo.org/695156
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/mod_extract_forwarded/metadata.xml | 2 | ||||
-rw-r--r-- | www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.3_pre2015052015.ebuild | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/www-apache/mod_extract_forwarded/metadata.xml b/www-apache/mod_extract_forwarded/metadata.xml index cd3828aea5dc..f30b35246ca7 100644 --- a/www-apache/mod_extract_forwarded/metadata.xml +++ b/www-apache/mod_extract_forwarded/metadata.xml @@ -3,6 +3,6 @@ <pkgmetadata> <!-- maintainer-needed --> <use> - <flag name="mod_proxy">Enable support for Apache's internal proxy</flag> + <flag name="mod-proxy">Enable support for Apache's internal proxy</flag> </use> </pkgmetadata> diff --git a/www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.3_pre2015052015.ebuild b/www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.3_pre2015052015.ebuild index 284bedb2db25..24703f93f876 100644 --- a/www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.3_pre2015052015.ebuild +++ b/www-apache/mod_extract_forwarded/mod_extract_forwarded-2.0.3_pre2015052015.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -12,10 +12,10 @@ SRC_URI="https://dev.gentoo.org/~pacho/maintainer-needed/${P}.tar.xz" LICENSE="Apache-1.1" SLOT="0" KEYWORDS="amd64 x86" -IUSE="mod_proxy" +IUSE="mod-proxy" DEPEND="" -RDEPEND="mod_proxy? ( www-servers/apache[apache2_modules_proxy_connect] )" +RDEPEND="mod-proxy? ( www-servers/apache[apache2_modules_proxy_connect] )" APACHE2_MOD_CONF="98_${PN}" APACHE2_MOD_DEFINE="EXTRACT_FORWARDED" @@ -23,7 +23,7 @@ APACHE2_MOD_DEFINE="EXTRACT_FORWARDED" need_apache2_4 src_prepare() { - if ! use mod_proxy; then + if ! use mod-proxy; then sed -i -e 's:#define USING_proxy_http_module .*::' mod_extract_forwarded.c || die fi } |