| 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.32 2005/12/12 01:56:08 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.59 2006/05/16 06:23:43 exg 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. |
| … | |
… | |
| 19 | # |
19 | # |
| 20 | # If you're creating a font package and the suffix of PN is not equal to the |
20 | # If you're creating a font package and the suffix of PN is not equal to the |
| 21 | # subdirectory of /usr/share/fonts/ it should install into, set FONT_DIR to that |
21 | # subdirectory of /usr/share/fonts/ it should install into, set FONT_DIR to that |
| 22 | # directory or directories. |
22 | # directory or directories. |
| 23 | # |
23 | # |
|
|
24 | # IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit. |
|
|
25 | # |
| 24 | # Pretty much everything else should be automatic. |
26 | # Pretty much everything else should be automatic. |
| 25 | |
27 | |
| 26 | 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 |
| 27 | |
29 | |
| 28 | inherit eutils libtool toolchain-funcs |
30 | inherit eutils libtool toolchain-funcs flag-o-matic autotools |
| 29 | |
31 | |
| 30 | # Directory prefix to use for everything |
32 | # Directory prefix to use for everything |
| 31 | XDIR="/usr" |
33 | XDIR="/usr" |
| 32 | |
34 | |
| 33 | # Set up default patchset version(s) if necessary |
35 | # Set up default patchset version(s) if necessary |
| … | |
… | |
| 36 | XDPVER="1" |
38 | XDPVER="1" |
| 37 | fi |
39 | fi |
| 38 | |
40 | |
| 39 | IUSE="" |
41 | IUSE="" |
| 40 | HOMEPAGE="http://xorg.freedesktop.org/" |
42 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 41 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
43 | |
| 42 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
44 | # Set up SRC_URI for individual modular releases |
| 43 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 44 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
46 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
| 45 | LICENSE="X11" |
47 | SRC_URI="${SRC_URI} |
|
|
48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
|
|
49 | elif [[ ${CATEGORY} = app-doc ]]; then |
|
|
50 | SRC_URI="${SRC_URI} |
|
|
51 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
|
|
52 | # x11-misc contains data and util, x11-themes contains data |
|
|
53 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
|
|
54 | SRC_URI="${SRC_URI} |
|
|
55 | ${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2 |
|
|
56 | ${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2" |
|
|
57 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
|
|
58 | SRC_URI="${SRC_URI} |
|
|
59 | ${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2" |
|
|
60 | elif [[ ${CATEGORY} = media-fonts ]]; then |
|
|
61 | SRC_URI="${SRC_URI} |
|
|
62 | ${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2" |
|
|
63 | elif [[ ${CATEGORY} = x11-libs ]]; then |
|
|
64 | SRC_URI="${SRC_URI} |
|
|
65 | ${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2" |
|
|
66 | elif [[ ${CATEGORY} = x11-proto ]]; then |
|
|
67 | SRC_URI="${SRC_URI} |
|
|
68 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
|
|
69 | elif [[ ${CATEGORY} = x11-base ]]; then |
|
|
70 | SRC_URI="${SRC_URI} |
|
|
71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
|
|
72 | fi |
|
|
73 | |
| 46 | SLOT="0" |
74 | SLOT="0" |
|
|
75 | |
|
|
76 | # Set the license for the package. This can be overridden by setting |
|
|
77 | # LICENSE after the inherit. |
|
|
78 | LICENSE=${PN} |
| 47 | |
79 | |
| 48 | # Set up shared dependencies |
80 | # Set up shared dependencies |
| 49 | if [[ -n "${SNAPSHOT}" ]]; then |
81 | if [[ -n "${SNAPSHOT}" ]]; then |
| 50 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
82 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 51 | DEPEND="${DEPEND} |
83 | DEPEND="${DEPEND} |
| … | |
… | |
| 55 | >=sys-devel/m4-1.4" |
87 | >=sys-devel/m4-1.4" |
| 56 | fi |
88 | fi |
| 57 | |
89 | |
| 58 | # 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 |
| 59 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
91 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
92 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 60 | && [[ "${PN}" != "font-alias" ]] \ |
93 | && [[ "${PN}" != "font-alias" ]] \ |
| 61 | && [[ "${PN}" != "font-util" ]]; then |
94 | && [[ "${PN}" != "font-util" ]]; then |
| 62 | # Activate font code in the rest of the eclass |
95 | # Activate font code in the rest of the eclass |
| 63 | FONT="yes" |
96 | FONT="yes" |
| 64 | |
97 | |
| 65 | RDEPEND="${RDEPEND} |
98 | RDEPEND="${RDEPEND} |
| 66 | media-fonts/encodings" |
99 | media-fonts/encodings |
| 67 | DEPEND="${DEPEND} |
|
|
| 68 | x11-apps/mkfontscale |
100 | x11-apps/mkfontscale |
| 69 | x11-apps/mkfontdir" |
101 | x11-apps/mkfontdir" |
| 70 | PDEPEND="${PDEPEND} |
102 | PDEPEND="${PDEPEND} |
| 71 | media-fonts/font-alias" |
103 | media-fonts/font-alias" |
| 72 | |
104 | |
| … | |
… | |
| 95 | fi |
127 | fi |
| 96 | fi |
128 | fi |
| 97 | |
129 | |
| 98 | # If we're a driver package |
130 | # If we're a driver package |
| 99 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
131 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 100 | # Don't build static driver modules |
|
|
| 101 | DRIVER_OPTIONS="--disable-static" |
|
|
| 102 | |
|
|
| 103 | # Enable driver code in the rest of the eclass |
132 | # Enable driver code in the rest of the eclass |
| 104 | DRIVER="yes" |
133 | DRIVER="yes" |
| 105 | |
134 | |
| 106 | # Add driver patchset to SRC_URI |
135 | # Add driver patchset to SRC_URI |
| 107 | SRC_URI="${SRC_URI} |
136 | SRC_URI="${SRC_URI} |
| 108 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
137 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
| 109 | fi |
138 | fi |
| 110 | |
139 | |
|
|
140 | # Debugging -- ignore packages that can't be built with debugging |
|
|
141 | if [[ -z "${FONT}" ]] \ |
|
|
142 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
|
|
143 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
|
|
144 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
|
|
145 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
|
|
146 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
|
|
147 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
|
|
148 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
|
|
149 | ; then |
|
|
150 | DEBUGGABLE="yes" |
|
|
151 | IUSE="${IUSE} debug" |
|
|
152 | if use debug; then |
|
|
153 | if ! has splitdebug ${FEATURES}; then |
|
|
154 | RESTRICT="${RESTRICT} nostrip" |
|
|
155 | fi |
|
|
156 | fi |
|
|
157 | fi |
|
|
158 | |
| 111 | DEPEND="${DEPEND} |
159 | DEPEND="${DEPEND} |
| 112 | >=dev-util/pkgconfig-0.18 |
160 | >=dev-util/pkgconfig-0.18" |
|
|
161 | |
|
|
162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
163 | DEPEND="${DEPEND} |
| 113 | >=x11-misc/util-macros-0.99.2" |
164 | >=x11-misc/util-macros-0.99.2" |
|
|
165 | fi |
| 114 | |
166 | |
| 115 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 116 | RDEPEND="${RDEPEND} |
167 | RDEPEND="${RDEPEND} |
| 117 | !<=x11-base/xorg-x11-6.9 |
168 | !<=x11-base/xorg-x11-6.9" |
| 118 | >=sys-apps/man-1.6b-r2" |
|
|
| 119 | # Provides virtual/x11 for temporary use until packages are ported |
169 | # Provides virtual/x11 for temporary use until packages are ported |
| 120 | # x11-base/x11-env" |
170 | # x11-base/x11-env" |
|
|
171 | |
|
|
172 | x-modular_specs_check() { |
|
|
173 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
174 | if gcc-specs-now; then |
|
|
175 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
|
|
176 | eerror "$msg" |
|
|
177 | die "$msg" |
|
|
178 | fi |
|
|
179 | |
|
|
180 | # (#116698) breaks loading |
|
|
181 | filter-ldflags -Wl,-z,now |
|
|
182 | fi |
|
|
183 | } |
|
|
184 | |
|
|
185 | x-modular_dri_check() { |
|
|
186 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
187 | # support for it |
|
|
188 | if [[ -n "${DRIVER}" ]]; then |
|
|
189 | if has dri ${IUSE} && use dri; then |
|
|
190 | einfo "Checking for direct rendering capabilities ..." |
|
|
191 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
192 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
193 | fi |
|
|
194 | fi |
|
|
195 | fi |
|
|
196 | } |
| 121 | |
197 | |
| 122 | x-modular_unpack_source() { |
198 | x-modular_unpack_source() { |
| 123 | unpack ${A} |
199 | unpack ${A} |
| 124 | cd ${S} |
200 | cd ${S} |
| 125 | |
201 | |
| … | |
… | |
| 163 | if [[ "${SNAPSHOT}" = "yes" ]] |
239 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 164 | then |
240 | then |
| 165 | # If possible, generate configure if it doesn't exist |
241 | # If possible, generate configure if it doesn't exist |
| 166 | if [ -f "${S}/configure.ac" ] |
242 | if [ -f "${S}/configure.ac" ] |
| 167 | then |
243 | then |
| 168 | einfo "Running autoreconf..." |
244 | eautoreconf |
| 169 | autoreconf -v --force --install |
|
|
| 170 | fi |
|
|
| 171 | fi |
245 | fi |
|
|
246 | fi |
| 172 | |
247 | |
|
|
248 | # Joshua Baergen - October 23, 2005 |
|
|
249 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
250 | elibtoolize |
| 173 | } |
251 | } |
| 174 | |
252 | |
| 175 | x-modular_src_unpack() { |
253 | x-modular_src_unpack() { |
| 176 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
254 | x-modular_specs_check |
| 177 | if gcc-specs-now; then |
255 | x-modular_dri_check |
| 178 | msg="Do not emerge ${PN} without vanilla gcc!" |
|
|
| 179 | eerror "$msg" |
|
|
| 180 | die "$msg" |
|
|
| 181 | fi |
|
|
| 182 | fi |
|
|
| 183 | |
|
|
| 184 | x-modular_unpack_source |
256 | x-modular_unpack_source |
| 185 | x-modular_patch_source |
257 | x-modular_patch_source |
| 186 | x-modular_reconf_source |
258 | x-modular_reconf_source |
| 187 | |
|
|
| 188 | # Joshua Baergen - October 23, 2005 |
|
|
| 189 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 190 | elibtoolize |
|
|
| 191 | } |
259 | } |
| 192 | |
260 | |
| 193 | x-modular_font_configure() { |
261 | x-modular_font_configure() { |
| 194 | if [[ -n "${FONT}" ]]; then |
262 | if [[ -n "${FONT}" ]]; then |
| 195 | # Might be worth adding an option to configure your desired font |
263 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 215 | --disable-koi8-r" |
283 | --disable-koi8-r" |
| 216 | fi |
284 | fi |
| 217 | fi |
285 | fi |
| 218 | } |
286 | } |
| 219 | |
287 | |
|
|
288 | x-modular_debug_setup() { |
|
|
289 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
290 | if use debug; then |
|
|
291 | strip-flags |
|
|
292 | append-flags -g |
|
|
293 | fi |
|
|
294 | fi |
|
|
295 | } |
|
|
296 | |
| 220 | x-modular_src_configure() { |
297 | x-modular_src_configure() { |
| 221 | x-modular_font_configure |
298 | x-modular_font_configure |
|
|
299 | x-modular_debug_setup |
| 222 | |
300 | |
| 223 | # If prefix isn't set here, .pc files cause problems |
301 | # If prefix isn't set here, .pc files cause problems |
| 224 | if [[ -x ./configure ]]; then |
302 | if [[ -x ./configure ]]; then |
| 225 | econf --prefix=${XDIR} \ |
303 | econf --prefix=${XDIR} \ |
| 226 | --datadir=${XDIR}/share \ |
304 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 247 | # Shouldn't be necessary in XDIR=/usr |
325 | # Shouldn't be necessary in XDIR=/usr |
| 248 | # einstall forces datadir, so we need to re-force it |
326 | # einstall forces datadir, so we need to re-force it |
| 249 | # datadir=${XDIR}/share \ |
327 | # datadir=${XDIR}/share \ |
| 250 | # mandir=${XDIR}/share/man \ |
328 | # mandir=${XDIR}/share/man \ |
| 251 | |
329 | |
|
|
330 | # Make sure docs get compressed |
|
|
331 | prepalldocs |
|
|
332 | |
| 252 | # Don't install libtool archives for server modules |
333 | # Don't install libtool archives for server modules |
| 253 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
334 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
| 254 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
335 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
| 255 | | xargs rm -f |
336 | | xargs rm -f |
|
|
337 | fi |
|
|
338 | |
|
|
339 | # Don't install overlapping fonts.* files |
|
|
340 | # Generate them instead when possible |
|
|
341 | if [[ -n "${FONT}" ]]; then |
|
|
342 | remove_font_metadata |
| 256 | fi |
343 | fi |
| 257 | } |
344 | } |
| 258 | |
345 | |
| 259 | x-modular_pkg_preinst() { |
346 | x-modular_pkg_preinst() { |
| 260 | if [[ -n "${FONT}" ]]; then |
347 | if [[ -n "${FONT}" ]]; then |
| … | |
… | |
| 318 | |
405 | |
| 319 | create_fonts_scale |
406 | create_fonts_scale |
| 320 | create_fonts_dir |
407 | create_fonts_dir |
| 321 | fix_font_permissions |
408 | fix_font_permissions |
| 322 | create_font_cache |
409 | create_font_cache |
|
|
410 | } |
|
|
411 | |
|
|
412 | remove_font_metadata() { |
|
|
413 | local DIR |
|
|
414 | for DIR in ${FONT_DIR}; do |
|
|
415 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
416 | [[ "${DIR}" != "CID" ]] ; then |
|
|
417 | # Delete font metadata files |
|
|
418 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
419 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
420 | fi |
|
|
421 | done |
| 323 | } |
422 | } |
| 324 | |
423 | |
| 325 | discover_font_dirs() { |
424 | discover_font_dirs() { |
| 326 | pushd ${IMAGE}/usr/share/fonts |
425 | pushd ${IMAGE}/usr/share/fonts |
| 327 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
426 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |