commit: aafcb52277aa883f12e2e752e0f2d1e795b3ba18 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Oct 15 02:39:48 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Nov 20 01:05:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aafcb522
xorg-3.eclass: add FONT_OPENTYPE_COMPAT support Bug: https://bugs.gentoo.org/698922 Signed-off-by: Sam James <sam <AT> gentoo.org> 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 e120d23efd4f..0d35c0a8ebf8 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
