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 2C437158451 for ; Tue, 9 Jan 2024 09:06:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72B772BC01F; Tue, 9 Jan 2024 09:06:25 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5BEF22BC01F for ; Tue, 9 Jan 2024 09:06:25 +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 1E46C3432FF for ; Tue, 9 Jan 2024 09:06:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8122A1082 for ; Tue, 9 Jan 2024 09:06:22 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1704791162.9d4252b052f26e66bb95dc3b53a43c5086e09774.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: x11-wm/phoc/ X-VCS-Repository: repo/proj/guru X-VCS-Files: x11-wm/phoc/phoc-0.35.0.ebuild X-VCS-Directories: x11-wm/phoc/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 9d4252b052f26e66bb95dc3b53a43c5086e09774 X-VCS-Branch: dev Date: Tue, 9 Jan 2024 09:06:22 +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: 2ab8f016-5c9c-47aa-8ccd-181a2a6400fa X-Archives-Hash: f1efcd44b57ac5e1e2de913cb98991cd commit: 9d4252b052f26e66bb95dc3b53a43c5086e09774 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Tue Jan 9 08:59:39 2024 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Tue Jan 9 09:06:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9d4252b0 x11-wm/phoc: fix gtk-doc install Closes: https://bugs.gentoo.org/921633 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> x11-wm/phoc/phoc-0.35.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/x11-wm/phoc/phoc-0.35.0.ebuild b/x11-wm/phoc/phoc-0.35.0.ebuild index ff9004696c..cad47eda53 100644 --- a/x11-wm/phoc/phoc-0.35.0.ebuild +++ b/x11-wm/phoc/phoc-0.35.0.ebuild @@ -61,6 +61,11 @@ src_test() { src_install() { meson_src_install + if use gtk-doc; then + mkdir -p "${ED}"/usr/share/gtk-doc/html/ || die + mv "${ED}"/usr/share/doc/${PN}-${SLOT} "${ED}"/usr/share/gtk-doc/html/ || die + fi + newbin helpers/auto-maximize phoc-auto-maximize newbin helpers/scale-to-fit phoc-scale-to-fit }