diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-05-24 18:36:42 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-05-24 19:46:20 +0200 |
commit | db1ace31073530f97e5b5ff0261d0dda350ef8b9 (patch) | |
tree | bd4235217f93992cd2742907380895c219dc66a3 /x11-wm | |
parent | dev-python/pbs-installer: add 2024.4.24, drop 2024.4.1 (diff) | |
download | gentoo-db1ace31073530f97e5b5ff0261d0dda350ef8b9.tar.gz gentoo-db1ace31073530f97e5b5ff0261d0dda350ef8b9.tar.bz2 gentoo-db1ace31073530f97e5b5ff0261d0dda350ef8b9.zip |
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 <ulm@gentoo.org>
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/stumpwm/stumpwm-22.05_p20220818.ebuild | 8 |
1 files 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 |