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 A7A89138350 for ; Sat, 11 Apr 2020 00:06:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB6ABE0B20; Sat, 11 Apr 2020 00:06:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 A2523E0B20 for ; Sat, 11 Apr 2020 00:06:03 +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 D07D234EF71 for ; Sat, 11 Apr 2020 00:06:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADE9B2B for ; Sat, 11 Apr 2020 00:06:00 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1586563551.c6c95198fe0ad3bec900b0518b96a7e328c9ee9f.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-games/surgescript/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-games/surgescript/surgescript-0.5.4.ebuild dev-games/surgescript/surgescript-9999.ebuild X-VCS-Directories: dev-games/surgescript/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: c6c95198fe0ad3bec900b0518b96a7e328c9ee9f X-VCS-Branch: dev Date: Sat, 11 Apr 2020 00:06: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8bf40e47-5099-4624-b609-685ad1b995ff X-Archives-Hash: 03083bd1149a491e8397ce107bf0a338 commit: c6c95198fe0ad3bec900b0518b96a7e328c9ee9f Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Fri Apr 10 22:58:38 2020 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Sat Apr 11 00:05:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c6c95198 dev-games/surgescript: Fix mkdoc addition default here would override to the EAPI default function rather than the one that cmake.eclass puts as a replacement to src_compile. Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> dev-games/surgescript/surgescript-0.5.4.ebuild | 3 ++- dev-games/surgescript/surgescript-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-games/surgescript/surgescript-0.5.4.ebuild b/dev-games/surgescript/surgescript-0.5.4.ebuild index 983d3d5..b76cc96 100644 --- a/dev-games/surgescript/surgescript-0.5.4.ebuild +++ b/dev-games/surgescript/surgescript-0.5.4.ebuild @@ -25,7 +25,8 @@ BDEPEND="doc? ( dev-python/mkdocs-material )" src_compile() { - default + cmake_src_compile + if use doc; then mkdocs build || die "failed to make docs" HTML_DOCS="site" diff --git a/dev-games/surgescript/surgescript-9999.ebuild b/dev-games/surgescript/surgescript-9999.ebuild index 983d3d5..b76cc96 100644 --- a/dev-games/surgescript/surgescript-9999.ebuild +++ b/dev-games/surgescript/surgescript-9999.ebuild @@ -25,7 +25,8 @@ BDEPEND="doc? ( dev-python/mkdocs-material )" src_compile() { - default + cmake_src_compile + if use doc; then mkdocs build || die "failed to make docs" HTML_DOCS="site"