From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 40C7A138334 for ; Sun, 10 Mar 2019 22:38:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C290E0DC4; Sun, 10 Mar 2019 22:38:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42AD9E0DBE for ; Sun, 10 Mar 2019 22:38:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00605335D0D for ; Sun, 10 Mar 2019 22:38:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A59D3576 for ; Sun, 10 Mar 2019 22:38:36 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1552257330.61c02bdcbe2db4c25cb2d76291794a649a4c1ba2.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_security/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_security/mod_security-2.9.3.ebuild X-VCS-Directories: www-apache/mod_security/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 61c02bdcbe2db4c25cb2d76291794a649a4c1ba2 X-VCS-Branch: master Date: Sun, 10 Mar 2019 22:38:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cae9c89c-53ab-493f-b73d-fce4af819ce9 X-Archives-Hash: bc6b37684251a43f09e6effaa7194b4b commit: 61c02bdcbe2db4c25cb2d76291794a649a4c1ba2 Author: Tomas Mozes gmail com> AuthorDate: Fri Mar 8 09:35:32 2019 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Mar 10 22:35:30 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c02bdc www-apache/mod_security: fix building USE=doc. Patch-by: Dennis Lichtenthäler Closes: https://bugs.gentoo.org/679522 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Tomáš Mózes gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11296 Signed-off-by: Patrice Clement gentoo.org> www-apache/mod_security/mod_security-2.9.3.ebuild | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/www-apache/mod_security/mod_security-2.9.3.ebuild b/www-apache/mod_security/mod_security-2.9.3.ebuild index 41cfb5afbc1..f04a0e597d6 100644 --- a/www-apache/mod_security/mod_security-2.9.3.ebuild +++ b/www-apache/mod_security/mod_security-2.9.3.ebuild @@ -60,19 +60,14 @@ src_configure() { $(use_enable mlogc) $(use_with lua) $(use_enable lua lua-cache) - $(use_enable jit pcre-jit) ) + $(use_enable jit pcre-jit) + $(use_enable doc docs) ) econf ${myconf[@]} } src_compile() { default - - # Building the docs is broken at the moment, see e.g. - # https://github.com/SpiderLabs/ModSecurity/issues/1322 - if use doc; then - doxygen doc/doxygen-apache.conf || die 'failed to build documentation' - fi } src_install() {