| 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.52 2006/04/03 23:49:32 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.54 2006/04/21 06:58: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. |
| … | |
… | |
| 173 | !<=x11-base/xorg-x11-6.9 |
173 | !<=x11-base/xorg-x11-6.9 |
| 174 | >=sys-apps/man-1.6b-r2" |
174 | >=sys-apps/man-1.6b-r2" |
| 175 | # Provides virtual/x11 for temporary use until packages are ported |
175 | # Provides virtual/x11 for temporary use until packages are ported |
| 176 | # x11-base/x11-env" |
176 | # x11-base/x11-env" |
| 177 | |
177 | |
|
|
178 | x-modular_specs_check() { |
|
|
179 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
180 | if gcc-specs-now; then |
|
|
181 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
|
|
182 | eerror "$msg" |
|
|
183 | die "$msg" |
|
|
184 | fi |
|
|
185 | fi |
|
|
186 | } |
|
|
187 | |
| 178 | x-modular_unpack_source() { |
188 | x-modular_unpack_source() { |
|
|
189 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
190 | # support for it |
|
|
191 | if [[ -n "${DRIVER}" ]]; then |
|
|
192 | if has dri ${IUSE} && use dri; then |
|
|
193 | einfo "Checking for direct rendering capabilities ..." |
|
|
194 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
195 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
196 | fi |
|
|
197 | fi |
|
|
198 | fi |
|
|
199 | |
| 179 | unpack ${A} |
200 | unpack ${A} |
| 180 | cd ${S} |
201 | cd ${S} |
| 181 | |
202 | |
| 182 | if [[ -n ${FONT_OPTIONS} ]]; then |
203 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 183 | einfo "Detected font directory: ${FONT_DIR}" |
204 | einfo "Detected font directory: ${FONT_DIR}" |
| … | |
… | |
| 223 | then |
244 | then |
| 224 | eautoreconf |
245 | eautoreconf |
| 225 | fi |
246 | fi |
| 226 | fi |
247 | fi |
| 227 | |
248 | |
|
|
249 | # Joshua Baergen - October 23, 2005 |
|
|
250 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
251 | elibtoolize |
| 228 | } |
252 | } |
| 229 | |
253 | |
| 230 | x-modular_src_unpack() { |
254 | x-modular_src_unpack() { |
| 231 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
255 | x-modular_specs_check |
| 232 | if gcc-specs-now; then |
|
|
| 233 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
|
|
| 234 | eerror "$msg" |
|
|
| 235 | die "$msg" |
|
|
| 236 | fi |
|
|
| 237 | fi |
|
|
| 238 | |
|
|
| 239 | x-modular_unpack_source |
256 | x-modular_unpack_source |
| 240 | x-modular_patch_source |
257 | x-modular_patch_source |
| 241 | x-modular_reconf_source |
258 | x-modular_reconf_source |
| 242 | |
|
|
| 243 | # Joshua Baergen - October 23, 2005 |
|
|
| 244 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 245 | elibtoolize |
|
|
| 246 | } |
259 | } |
| 247 | |
260 | |
| 248 | x-modular_font_configure() { |
261 | x-modular_font_configure() { |
| 249 | if [[ -n "${FONT}" ]]; then |
262 | if [[ -n "${FONT}" ]]; then |
| 250 | # Might be worth adding an option to configure your desired font |
263 | # Might be worth adding an option to configure your desired font |