| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.35 2005/12/23 08:28:00 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.36 2005/12/23 16:41:52 spyderous Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is designed to reduce code duplication in the modularized X11 |
7 | # This eclass is designed to reduce code duplication in the modularized X11 |
| 8 | # ebuilds. |
8 | # ebuilds. |
| … | |
… | |
| 65 | && [[ "${PN}" != "font-util" ]]; then |
65 | && [[ "${PN}" != "font-util" ]]; then |
| 66 | # Activate font code in the rest of the eclass |
66 | # Activate font code in the rest of the eclass |
| 67 | FONT="yes" |
67 | FONT="yes" |
| 68 | |
68 | |
| 69 | RDEPEND="${RDEPEND} |
69 | RDEPEND="${RDEPEND} |
| 70 | media-fonts/encodings" |
70 | media-fonts/encodings |
| 71 | DEPEND="${DEPEND} |
|
|
| 72 | x11-apps/mkfontscale |
71 | x11-apps/mkfontscale |
| 73 | x11-apps/mkfontdir" |
72 | x11-apps/mkfontdir" |
| 74 | PDEPEND="${PDEPEND} |
73 | PDEPEND="${PDEPEND} |
| 75 | media-fonts/font-alias" |
74 | media-fonts/font-alias" |
| 76 | |
75 | |