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 DD36E139694 for ; Wed, 12 Jul 2017 20:16:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F42302740D1; Wed, 12 Jul 2017 20:16:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D22342740D1 for ; Wed, 12 Jul 2017 20:16:02 +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 B3201341836 for ; Wed, 12 Jul 2017 20:16:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FAE12601 for ; Wed, 12 Jul 2017 20:16:00 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1499890556.73b0ef093676404c24ee4672252b932a758b1966.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/ghc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/ghc/ghc-8.0.2.ebuild X-VCS-Directories: dev-lang/ghc/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 73b0ef093676404c24ee4672252b932a758b1966 X-VCS-Branch: master Date: Wed, 12 Jul 2017 20:16:00 +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-Archives-Salt: 1a222e2e-b57d-4be8-b7ca-29985c2cdde3 X-Archives-Hash: d220637ba17e1d5ae98dca5d33190ecb commit: 73b0ef093676404c24ee4672252b932a758b1966 Author: Sergei Trofimovich gentoo org> AuthorDate: Wed Jul 12 20:14:35 2017 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Wed Jul 12 20:15:56 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b0ef09 dev-lang/ghc: guard manuals building behind USE=doc Building ghc.1 needs sphinx present in system. Reported-by: Patrick McLean Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-lang/ghc/ghc-8.0.2.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-lang/ghc/ghc-8.0.2.ebuild b/dev-lang/ghc/ghc-8.0.2.ebuild index 67329545ec0..dd4d223aeb6 100644 --- a/dev-lang/ghc/ghc-8.0.2.ebuild +++ b/dev-lang/ghc/ghc-8.0.2.ebuild @@ -514,6 +514,7 @@ src_configure() { # app-text/dblatex is not in portage, can not build PDF or PS echo "BUILD_SPHINX_PDF = NO" >> mk/build.mk echo "BUILD_SPHINX_HTML = $(usex doc YES NO)" >> mk/build.mk + echo "BUILD_MAN = $(usex doc YES NO)" >> mk/build.mk # this controls presence on 'xhtml' and 'haddock' in final install echo "HADDOCK_DOCS = YES" >> mk/build.mk