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 F0FAF13835A for ; Mon, 26 Apr 2021 19:57:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41969E070D; Mon, 26 Apr 2021 19:57:08 +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 2A0AFE070D for ; Mon, 26 Apr 2021 19:57:08 +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 E19243412FC for ; Mon, 26 Apr 2021 19:57:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B2C5478 for ; Mon, 26 Apr 2021 19:57:05 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1619467023.8c35571c6b354d6cd8546d17ada65e3525c94672.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/sionlib/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/sionlib/sionlib-1.7.6.ebuild X-VCS-Directories: sys-cluster/sionlib/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 8c35571c6b354d6cd8546d17ada65e3525c94672 X-VCS-Branch: dev Date: Mon, 26 Apr 2021 19:57:05 +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: a2a3fbc3-4b21-46ea-8e1e-b09c61becba8 X-Archives-Hash: f4ef779fc5a048baa711251ee773a901 commit: 8c35571c6b354d6cd8546d17ada65e3525c94672 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Apr 26 19:07:12 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Mon Apr 26 19:57:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8c35571c sys-cluster/sionlib: fix doc building Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> sys-cluster/sionlib/sionlib-1.7.6.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-cluster/sionlib/sionlib-1.7.6.ebuild b/sys-cluster/sionlib/sionlib-1.7.6.ebuild index 50b58c797..cc8336e88 100644 --- a/sys-cluster/sionlib/sionlib-1.7.6.ebuild +++ b/sys-cluster/sionlib/sionlib-1.7.6.ebuild @@ -83,8 +83,10 @@ src_configure() { src_compile() { export VARTEXFONTS="${T}/fonts" default - use doc && doxygen -u doxy || die - use doc && doxygen doxy || die + if use doc ; then + doxygen -u doxy || die + doxygen doxy || die + fi } src_install() {