diff options
author | Matt Turner <mattst88@gentoo.org> | 2020-09-30 22:12:39 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2020-10-02 18:31:49 -0700 |
commit | 01791842dc03edb66b0384561b63ae95fc7d8d59 (patch) | |
tree | 340f0a69680b932131160f4916eb549cd0245249 /eclass/xorg-3.eclass | |
parent | media-fonts/font-schumacher-misc: Add IUSE=nls (diff) | |
download | gentoo-01791842dc03edb66b0384561b63ae95fc7d8d59.tar.gz gentoo-01791842dc03edb66b0384561b63ae95fc7d8d59.tar.bz2 gentoo-01791842dc03edb66b0384561b63ae95fc7d8d59.zip |
xorg-3.eclass: Drop font IUSE=nls handling
The previous logic incorrectly added IUSE=nls for font-bitstream-100dpi,
font-bitstream-75dpi, font-cronyx-cyrillic, font-misc-cyrillic,
font-screen-cyrillic, and font-winitzki-cyrillic. This caused
"QA Notice: Unrecognized configure options: ..." with USE=-nls.
Instead, we'll simply have IUSE="nls" in the packages' ebuilds that need
it.
Closes: https://bugs.gentoo.org/745756
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'eclass/xorg-3.eclass')
-rw-r--r-- | eclass/xorg-3.eclass | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass index 78c843401cc7..af28f6fa30d5 100644 --- a/eclass/xorg-3.eclass +++ b/eclass/xorg-3.eclass @@ -168,8 +168,6 @@ if [[ ${FONT} == yes ]]; then FONT_DIR=${FONT_DIR/otf/OTF} FONT_DIR=${FONT_DIR/type1/Type1} FONT_DIR=${FONT_DIR/speedo/Speedo} - - [[ ${PN} = font-misc-misc || ${PN} = font-schumacher-misc || ${PN##*-} = 75dpi || ${PN##*-} = 100dpi || ${PN##*-} = cyrillic ]] && IUSE+=" nls" fi # @ECLASS-VARIABLE: XORG_STATIC |