| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 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/xorg-2.eclass,v 1.22 2011/01/15 17:55:21 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.30 2011/03/16 09:29:42 scarabeus Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: xorg-2.eclass |
5 | # @ECLASS: xorg-2.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # x11@gentoo.org |
7 | # x11@gentoo.org |
| 8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
| … | |
… | |
| 22 | |
22 | |
| 23 | GIT_ECLASS="" |
23 | GIT_ECLASS="" |
| 24 | if [[ ${PV} == *9999* ]]; then |
24 | if [[ ${PV} == *9999* ]]; then |
| 25 | GIT_ECLASS="git" |
25 | GIT_ECLASS="git" |
| 26 | XORG_EAUTORECONF="yes" |
26 | XORG_EAUTORECONF="yes" |
| 27 | SRC_URI="" |
|
|
| 28 | fi |
27 | fi |
| 29 | |
28 | |
| 30 | # If we're a font package, but not the font.alias one |
29 | # If we're a font package, but not the font.alias one |
| 31 | FONT_ECLASS="" |
30 | FONT_ECLASS="" |
| 32 | if [[ ${PN} == font* \ |
31 | if [[ ${PN} == font* \ |
| … | |
… | |
| 36 | # Activate font code in the rest of the eclass |
35 | # Activate font code in the rest of the eclass |
| 37 | FONT="yes" |
36 | FONT="yes" |
| 38 | FONT_ECLASS="font" |
37 | FONT_ECLASS="font" |
| 39 | fi |
38 | fi |
| 40 | |
39 | |
| 41 | inherit eutils base libtool multilib toolchain-funcs flag-o-matic autotools \ |
40 | inherit autotools-utils eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
| 42 | ${FONT_ECLASS} ${GIT_ECLASS} |
41 | ${FONT_ECLASS} ${GIT_ECLASS} |
| 43 | |
42 | |
| 44 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm" |
43 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm" |
| 45 | case "${EAPI:-0}" in |
44 | case "${EAPI:-0}" in |
| 46 | 3|4) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
45 | 3|4) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
| … | |
… | |
| 57 | # @DESCRIPTION: |
56 | # @DESCRIPTION: |
| 58 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
57 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
| 59 | # before inheriting this eclass. |
58 | # before inheriting this eclass. |
| 60 | : ${XORG_EAUTORECONF:="no"} |
59 | : ${XORG_EAUTORECONF:="no"} |
| 61 | |
60 | |
|
|
61 | # @ECLASS-VARIABLE: BASE_INDIVIDUAL_URI |
|
|
62 | # @DESCRIPTION: |
| 62 | # Set up SRC_URI for individual modular releases |
63 | # Set up SRC_URI for individual modular releases. If set to an empty |
|
|
64 | # string, no SRC_URI will be provided by the eclass. |
| 63 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
65 | : ${BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual"} |
|
|
66 | |
| 64 | # @ECLASS-VARIABLE: MODULE |
67 | # @ECLASS-VARIABLE: MODULE |
| 65 | # @DESCRIPTION: |
68 | # @DESCRIPTION: |
| 66 | # The subdirectory to download source from. Possible settings are app, |
69 | # The subdirectory to download source from. Possible settings are app, |
| 67 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
70 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
| 68 | # inherit to override the default autoconfigured module. |
71 | # inherit to override the default autoconfigured module. |
| 69 | if [[ -z ${MODULE} ]]; then |
72 | if [[ -z ${MODULE} ]]; then |
| 70 | case ${CATEGORY} in |
73 | case ${CATEGORY} in |
| 71 | app-doc) MODULE="doc" ;; |
74 | app-doc) MODULE=doc/ ;; |
| 72 | media-fonts) MODULE="font" ;; |
75 | media-fonts) MODULE=font/ ;; |
| 73 | x11-apps|x11-wm) MODULE="app" ;; |
76 | x11-apps|x11-wm) MODULE=app/ ;; |
| 74 | x11-misc|x11-themes) MODULE="util" ;; |
77 | x11-misc|x11-themes) MODULE=util/ ;; |
| 75 | x11-drivers) MODULE="driver" ;; |
|
|
| 76 | x11-base) MODULE="xserver" ;; |
78 | x11-base) MODULE=xserver/ ;; |
|
|
79 | x11-drivers) MODULE=driver/ ;; |
| 77 | x11-proto) MODULE="proto" ;; |
80 | x11-proto) MODULE=proto/ ;; |
| 78 | x11-libs) MODULE="lib" ;; |
81 | x11-libs) MODULE=lib/ ;; |
| 79 | *) MODULE="" ;; |
82 | *) MODULE= ;; |
| 80 | esac |
83 | esac |
| 81 | fi |
84 | fi |
| 82 | |
85 | |
| 83 | # @ECLASS-VARIABLE: PACKAGE_NAME |
86 | # @ECLASS-VARIABLE: PACKAGE_NAME |
| 84 | # @DESCRIPTION: |
87 | # @DESCRIPTION: |
| 85 | # For git checkout the git repository migth differ from package name. |
88 | # For git checkout the git repository might differ from package name. |
| 86 | # This variable can be used for proper directory specification |
89 | # This variable can be used for proper directory specification |
| 87 | : ${PACKAGE_NAME:=${PN}} |
90 | : ${PACKAGE_NAME:=${PN}} |
| 88 | |
91 | |
| 89 | if [[ -n ${GIT_ECLASS} ]]; then |
92 | if [[ -n ${GIT_ECLASS} ]]; then |
| 90 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PACKAGE_NAME}" |
93 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}${PACKAGE_NAME}" |
| 91 | else |
94 | elif [[ -n ${BASE_INDIVIDUAL_URI} ]]; then |
| 92 | SRC_URI+=" ${BASE_INDIVIDUAL_URI}/${MODULE}/${P}.tar.bz2" |
95 | SRC_URI="${BASE_INDIVIDUAL_URI}/${MODULE}${P}.tar.bz2" |
| 93 | fi |
96 | fi |
| 94 | |
97 | |
| 95 | : ${SLOT:=0} |
98 | : ${SLOT:=0} |
| 96 | |
99 | |
| 97 | # Set the license for the package. This can be overridden by setting |
100 | # Set the license for the package. This can be overridden by setting |
| … | |
… | |
| 104 | XORG_EAUTORECONF_ARCHES="x86-interix ppc-aix x86-winnt" |
107 | XORG_EAUTORECONF_ARCHES="x86-interix ppc-aix x86-winnt" |
| 105 | EAUTORECONF_DEPEND+=" |
108 | EAUTORECONF_DEPEND+=" |
| 106 | >=sys-devel/libtool-2.2.6a |
109 | >=sys-devel/libtool-2.2.6a |
| 107 | sys-devel/m4" |
110 | sys-devel/m4" |
| 108 | if [[ ${PN} != util-macros ]] ; then |
111 | if [[ ${PN} != util-macros ]] ; then |
| 109 | EAUTORECONF_DEPEND+=" >=x11-misc/util-macros-1.11.0" |
112 | EAUTORECONF_DEPEND+=" >=x11-misc/util-macros-1.12.0" |
| 110 | # Required even by xorg-server |
113 | # Required even by xorg-server |
| 111 | [[ ${PN} == "font-util" ]] || EAUTORECONF_DEPEND+=" >=media-fonts/font-util-1.1.1-r1" |
114 | [[ ${PN} == "font-util" ]] || EAUTORECONF_DEPEND+=" >=media-fonts/font-util-1.1.1-r1" |
| 112 | fi |
115 | fi |
| 113 | WANT_AUTOCONF="latest" |
116 | WANT_AUTOCONF="latest" |
| 114 | WANT_AUTOMAKE="latest" |
117 | WANT_AUTOMAKE="latest" |
| … | |
… | |
| 172 | IUSE+=" static-libs" |
175 | IUSE+=" static-libs" |
| 173 | fi |
176 | fi |
| 174 | |
177 | |
| 175 | DEPEND+=" >=dev-util/pkgconfig-0.23" |
178 | DEPEND+=" >=dev-util/pkgconfig-0.23" |
| 176 | |
179 | |
| 177 | # Check deps on xorg-server |
180 | # Check deps on drivers |
| 178 | has dri ${IUSE//+} && DEPEND+=" dri? ( >=x11-base/xorg-server-1.6.3.901-r2[-minimal] )" |
181 | if has dri ${IUSE//+}; then |
| 179 | [[ -n "${DRIVER}" ]] && DEPEND+=" x11-base/xorg-server[xorg]" |
182 | COMMON_DEPEND+=" dri? ( |
|
|
183 | x11-base/xorg-server[-minimal] |
|
|
184 | x11-libs/libdrm |
|
|
185 | )" |
|
|
186 | DEPEND+=" dri? ( |
|
|
187 | x11-proto/xf86driproto |
|
|
188 | x11-proto/glproto |
|
|
189 | x11-proto/dri2proto |
|
|
190 | )" |
|
|
191 | fi |
|
|
192 | if [[ -n "${DRIVER}" ]]; then |
|
|
193 | COMMON_DEPEND+=" |
|
|
194 | x11-base/xorg-server[xorg] |
|
|
195 | " |
|
|
196 | fi |
|
|
197 | if [[ -n "${DRIVER}" && ${PN} == xf86-video-* ]]; then |
|
|
198 | COMMON_DEPEND+=" |
|
|
199 | x11-libs/libpciaccess |
|
|
200 | " |
|
|
201 | # we also needs some protos and libs in all cases |
|
|
202 | DEPEND+=" |
|
|
203 | x11-proto/fontsproto |
|
|
204 | x11-proto/randrproto |
|
|
205 | x11-proto/renderproto |
|
|
206 | x11-proto/videoproto |
|
|
207 | x11-proto/xextproto |
|
|
208 | x11-proto/xineramaproto |
|
|
209 | x11-proto/xproto |
|
|
210 | " |
|
|
211 | fi |
|
|
212 | |
|
|
213 | # Add deps on documentation |
|
|
214 | # Most docbooks use dtd version 4.2 and 4.3 add more when found |
|
|
215 | if has doc ${IUSE//+}; then |
|
|
216 | DEPEND+=" |
|
|
217 | doc? ( |
|
|
218 | app-text/asciidoc |
|
|
219 | app-text/xmlto |
|
|
220 | app-doc/doxygen |
|
|
221 | app-text/docbook-xml-dtd:4.1 |
|
|
222 | app-text/docbook-xml-dtd:4.2 |
|
|
223 | app-text/docbook-xml-dtd:4.3 |
|
|
224 | ) |
|
|
225 | " |
|
|
226 | fi |
|
|
227 | |
|
|
228 | DEPEND+=" ${COMMON_DEPEND}" |
|
|
229 | RDEPEND+=" ${COMMON_DEPEND}" |
|
|
230 | unset COMMON_DEPEND |
|
|
231 | |
|
|
232 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND=${DEPEND}" |
|
|
233 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND=${RDEPEND}" |
| 180 | |
234 | |
| 181 | # @FUNCTION: xorg-2_pkg_setup |
235 | # @FUNCTION: xorg-2_pkg_setup |
| 182 | # @DESCRIPTION: |
236 | # @DESCRIPTION: |
| 183 | # Setup prefix compat |
237 | # Setup prefix compat |
| 184 | xorg-2_pkg_setup() { |
238 | xorg-2_pkg_setup() { |
| … | |
… | |
| 212 | # Patch directory is ${WORKDIR}/patch |
266 | # Patch directory is ${WORKDIR}/patch |
| 213 | # See epatch() in eutils.eclass for more documentation |
267 | # See epatch() in eutils.eclass for more documentation |
| 214 | EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch} |
268 | EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch} |
| 215 | |
269 | |
| 216 | [[ -d "${EPATCH_SOURCE}" ]] && epatch |
270 | [[ -d "${EPATCH_SOURCE}" ]] && epatch |
| 217 | base_src_prepare "$@" |
271 | autotools-utils_src_prepare "$@" |
| 218 | } |
272 | } |
| 219 | |
273 | |
| 220 | # @FUNCTION: xorg-2_reconf_source |
274 | # @FUNCTION: xorg-2_reconf_source |
| 221 | # @DESCRIPTION: |
275 | # @DESCRIPTION: |
| 222 | # Run eautoreconf if necessary, and run elibtoolize. |
276 | # Run eautoreconf if necessary, and run elibtoolize. |
| … | |
… | |
| 251 | # If a font package, perform any necessary configuration steps |
305 | # If a font package, perform any necessary configuration steps |
| 252 | xorg-2_font_configure() { |
306 | xorg-2_font_configure() { |
| 253 | debug-print-function ${FUNCNAME} "$@" |
307 | debug-print-function ${FUNCNAME} "$@" |
| 254 | |
308 | |
| 255 | if has nls ${IUSE//+} && ! use nls; then |
309 | if has nls ${IUSE//+} && ! use nls; then |
|
|
310 | if grep -q -s "disable-all-encodings" ${ECONF_SOURCE:-.}/configure; then |
| 256 | FONT_OPTIONS+=" |
311 | FONT_OPTIONS+=" |
|
|
312 | --disable-all-encodings" |
|
|
313 | else |
|
|
314 | FONT_OPTIONS+=" |
| 257 | --disable-iso8859-2 |
315 | --disable-iso8859-2 |
| 258 | --disable-iso8859-3 |
316 | --disable-iso8859-3 |
| 259 | --disable-iso8859-4 |
317 | --disable-iso8859-4 |
| 260 | --disable-iso8859-5 |
318 | --disable-iso8859-5 |
| 261 | --disable-iso8859-6 |
319 | --disable-iso8859-6 |
| 262 | --disable-iso8859-7 |
320 | --disable-iso8859-7 |
| 263 | --disable-iso8859-8 |
321 | --disable-iso8859-8 |
| 264 | --disable-iso8859-9 |
322 | --disable-iso8859-9 |
| 265 | --disable-iso8859-10 |
323 | --disable-iso8859-10 |
| 266 | --disable-iso8859-11 |
324 | --disable-iso8859-11 |
| 267 | --disable-iso8859-12 |
325 | --disable-iso8859-12 |
| 268 | --disable-iso8859-13 |
326 | --disable-iso8859-13 |
| 269 | --disable-iso8859-14 |
327 | --disable-iso8859-14 |
| 270 | --disable-iso8859-15 |
328 | --disable-iso8859-15 |
| 271 | --disable-iso8859-16 |
329 | --disable-iso8859-16 |
| 272 | --disable-jisx0201 |
330 | --disable-jisx0201 |
| 273 | --disable-koi8-r" |
331 | --disable-koi8-r" |
|
|
332 | fi |
| 274 | fi |
333 | fi |
| 275 | } |
334 | } |
| 276 | |
335 | |
| 277 | # @FUNCTION: xorg-2_flags_setup |
336 | # @FUNCTION: xorg-2_flags_setup |
| 278 | # @DESCRIPTION: |
337 | # @DESCRIPTION: |
| … | |
… | |
| 296 | # @FUNCTION: xorg-2_src_configure |
355 | # @FUNCTION: xorg-2_src_configure |
| 297 | # @DESCRIPTION: |
356 | # @DESCRIPTION: |
| 298 | # Perform any necessary pre-configuration steps, then run configure |
357 | # Perform any necessary pre-configuration steps, then run configure |
| 299 | xorg-2_src_configure() { |
358 | xorg-2_src_configure() { |
| 300 | debug-print-function ${FUNCNAME} "$@" |
359 | debug-print-function ${FUNCNAME} "$@" |
| 301 | local myopts="" |
|
|
| 302 | |
360 | |
| 303 | xorg-2_flags_setup |
361 | xorg-2_flags_setup |
| 304 | [[ -n "${FONT}" ]] && xorg-2_font_configure |
|
|
| 305 | |
362 | |
| 306 | # @VARIABLE: CONFIGURE_OPTIONS |
363 | # @VARIABLE: CONFIGURE_OPTIONS |
| 307 | # @DESCRIPTION: |
364 | # @DESCRIPTION: |
| 308 | # Any options to pass to configure |
365 | # Any options to pass to configure |
| 309 | # @DEFAULT_UNSET |
366 | # @DEFAULT_UNSET |
| 310 | CONFIGURE_OPTIONS=${CONFIGURE_OPTIONS:=""} |
367 | CONFIGURE_OPTIONS=${CONFIGURE_OPTIONS:=""} |
| 311 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
368 | |
| 312 | if has static-libs ${IUSE//+}; then |
369 | [[ -n "${FONT}" ]] && xorg-2_font_configure |
| 313 | myopts+=" $(use_enable static-libs static)" |
370 | local myeconfargs=( |
| 314 | fi |
|
|
| 315 | econf \ |
|
|
| 316 | --disable-dependency-tracking \ |
371 | --disable-dependency-tracking |
| 317 | ${FONT_OPTIONS} \ |
|
|
| 318 | ${CONFIGURE_OPTIONS} \ |
372 | ${CONFIGURE_OPTIONS} |
| 319 | ${myopts} |
373 | ${FONT_OPTIONS} |
| 320 | fi |
374 | ) |
|
|
375 | |
|
|
376 | autotools-utils_src_configure "$@" |
| 321 | } |
377 | } |
| 322 | |
378 | |
| 323 | # @FUNCTION: xorg-2_src_compile |
379 | # @FUNCTION: xorg-2_src_compile |
| 324 | # @DESCRIPTION: |
380 | # @DESCRIPTION: |
| 325 | # Compile a package, performing all X-related tasks. |
381 | # Compile a package, performing all X-related tasks. |
| 326 | xorg-2_src_compile() { |
382 | xorg-2_src_compile() { |
| 327 | debug-print-function ${FUNCNAME} "$@" |
383 | debug-print-function ${FUNCNAME} "$@" |
| 328 | |
384 | |
| 329 | base_src_compile "$@" |
385 | autotools-utils_src_compile "$@" |
| 330 | } |
386 | } |
| 331 | |
387 | |
| 332 | # @FUNCTION: xorg-2_src_install |
388 | # @FUNCTION: xorg-2_src_install |
| 333 | # @DESCRIPTION: |
389 | # @DESCRIPTION: |
| 334 | # Install a built package to ${D}, performing any necessary steps. |
390 | # Install a built package to ${D}, performing any necessary steps. |
| 335 | # Creates a ChangeLog from git if using live ebuilds. |
391 | # Creates a ChangeLog from git if using live ebuilds. |
| 336 | xorg-2_src_install() { |
392 | xorg-2_src_install() { |
| 337 | debug-print-function ${FUNCNAME} "$@" |
393 | debug-print-function ${FUNCNAME} "$@" |
| 338 | |
394 | |
| 339 | if [[ ${CATEGORY} == x11-proto ]]; then |
395 | if [[ ${CATEGORY} == x11-proto ]]; then |
| 340 | emake \ |
396 | autotools-utils_src_install \ |
| 341 | ${PN/proto/}docdir=${EPREFIX}/usr/share/doc/${PF} \ |
397 | ${PN/proto/}docdir="${EPREFIX}/usr/share/doc/${PF}" \ |
| 342 | docdir=${EPREFIX}/usr/share/doc/${PF} \ |
398 | docdir="${EPREFIX}/usr/share/doc/${PF}" |
| 343 | DESTDIR="${D}" \ |
|
|
| 344 | install || die "emake install failed" |
|
|
| 345 | else |
399 | else |
| 346 | emake \ |
400 | autotools-utils_src_install \ |
| 347 | docdir=${EPREFIX}/usr/share/doc/${PF} \ |
401 | docdir="${EPREFIX}/usr/share/doc/${PF}" |
| 348 | DESTDIR="${D}" \ |
|
|
| 349 | install || die "emake install failed" |
|
|
| 350 | fi |
402 | fi |
| 351 | |
403 | |
| 352 | if [[ -n ${GIT_ECLASS} ]]; then |
404 | if [[ -n ${GIT_ECLASS} ]]; then |
| 353 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" > /dev/null |
405 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" > /dev/null |
| 354 | git log ${EGIT_COMMIT} > "${S}"/ChangeLog |
406 | git log ${EGIT_COMMIT} > "${S}"/ChangeLog |
| … | |
… | |
| 356 | fi |
408 | fi |
| 357 | |
409 | |
| 358 | if [[ -e "${S}"/ChangeLog ]]; then |
410 | if [[ -e "${S}"/ChangeLog ]]; then |
| 359 | dodoc "${S}"/ChangeLog || die "dodoc failed" |
411 | dodoc "${S}"/ChangeLog || die "dodoc failed" |
| 360 | fi |
412 | fi |
| 361 | # @VARIABLE: DOCS |
|
|
| 362 | # @DESCRIPTION: |
|
|
| 363 | # Any documentation to install |
|
|
| 364 | # @DEFAULT_UNSET |
|
|
| 365 | if [[ -n ${DOCS} ]]; then |
|
|
| 366 | dodoc ${DOCS} || die "dodoc failed" |
|
|
| 367 | fi |
|
|
| 368 | |
413 | |
| 369 | # Don't install libtool archives for server modules |
414 | # Don't install libtool archives (even with static-libs) |
| 370 | if [[ -e "${D%/}${EPREFIX}/usr/$(get_libdir)/xorg/modules" ]]; then |
415 | remove_libtool_files all |
| 371 | find "${D%/}${EPREFIX}/usr/$(get_libdir)/xorg/modules" -name '*.la' \ |
|
|
| 372 | -exec rm -f {} ';' |
|
|
| 373 | fi |
|
|
| 374 | |
416 | |
| 375 | [[ -n ${FONT} ]] && remove_font_metadata |
417 | [[ -n ${FONT} ]] && remove_font_metadata |
| 376 | } |
418 | } |
| 377 | |
419 | |
| 378 | # @FUNCTION: xorg-2_pkg_postinst |
420 | # @FUNCTION: xorg-2_pkg_postinst |