Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 26 Aug 2019 00:15:55
Message-Id: 1566778542.8f16fd8efc44fe412b759918e4e433f27bc65755.mattst88@gentoo
1 commit: 8f16fd8efc44fe412b759918e4e433f27bc65755
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 26 00:10:47 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 26 00:15:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f16fd8e
7
8 xorg-3.eclass: Add media-fonts/ to a couple cases
9
10 media-fonts/font-util doesn't require all of the extra logic xorg-2
11 contains for fonts. Adding these two lines are needed for new font-util
12 to use xorg-3.
13
14 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
15
16 eclass/xorg-3.eclass | 2 ++
17 1 file changed, 2 insertions(+)
18
19 diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass
20 index 217aadecb3b..b8dca22726d 100644
21 --- a/eclass/xorg-3.eclass
22 +++ b/eclass/xorg-3.eclass
23 @@ -72,6 +72,7 @@ IUSE=""
24 if [[ ${XORG_MODULE} == auto ]]; then
25 case ${CATEGORY} in
26 app-doc) XORG_MODULE=doc/ ;;
27 + media-fonts) XORG_MODULE=font/ ;;
28 x11-apps|x11-wm) XORG_MODULE=app/ ;;
29 x11-misc|x11-themes) XORG_MODULE=util/ ;;
30 x11-base) XORG_MODULE=xserver/ ;;
31 @@ -140,6 +141,7 @@ if [[ ${XORG_STATIC} == yes \
32 && ${CATEGORY} != app-doc \
33 && ${CATEGORY} != x11-apps \
34 && ${CATEGORY} != x11-drivers \
35 + && ${CATEGORY} != media-fonts \
36 && ${PN} != util-macros \
37 && ${PN} != xbitmaps \
38 && ${PN} != xorg-cf-files \