| 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.71 2006/07/04 02:11:26 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 multilib 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 |
| … | |
… | |
| 41 | IUSE="" |
41 | IUSE="" |
| 42 | HOMEPAGE="http://xorg.freedesktop.org/" |
42 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 43 | |
43 | |
| 44 | # Set up SRC_URI for individual modular releases |
44 | # Set up SRC_URI for individual modular releases |
| 45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 46 | if [[ ${CATEGORY} = x11-apps ]]; then |
46 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
| 47 | SRC_URI="${SRC_URI} |
47 | SRC_URI="${SRC_URI} |
| 48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
| 49 | elif [[ ${CATEGORY} = app-doc ]]; then |
49 | elif [[ ${CATEGORY} = app-doc ]]; then |
| 50 | SRC_URI="${SRC_URI} |
50 | SRC_URI="${SRC_URI} |
| 51 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
51 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
| … | |
… | |
| 68 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
68 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
| 69 | elif [[ ${CATEGORY} = x11-base ]]; then |
69 | elif [[ ${CATEGORY} = x11-base ]]; then |
| 70 | SRC_URI="${SRC_URI} |
70 | SRC_URI="${SRC_URI} |
| 71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
| 72 | fi |
72 | fi |
| 73 | |
|
|
| 74 | # SRC_URI for full releases |
|
|
| 75 | SRC_URI="${SRC_URI} |
|
|
| 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 | |
73 | |
| 83 | SLOT="0" |
74 | SLOT="0" |
| 84 | |
75 | |
| 85 | # Set the license for the package. This can be overridden by setting |
76 | # Set the license for the package. This can be overridden by setting |
| 86 | # LICENSE after the inherit. |
77 | # LICENSE after the inherit. |
| … | |
… | |
| 96 | >=sys-devel/m4-1.4" |
87 | >=sys-devel/m4-1.4" |
| 97 | fi |
88 | fi |
| 98 | |
89 | |
| 99 | # If we're a font package, but not the font.alias one |
90 | # If we're a font package, but not the font.alias one |
| 100 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
91 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
92 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 101 | && [[ "${PN}" != "font-alias" ]] \ |
93 | && [[ "${PN}" != "font-alias" ]] \ |
| 102 | && [[ "${PN}" != "font-util" ]]; then |
94 | && [[ "${PN}" != "font-util" ]]; then |
| 103 | # Activate font code in the rest of the eclass |
95 | # Activate font code in the rest of the eclass |
| 104 | FONT="yes" |
96 | FONT="yes" |
| 105 | |
97 | |
| … | |
… | |
| 156 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
148 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
| 157 | ; then |
149 | ; then |
| 158 | DEBUGGABLE="yes" |
150 | DEBUGGABLE="yes" |
| 159 | IUSE="${IUSE} debug" |
151 | IUSE="${IUSE} debug" |
| 160 | if use debug; then |
152 | if use debug; then |
|
|
153 | if ! has splitdebug ${FEATURES}; then |
| 161 | RESTRICT="${RESTRICT} nostrip" |
154 | RESTRICT="${RESTRICT} nostrip" |
|
|
155 | fi |
| 162 | fi |
156 | fi |
| 163 | fi |
157 | fi |
| 164 | |
158 | |
| 165 | DEPEND="${DEPEND} |
159 | DEPEND="${DEPEND} |
| 166 | >=dev-util/pkgconfig-0.18" |
160 | >=dev-util/pkgconfig-0.18" |
| 167 | |
161 | |
| 168 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 169 | DEPEND="${DEPEND} |
163 | DEPEND="${DEPEND} |
| 170 | >=x11-misc/util-macros-0.99.2" |
164 | >=x11-misc/util-macros-0.99.2 |
|
|
165 | >=sys-devel/binutils-2.16.1-r3" |
| 171 | fi |
166 | fi |
| 172 | |
167 | |
| 173 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 174 | RDEPEND="${RDEPEND} |
168 | RDEPEND="${RDEPEND} |
| 175 | !<=x11-base/xorg-x11-6.9 |
169 | !<=x11-base/xorg-x11-6.9" |
| 176 | >=sys-apps/man-1.6b-r2" |
|
|
| 177 | # Provides virtual/x11 for temporary use until packages are ported |
170 | # Provides virtual/x11 for temporary use until packages are ported |
| 178 | # x11-base/x11-env" |
171 | # x11-base/x11-env" |
|
|
172 | |
|
|
173 | x-modular_specs_check() { |
|
|
174 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
175 | append-ldflags -Wl,-z,lazy |
|
|
176 | # (#116698) breaks loading |
|
|
177 | filter-ldflags -Wl,-z,now |
|
|
178 | fi |
|
|
179 | } |
|
|
180 | |
|
|
181 | x-modular_dri_check() { |
|
|
182 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
183 | # support for it |
|
|
184 | if [[ -n "${DRIVER}" ]]; then |
|
|
185 | if has dri ${IUSE} && use dri; then |
|
|
186 | einfo "Checking for direct rendering capabilities ..." |
|
|
187 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
188 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
189 | fi |
|
|
190 | fi |
|
|
191 | fi |
|
|
192 | } |
|
|
193 | |
|
|
194 | x-modular_server_supports_drivers_check() { |
|
|
195 | # (#135873) Only certain servers will actually use or be capable of |
|
|
196 | # building external drivers, including binary drivers. |
|
|
197 | if [[ -n "${DRIVER}" ]]; then |
|
|
198 | if has_version '>=x11-base/xorg-server-1.1'; then |
|
|
199 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
200 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
201 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
202 | fi |
|
|
203 | fi |
|
|
204 | fi |
|
|
205 | } |
| 179 | |
206 | |
| 180 | x-modular_unpack_source() { |
207 | x-modular_unpack_source() { |
| 181 | unpack ${A} |
208 | unpack ${A} |
| 182 | cd ${S} |
209 | cd ${S} |
| 183 | |
210 | |
| … | |
… | |
| 221 | if [[ "${SNAPSHOT}" = "yes" ]] |
248 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 222 | then |
249 | then |
| 223 | # If possible, generate configure if it doesn't exist |
250 | # If possible, generate configure if it doesn't exist |
| 224 | if [ -f "${S}/configure.ac" ] |
251 | if [ -f "${S}/configure.ac" ] |
| 225 | then |
252 | then |
| 226 | einfo "Running autoreconf..." |
253 | eautoreconf |
| 227 | autoreconf -v --force --install |
|
|
| 228 | fi |
|
|
| 229 | fi |
254 | fi |
|
|
255 | fi |
| 230 | |
256 | |
|
|
257 | # Joshua Baergen - October 23, 2005 |
|
|
258 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
259 | elibtoolize |
| 231 | } |
260 | } |
| 232 | |
261 | |
| 233 | x-modular_src_unpack() { |
262 | x-modular_src_unpack() { |
| 234 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
263 | x-modular_specs_check |
| 235 | if gcc-specs-now; then |
264 | x-modular_server_supports_drivers_check |
| 236 | msg="Do not emerge ${PN} without vanilla gcc!" |
265 | x-modular_dri_check |
| 237 | eerror "$msg" |
|
|
| 238 | die "$msg" |
|
|
| 239 | fi |
|
|
| 240 | fi |
|
|
| 241 | |
|
|
| 242 | x-modular_unpack_source |
266 | x-modular_unpack_source |
| 243 | x-modular_patch_source |
267 | x-modular_patch_source |
| 244 | x-modular_reconf_source |
268 | x-modular_reconf_source |
| 245 | |
|
|
| 246 | # Joshua Baergen - October 23, 2005 |
|
|
| 247 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 248 | elibtoolize |
|
|
| 249 | } |
269 | } |
| 250 | |
270 | |
| 251 | x-modular_font_configure() { |
271 | x-modular_font_configure() { |
| 252 | if [[ -n "${FONT}" ]]; then |
272 | if [[ -n "${FONT}" ]]; then |
| 253 | # Might be worth adding an option to configure your desired font |
273 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 315 | # Shouldn't be necessary in XDIR=/usr |
335 | # Shouldn't be necessary in XDIR=/usr |
| 316 | # einstall forces datadir, so we need to re-force it |
336 | # einstall forces datadir, so we need to re-force it |
| 317 | # datadir=${XDIR}/share \ |
337 | # datadir=${XDIR}/share \ |
| 318 | # mandir=${XDIR}/share/man \ |
338 | # mandir=${XDIR}/share/man \ |
| 319 | |
339 | |
|
|
340 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
341 | dodoc ${S}/ChangeLog |
|
|
342 | fi |
|
|
343 | |
|
|
344 | # Make sure docs get compressed |
|
|
345 | prepalldocs |
|
|
346 | |
| 320 | # Don't install libtool archives for server modules |
347 | # Don't install libtool archives for server modules |
| 321 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
348 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 322 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
349 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 323 | | xargs rm -f |
350 | | xargs rm -f |
|
|
351 | fi |
|
|
352 | |
|
|
353 | # Don't install overlapping fonts.* files |
|
|
354 | # Generate them instead when possible |
|
|
355 | if [[ -n "${FONT}" ]]; then |
|
|
356 | remove_font_metadata |
| 324 | fi |
357 | fi |
| 325 | } |
358 | } |
| 326 | |
359 | |
| 327 | x-modular_pkg_preinst() { |
360 | x-modular_pkg_preinst() { |
| 328 | if [[ -n "${FONT}" ]]; then |
361 | if [[ -n "${FONT}" ]]; then |
| … | |
… | |
| 386 | |
419 | |
| 387 | create_fonts_scale |
420 | create_fonts_scale |
| 388 | create_fonts_dir |
421 | create_fonts_dir |
| 389 | fix_font_permissions |
422 | fix_font_permissions |
| 390 | create_font_cache |
423 | create_font_cache |
|
|
424 | } |
|
|
425 | |
|
|
426 | remove_font_metadata() { |
|
|
427 | local DIR |
|
|
428 | for DIR in ${FONT_DIR}; do |
|
|
429 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
430 | [[ "${DIR}" != "CID" ]] ; then |
|
|
431 | # Delete font metadata files |
|
|
432 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
433 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
434 | fi |
|
|
435 | done |
| 391 | } |
436 | } |
| 392 | |
437 | |
| 393 | discover_font_dirs() { |
438 | discover_font_dirs() { |
| 394 | pushd ${IMAGE}/usr/share/fonts |
439 | pushd ${IMAGE}/usr/share/fonts |
| 395 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
440 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |