| 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.44 2006/02/15 21:07:00 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.53 2006/04/20 23:43:48 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. |
| … | |
… | |
| 25 | # |
25 | # |
| 26 | # Pretty much everything else should be automatic. |
26 | # Pretty much everything else should be automatic. |
| 27 | |
27 | |
| 28 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
28 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 29 | |
29 | |
| 30 | inherit eutils libtool toolchain-funcs flag-o-matic |
30 | inherit eutils libtool toolchain-funcs flag-o-matic autotools |
| 31 | |
31 | |
| 32 | # Directory prefix to use for everything |
32 | # Directory prefix to use for everything |
| 33 | XDIR="/usr" |
33 | XDIR="/usr" |
| 34 | |
34 | |
| 35 | # Set up default patchset version(s) if necessary |
35 | # Set up default patchset version(s) if necessary |
| … | |
… | |
| 71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
| 72 | fi |
72 | fi |
| 73 | |
73 | |
| 74 | # SRC_URI for full releases |
74 | # SRC_URI for full releases |
| 75 | SRC_URI="${SRC_URI} |
75 | SRC_URI="${SRC_URI} |
| 76 | http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2 |
76 | http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2" |
| 77 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
|
|
| 78 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
|
|
| 79 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
|
|
| 80 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
|
|
| 81 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
|
|
| 82 | |
77 | |
| 83 | SLOT="0" |
78 | SLOT="0" |
| 84 | |
79 | |
| 85 | # Set the license for the package. This can be overridden by setting |
80 | # Set the license for the package. This can be overridden by setting |
| 86 | # LICENSE after the inherit. |
81 | # LICENSE after the inherit. |
| … | |
… | |
| 96 | >=sys-devel/m4-1.4" |
91 | >=sys-devel/m4-1.4" |
| 97 | fi |
92 | fi |
| 98 | |
93 | |
| 99 | # If we're a font package, but not the font.alias one |
94 | # If we're a font package, but not the font.alias one |
| 100 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
95 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
96 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 101 | && [[ "${PN}" != "font-alias" ]] \ |
97 | && [[ "${PN}" != "font-alias" ]] \ |
| 102 | && [[ "${PN}" != "font-util" ]]; then |
98 | && [[ "${PN}" != "font-util" ]]; then |
| 103 | # Activate font code in the rest of the eclass |
99 | # Activate font code in the rest of the eclass |
| 104 | FONT="yes" |
100 | FONT="yes" |
| 105 | |
101 | |
| … | |
… | |
| 156 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
152 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
| 157 | ; then |
153 | ; then |
| 158 | DEBUGGABLE="yes" |
154 | DEBUGGABLE="yes" |
| 159 | IUSE="${IUSE} debug" |
155 | IUSE="${IUSE} debug" |
| 160 | if use debug; then |
156 | if use debug; then |
|
|
157 | if ! has splitdebug ${FEATURES}; then |
| 161 | RESTRICT="${RESTRICT} nostrip" |
158 | RESTRICT="${RESTRICT} nostrip" |
|
|
159 | fi |
| 162 | fi |
160 | fi |
| 163 | fi |
161 | fi |
| 164 | |
162 | |
| 165 | DEPEND="${DEPEND} |
163 | DEPEND="${DEPEND} |
| 166 | >=dev-util/pkgconfig-0.18" |
164 | >=dev-util/pkgconfig-0.18" |
| … | |
… | |
| 176 | >=sys-apps/man-1.6b-r2" |
174 | >=sys-apps/man-1.6b-r2" |
| 177 | # Provides virtual/x11 for temporary use until packages are ported |
175 | # Provides virtual/x11 for temporary use until packages are ported |
| 178 | # x11-base/x11-env" |
176 | # x11-base/x11-env" |
| 179 | |
177 | |
| 180 | x-modular_unpack_source() { |
178 | x-modular_unpack_source() { |
|
|
179 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
180 | # support for it |
|
|
181 | if [[ -n "${DRIVER}" ]]; then |
|
|
182 | if has dri ${IUSE} && use dri; then |
|
|
183 | einfo "Checking for direct rendering capabilities ..." |
|
|
184 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
185 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
186 | fi |
|
|
187 | fi |
|
|
188 | fi |
|
|
189 | |
| 181 | unpack ${A} |
190 | unpack ${A} |
| 182 | cd ${S} |
191 | cd ${S} |
| 183 | |
192 | |
| 184 | if [[ -n ${FONT_OPTIONS} ]]; then |
193 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 185 | einfo "Detected font directory: ${FONT_DIR}" |
194 | einfo "Detected font directory: ${FONT_DIR}" |
| … | |
… | |
| 221 | if [[ "${SNAPSHOT}" = "yes" ]] |
230 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 222 | then |
231 | then |
| 223 | # If possible, generate configure if it doesn't exist |
232 | # If possible, generate configure if it doesn't exist |
| 224 | if [ -f "${S}/configure.ac" ] |
233 | if [ -f "${S}/configure.ac" ] |
| 225 | then |
234 | then |
| 226 | einfo "Running autoreconf..." |
235 | eautoreconf |
| 227 | autoreconf -v --force --install |
|
|
| 228 | fi |
236 | fi |
| 229 | fi |
237 | fi |
| 230 | |
238 | |
| 231 | } |
239 | } |
| 232 | |
240 | |
| 233 | x-modular_src_unpack() { |
241 | x-modular_src_unpack() { |
| 234 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
242 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 235 | if gcc-specs-now; then |
243 | if gcc-specs-now; then |
| 236 | msg="Do not emerge ${PN} without vanilla gcc!" |
244 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
| 237 | eerror "$msg" |
245 | eerror "$msg" |
| 238 | die "$msg" |
246 | die "$msg" |
| 239 | fi |
247 | fi |
| 240 | fi |
248 | fi |
| 241 | |
249 | |
| … | |
… | |
| 315 | # Shouldn't be necessary in XDIR=/usr |
323 | # Shouldn't be necessary in XDIR=/usr |
| 316 | # einstall forces datadir, so we need to re-force it |
324 | # einstall forces datadir, so we need to re-force it |
| 317 | # datadir=${XDIR}/share \ |
325 | # datadir=${XDIR}/share \ |
| 318 | # mandir=${XDIR}/share/man \ |
326 | # mandir=${XDIR}/share/man \ |
| 319 | |
327 | |
|
|
328 | # Make sure docs get compressed |
|
|
329 | prepalldocs |
|
|
330 | |
| 320 | # Don't install libtool archives for server modules |
331 | # Don't install libtool archives for server modules |
| 321 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
332 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
| 322 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
333 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
| 323 | | xargs rm -f |
334 | | xargs rm -f |
|
|
335 | fi |
|
|
336 | |
|
|
337 | # Don't install overlapping fonts.* files |
|
|
338 | # Generate them instead when possible |
|
|
339 | if [[ -n "${FONT}" ]]; then |
|
|
340 | remove_font_metadata |
| 324 | fi |
341 | fi |
| 325 | } |
342 | } |
| 326 | |
343 | |
| 327 | x-modular_pkg_preinst() { |
344 | x-modular_pkg_preinst() { |
| 328 | if [[ -n "${FONT}" ]]; then |
345 | if [[ -n "${FONT}" ]]; then |
| … | |
… | |
| 386 | |
403 | |
| 387 | create_fonts_scale |
404 | create_fonts_scale |
| 388 | create_fonts_dir |
405 | create_fonts_dir |
| 389 | fix_font_permissions |
406 | fix_font_permissions |
| 390 | create_font_cache |
407 | create_font_cache |
|
|
408 | } |
|
|
409 | |
|
|
410 | remove_font_metadata() { |
|
|
411 | local DIR |
|
|
412 | for DIR in ${FONT_DIR}; do |
|
|
413 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
414 | [[ "${DIR}" != "CID" ]] ; then |
|
|
415 | # Delete font metadata files |
|
|
416 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
417 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
418 | fi |
|
|
419 | done |
| 391 | } |
420 | } |
| 392 | |
421 | |
| 393 | discover_font_dirs() { |
422 | discover_font_dirs() { |
| 394 | pushd ${IMAGE}/usr/share/fonts |
423 | pushd ${IMAGE}/usr/share/fonts |
| 395 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
424 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |