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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 02DCD15817D for ; Wed, 19 Jun 2024 06:09:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D36912BC016; Wed, 19 Jun 2024 06:09:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B85FD2BC016 for ; Wed, 19 Jun 2024 06:09:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91343335C2E for ; Wed, 19 Jun 2024 06:09:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE7C51CFB for ; Wed, 19 Jun 2024 06:09:44 +0000 (UTC) From: "Matt Jolly" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Jolly" Message-ID: <1718777375.82f886b5eae04d385bdc227399b45742ab7f1599.kangie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/dillo/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/dillo/dillo-9999.ebuild X-VCS-Directories: www-client/dillo/ X-VCS-Committer: kangie X-VCS-Committer-Name: Matt Jolly X-VCS-Revision: 82f886b5eae04d385bdc227399b45742ab7f1599 X-VCS-Branch: master Date: Wed, 19 Jun 2024 06:09:44 +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: 847e5e50-fd73-4ca5-b23f-8f549d83d3d1 X-Archives-Hash: 2c9afaa763b2a84cdaf40bb1c4c8b4c1 commit: 82f886b5eae04d385bdc227399b45742ab7f1599 Author: Matt Jolly gentoo org> AuthorDate: Wed Jun 19 05:56:16 2024 +0000 Commit: Matt Jolly gentoo org> CommitDate: Wed Jun 19 06:09:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82f886b5 www-client/dillo: fix doc dependencies Dillo's doxygen depends on `dot` and `latex` binaries being available. Closes: https://bugs.gentoo.org/933454 Signed-off-by: Matt Jolly gentoo.org> www-client/dillo/dillo-9999.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/www-client/dillo/dillo-9999.ebuild b/www-client/dillo/dillo-9999.ebuild index e1184d7c6667..b40a1c5d1e76 100644 --- a/www-client/dillo/dillo-9999.ebuild +++ b/www-client/dillo/dillo-9999.ebuild @@ -44,7 +44,10 @@ DEPEND=" ${RDEPEND} " BDEPEND=" - doc? ( app-text/doxygen ) + doc? ( + app-text/doxygen[dot] + app-text/texlive + ) " DOCS="AUTHORS ChangeLog README NEWS doc/*.txt doc/README"