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 6E50B1581D3 for ; Fri, 24 May 2024 17:46:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72BD7E2A1C; Fri, 24 May 2024 17:46:35 +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 53547E2A1C for ; Fri, 24 May 2024 17:46:35 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3827C33B864 for ; Fri, 24 May 2024 17:46:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 903651AE0 for ; Fri, 24 May 2024 17:46:32 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1716572780.db1ace31073530f97e5b5ff0261d0dda350ef8b9.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/stumpwm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/stumpwm/stumpwm-22.05_p20220818.ebuild X-VCS-Directories: x11-wm/stumpwm/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: db1ace31073530f97e5b5ff0261d0dda350ef8b9 X-VCS-Branch: master Date: Fri, 24 May 2024 17:46:32 +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: ed0e61ca-4947-49b9-bb83-af6c10a91b09 X-Archives-Hash: d2821c7f902750102f8f5b63339d0991 commit: db1ace31073530f97e5b5ff0261d0dda350ef8b9 Author: Ulrich Müller gentoo org> AuthorDate: Fri May 24 16:36:42 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri May 24 17:46:20 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1ace31 x11-wm/stumpwm: Fix build failure with USE=doc Add missing font dependency. Closes: https://bugs.gentoo.org/882935 Signed-off-by: Ulrich Müller gentoo.org> x11-wm/stumpwm/stumpwm-22.05_p20220818.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/x11-wm/stumpwm/stumpwm-22.05_p20220818.ebuild b/x11-wm/stumpwm/stumpwm-22.05_p20220818.ebuild index ec421ca8a134..46876099895e 100644 --- a/x11-wm/stumpwm/stumpwm-22.05_p20220818.ebuild +++ b/x11-wm/stumpwm/stumpwm-22.05_p20220818.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -27,13 +27,17 @@ RDEPEND="dev-lisp/alexandria emacs? ( >=app-editors/emacs-23.1:* )" DEPEND="${RDEPEND}" BDEPEND="sys-apps/texinfo - doc? ( virtual/texi2dvi )" + doc? ( + virtual/texi2dvi + dev-texlive/texlive-fontsrecommended + )" SITEFILE=70${PN}-gentoo.el CLPKGDIR="${CLSOURCEROOT}/${CLPACKAGE}" install_docs() { local pdffile="${PN}.pdf" + export VARTEXFONTS="${T}/fonts" texi2pdf -o "${pdffile}" "${PN}.texi.in" && dodoc "${pdffile}" || die cp "${FILESDIR}/README.Gentoo" . && sed -i "s:@VERSION@:${PV}:" README.Gentoo || die