| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2011 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/qt4-build.eclass,v 1.89 2011/03/03 21:39:29 wired Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.93 2011/08/22 04:46:32 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-build.eclass |
5 | # @ECLASS: qt4-build.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Ben de Groot <yngwin@gentoo.org>, |
7 | # Ben de Groot <yngwin@gentoo.org>, |
| 8 | # Markos Chandras <hwoarang@gentoo.org>, |
8 | # Markos Chandras <hwoarang@gentoo.org>, |
| … | |
… | |
| 135 | # @FUNCTION: qt4-build_src_unpack |
135 | # @FUNCTION: qt4-build_src_unpack |
| 136 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 137 | # Unpacks the sources |
137 | # Unpacks the sources |
| 138 | qt4-build_src_unpack() { |
138 | qt4-build_src_unpack() { |
| 139 | setqtenv |
139 | setqtenv |
|
|
140 | local unpack_p="${MY_P}" |
|
|
141 | case "${PV}" in |
|
|
142 | 4.8.0_beta*) |
|
|
143 | unpack_p="qt-everywhere-opensource-src-${PV/_*}" |
|
|
144 | ;; |
|
|
145 | esac |
| 140 | local target targets= |
146 | local target targets= |
| 141 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
147 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 142 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
148 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 143 | ${QT4_EXTRACT_DIRECTORIES}; do |
149 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 144 | targets+=" ${MY_P}/${target}" |
150 | targets+=" ${unpack_p}/${target}" |
| 145 | done |
151 | done |
| 146 | |
152 | |
| 147 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
153 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 148 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
154 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
|
|
155 | case "${PV}" in |
|
|
156 | 4.8.0_beta*) |
|
|
157 | mv ${WORKDIR}/qt-everywhere-opensource-src-${PV/_*} \ |
|
|
158 | ${WORKDIR}/qt-everywhere-opensource-src-${MY_PV} |
|
|
159 | ;; |
|
|
160 | esac |
| 149 | } |
161 | } |
| 150 | |
162 | |
| 151 | # @ECLASS-VARIABLE: PATCHES |
163 | # @ECLASS-VARIABLE: PATCHES |
| 152 | # @DESCRIPTION: |
164 | # @DESCRIPTION: |
| 153 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
165 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
| … | |
… | |
| 172 | die "visibility fixing sed failed" |
184 | die "visibility fixing sed failed" |
| 173 | fi |
185 | fi |
| 174 | # fix libx11 dependency on non X packages |
186 | # fix libx11 dependency on non X packages |
| 175 | if version_is_at_least "4.7.0_beta2"; then |
187 | if version_is_at_least "4.7.0_beta2"; then |
| 176 | local NOLIBX11PKG="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
188 | local NOLIBX11PKG="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
| 177 | hasq ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
189 | has ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
| 178 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
190 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
| 179 | fi |
191 | fi |
| 180 | |
192 | |
| 181 | if use aqua; then |
193 | if use aqua; then |
| 182 | # provide a proper macx-g++-64 |
194 | # provide a proper macx-g++-64 |
| … | |
… | |
| 338 | [[ ${PV} == "4.7.1" ]] && myconf+=" -no-sse4.1 -no-sse4.2" |
350 | [[ ${PV} == "4.7.1" ]] && myconf+=" -no-sse4.1 -no-sse4.2" |
| 339 | |
351 | |
| 340 | echo ./configure ${myconf} |
352 | echo ./configure ${myconf} |
| 341 | ./configure ${myconf} || die "./configure failed" |
353 | ./configure ${myconf} || die "./configure failed" |
| 342 | myconf="" |
354 | myconf="" |
|
|
355 | |
|
|
356 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
| 343 | } |
357 | } |
| 344 | |
358 | |
| 345 | # @FUNCTION: qt4-build_src_compile |
359 | # @FUNCTION: qt4-build_src_compile |
|
|
360 | # @DESCRIPTION: |
| 346 | # @DESCRIPTION: Actual compile phase |
361 | # Actual compile phase |
| 347 | qt4-build_src_compile() { |
362 | qt4-build_src_compile() { |
| 348 | setqtenv |
363 | setqtenv |
| 349 | |
364 | |
| 350 | build_directories ${QT4_TARGET_DIRECTORIES} |
365 | build_directories ${QT4_TARGET_DIRECTORIES} |
| 351 | } |
366 | } |
| … | |
… | |
| 394 | install_directories ${QT4_TARGET_DIRECTORIES} |
409 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 395 | install_qconfigs |
410 | install_qconfigs |
| 396 | fix_library_files |
411 | fix_library_files |
| 397 | fix_includes |
412 | fix_includes |
| 398 | # remove .la files since we are building only shared Qt libraries |
413 | # remove .la files since we are building only shared Qt libraries |
| 399 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
414 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
| 400 | } |
415 | } |
| 401 | |
416 | |
| 402 | # @FUNCTION: setqtenv |
417 | # @FUNCTION: setqtenv |
| 403 | setqtenv() { |
418 | setqtenv() { |
| 404 | # Set up installation directories |
419 | # Set up installation directories |
| … | |
… | |
| 491 | -nomake examples -nomake demos" |
506 | -nomake examples -nomake demos" |
| 492 | |
507 | |
| 493 | echo "${myconf}" |
508 | echo "${myconf}" |
| 494 | } |
509 | } |
| 495 | |
510 | |
| 496 | # @FUNCTION: build_directories |
511 | # @FUNCTION: prepare_directories |
| 497 | # @USAGE: < directories > |
512 | # @USAGE: < directories > |
| 498 | # @DESCRIPTION: |
513 | # @DESCRIPTION: |
| 499 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
514 | # Generates makefiles for the directories set in $QT4_TARGET_DIRECTORIES |
| 500 | build_directories() { |
515 | prepare_directories() { |
| 501 | for x in "$@"; do |
516 | for x in "$@"; do |
| 502 | pushd "${S}"/${x} >/dev/null |
517 | pushd "${S}"/${x} >/dev/null |
|
|
518 | einfo "running qmake in: $x" |
| 503 | # avoid running over the maximum argument number, bug #299810 |
519 | # avoid running over the maximum argument number, bug #299810 |
| 504 | { |
520 | { |
| 505 | echo "${S}"/mkspecs/common/*.conf |
521 | echo "${S}"/mkspecs/common/*.conf |
| 506 | find "${S}" -name '*.pr[io]' |
522 | find "${S}" -name '*.pr[io]' |
| 507 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
523 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
| 508 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
524 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
|
|
525 | popd >/dev/null |
|
|
526 | done |
|
|
527 | } |
|
|
528 | |
|
|
529 | |
|
|
530 | # @FUNCTION: build_directories |
|
|
531 | # @USAGE: < directories > |
|
|
532 | # @DESCRIPTION: |
|
|
533 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
|
|
534 | build_directories() { |
|
|
535 | for x in "$@"; do |
|
|
536 | pushd "${S}"/${x} >/dev/null |
| 509 | emake CC="$(tc-getCC)" \ |
537 | emake CC="$(tc-getCC)" \ |
| 510 | CXX="$(tc-getCXX)" \ |
538 | CXX="$(tc-getCXX)" \ |
| 511 | LINK="$(tc-getCXX)" || die "emake failed" |
539 | LINK="$(tc-getCXX)" || die "emake failed" |
| 512 | popd >/dev/null |
540 | popd >/dev/null |
| 513 | done |
541 | done |
| … | |
… | |
| 539 | # @DESCRIPTION: |
567 | # @DESCRIPTION: |
| 540 | # List variables that should be defined at the top of QtCore/qconfig.h |
568 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 541 | : ${QCONFIG_DEFINE:=} |
569 | : ${QCONFIG_DEFINE:=} |
| 542 | |
570 | |
| 543 | # @FUNCTION: install_qconfigs |
571 | # @FUNCTION: install_qconfigs |
|
|
572 | # @DESCRIPTION: |
| 544 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
573 | # Install gentoo-specific mkspecs configurations |
| 545 | install_qconfigs() { |
574 | install_qconfigs() { |
| 546 | local x |
575 | local x |
| 547 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
576 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 548 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
577 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 549 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
578 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 560 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
589 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 561 | fi |
590 | fi |
| 562 | } |
591 | } |
| 563 | |
592 | |
| 564 | # @FUNCTION: generate_qconfigs |
593 | # @FUNCTION: generate_qconfigs |
|
|
594 | # @DESCRIPTION: |
| 565 | # @DESCRIPTION: Generates gentoo-specific configurations |
595 | # Generates gentoo-specific configurations |
| 566 | generate_qconfigs() { |
596 | generate_qconfigs() { |
| 567 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
597 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 568 | local x qconfig_add qconfig_remove qconfig_new |
598 | local x qconfig_add qconfig_remove qconfig_new |
| 569 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
599 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 570 | [[ -f ${x} ]] || continue |
600 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 584 | |
614 | |
| 585 | # generate list of QT_CONFIG entries from the existing list |
615 | # generate list of QT_CONFIG entries from the existing list |
| 586 | # including qconfig_add and excluding qconfig_remove |
616 | # including qconfig_add and excluding qconfig_remove |
| 587 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
617 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
| 588 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
618 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
| 589 | hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
619 | has ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
| 590 | done |
620 | done |
| 591 | |
621 | |
| 592 | # replace the existing QT_CONFIG list with qconfig_new |
622 | # replace the existing QT_CONFIG list with qconfig_new |
| 593 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
623 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
| 594 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
624 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
| … | |
… | |
| 618 | fi |
648 | fi |
| 619 | fi |
649 | fi |
| 620 | } |
650 | } |
| 621 | |
651 | |
| 622 | # @FUNCTION: qt4-build_pkg_postrm |
652 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
653 | # @DESCRIPTION: |
| 623 | # @DESCRIPTION: Generate configurations when the package is completely removed |
654 | # Generate configurations when the package is completely removed |
| 624 | qt4-build_pkg_postrm() { |
655 | qt4-build_pkg_postrm() { |
| 625 | generate_qconfigs |
656 | generate_qconfigs |
| 626 | } |
657 | } |
| 627 | |
658 | |
| 628 | # @FUNCTION: qt4-build_pkg_postinst |
659 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
660 | # @DESCRIPTION: |
| 629 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
661 | # Generate configuration, plus throws a message about possible |
| 630 | # breakages and proposed solutions. |
662 | # breakages and proposed solutions. |
| 631 | qt4-build_pkg_postinst() { |
663 | qt4-build_pkg_postinst() { |
| 632 | generate_qconfigs |
664 | generate_qconfigs |
| 633 | } |
665 | } |
| 634 | |
666 | |