On Thu, Oct 1, 2020 at 1:07 AM Ulrich Mueller wrote:
>
> > On Thu, 01 Oct 2020, Matt Turner wrote:
>
> > - [[ ${PN} = font-misc-misc || ${PN} = font-schumacher-misc ||
> > ${PN##*-} = 75dpi || ${PN##*-} = 100dpi || ${PN##*-} = cyrillic ]] &&
> > IUSE+=" nls"
> > + case ${PN#font-} in
> On Thu, 01 Oct 2020, Matt Turner wrote:
> - [[ ${PN} = font-misc-misc || ${PN} = font-schumacher-misc || ${PN##*-}
> = 75dpi || ${PN##*-} = 100dpi || ${PN##*-} = cyrillic ]] && IUSE+=" nls"
> + case ${PN#font-} in
> + adobe-100dpi|adobe-utopia-100dpi|bh-100dpi|bh-lucidatypewrite
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.
Closes: https://bugs.gentoo.org/745