diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2008-04-30 17:37:42 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2008-04-30 17:37:42 +0000 |
commit | eff3da04f59268550cd32ef3aed8703569332d86 (patch) | |
tree | 82ab9fa3dd88264706f1a76a898a307463bd289d /eclass/x-modular.eclass | |
parent | - update patches from busybox.net. Fixes hppa compile bug 219516 (diff) | |
download | gentoo-2-eff3da04f59268550cd32ef3aed8703569332d86.tar.gz gentoo-2-eff3da04f59268550cd32ef3aed8703569332d86.tar.bz2 gentoo-2-eff3da04f59268550cd32ef3aed8703569332d86.zip |
(#214531) Add nls to IUSE for fonts with PN ending in -cyrillic.
Diffstat (limited to 'eclass/x-modular.eclass')
-rw-r--r-- | eclass/x-modular.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass index 1251e1a2eb1d..a032587c9817 100644 --- a/eclass/x-modular.eclass +++ b/eclass/x-modular.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.95 2008/04/13 04:44:16 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.96 2008/04/30 17:37:42 dberkholz Exp $ # # @ECLASS: x-modular.eclass # @MAINTAINER: @@ -145,7 +145,7 @@ if [[ "${PN/#font-}" != "${PN}" ]] \ FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" if [[ -n "${FONT}" ]]; then - if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then + if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then IUSE="${IUSE} nls" fi fi |