From aafcb52277aa883f12e2e752e0f2d1e795b3ba18 Mon Sep 17 00:00:00 2001 From: Sam James Date: Sat, 15 Oct 2022 03:39:48 +0100 Subject: [PATCH] xorg-3.eclass: add FONT_OPENTYPE_COMPAT support Bug: https://bugs.gentoo.org/698922 Signed-off-by: Sam James --- eclass/xorg-3.eclass | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass index e120d23efd4fa..0d35c0a8ebf84 100644 --- a/eclass/xorg-3.eclass +++ b/eclass/xorg-3.eclass @@ -463,7 +463,13 @@ xorg-3_src_install() { # Don't install libtool archives (even for modules) find "${D}" -type f -name '*.la' -delete || die - [[ -n ${FONT} ]] && remove_font_metadata + if [[ -n ${FONT} ]] ; then + if [[ -n ${FONT_OPENTYPE_COMPAT} ]] && in_iuse opentype-compat && use opentype-compat ; then + font_wrap_opentype_compat + fi + + remove_font_metadata + fi } # @FUNCTION: xorg-3_pkg_postinst