| 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.73 2010/05/27 21:27:31 spatz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.95 2011/10/16 09:59:39 hwoarang 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>, |
| … | |
… | |
| 15 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
15 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
| 16 | |
16 | |
| 17 | MY_PV=${PV/_/-} |
17 | MY_PV=${PV/_/-} |
| 18 | if version_is_at_least 4.5.99999999; then |
18 | if version_is_at_least 4.5.99999999; then |
| 19 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
19 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
| 20 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && IUSE="+exceptions" |
20 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && |
|
|
21 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
|
|
22 | IUSE="+exceptions" |
| 21 | else |
23 | else |
| 22 | MY_P=qt-x11-opensource-src-${MY_PV} |
24 | MY_P=qt-x11-opensource-src-${MY_PV} |
| 23 | fi |
25 | fi |
| 24 | |
26 | |
| 25 | HOMEPAGE="http://qt.nokia.com/" |
27 | HOMEPAGE="http://qt.nokia.com/" |
| … | |
… | |
| 81 | fi |
83 | fi |
| 82 | fi |
84 | fi |
| 83 | |
85 | |
| 84 | if [[ "${PN}" == "qt-webkit" ]]; then |
86 | if [[ "${PN}" == "qt-webkit" ]]; then |
| 85 | eshopts_push -s extglob |
87 | eshopts_push -s extglob |
| 86 | if is-flagq '-g?(gdb)?([0-9])'; then |
88 | if is-flagq '-g?(gdb)?([1-9])'; then |
| 87 | echo |
89 | echo |
| 88 | ewarn "You have enabled debug info (probably have -g or -ggdb in your \$C{,XX}FLAGS)." |
90 | ewarn "You have enabled debug info (probably have -g or -ggdb in your \$C{,XX}FLAGS)." |
| 89 | ewarn "You may experience really long compilation times and/or increased memory usage." |
91 | ewarn "You may experience really long compilation times and/or increased memory usage." |
| 90 | ewarn "If compilation fails, please try removing -g{,gdb} before reporting a bug." |
92 | ewarn "If compilation fails, please try removing -g{,gdb} before reporting a bug." |
| 91 | ewarn "For more info check out bug #307861" |
93 | ewarn "For more info check out bug #307861" |
| … | |
… | |
| 133 | # @FUNCTION: qt4-build_src_unpack |
135 | # @FUNCTION: qt4-build_src_unpack |
| 134 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 135 | # Unpacks the sources |
137 | # Unpacks the sources |
| 136 | qt4-build_src_unpack() { |
138 | qt4-build_src_unpack() { |
| 137 | setqtenv |
139 | setqtenv |
|
|
140 | local unpack_p="${MY_P}" |
|
|
141 | case "${PV}" in |
|
|
142 | 4.8.0_*) |
|
|
143 | unpack_p="qt-everywhere-opensource-src-${PV/_*}" |
|
|
144 | ;; |
|
|
145 | esac |
| 138 | local target targets= |
146 | local target targets= |
| 139 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
147 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 140 | 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 \ |
| 141 | ${QT4_EXTRACT_DIRECTORIES}; do |
149 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 142 | targets+=" ${MY_P}/${target}" |
150 | targets+=" ${unpack_p}/${target}" |
| 143 | done |
151 | done |
| 144 | |
152 | |
| 145 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
153 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 146 | 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_*) |
|
|
157 | mv ${WORKDIR}/qt-everywhere-opensource-src-${PV/_*} \ |
|
|
158 | ${WORKDIR}/qt-everywhere-opensource-src-${MY_PV} |
|
|
159 | ;; |
|
|
160 | esac |
| 147 | } |
161 | } |
| 148 | |
162 | |
| 149 | # @ECLASS-VARIABLE: PATCHES |
163 | # @ECLASS-VARIABLE: PATCHES |
| 150 | # @DESCRIPTION: |
164 | # @DESCRIPTION: |
| 151 | # 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 |
| … | |
… | |
| 166 | # fix qt 4.7 regression that skips -fvisibility=hidden |
180 | # fix qt 4.7 regression that skips -fvisibility=hidden |
| 167 | if version_is_at_least "4.7.0_beta1"; then |
181 | if version_is_at_least "4.7.0_beta1"; then |
| 168 | sed -e "s/^gcc|g++)/*gcc|*g++)/" \ |
182 | sed -e "s/^gcc|g++)/*gcc|*g++)/" \ |
| 169 | -i config.tests/unix/fvisibility.test || |
183 | -i config.tests/unix/fvisibility.test || |
| 170 | die "visibility fixing sed failed" |
184 | die "visibility fixing sed failed" |
|
|
185 | fi |
|
|
186 | # fix libx11 dependency on non X packages |
|
|
187 | if version_is_at_least "4.7.0_beta2"; then |
|
|
188 | local NOLIBX11PKG="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
|
|
189 | has ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
|
|
190 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
| 171 | fi |
191 | fi |
| 172 | |
192 | |
| 173 | if use aqua; then |
193 | if use aqua; then |
| 174 | # provide a proper macx-g++-64 |
194 | # provide a proper macx-g++-64 |
| 175 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
195 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| … | |
… | |
| 210 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
230 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 211 | append-flags -mminimal-toc |
231 | append-flags -mminimal-toc |
| 212 | fi |
232 | fi |
| 213 | |
233 | |
| 214 | # Bug 282984 && Bug 295530 |
234 | # Bug 282984 && Bug 295530 |
| 215 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=$(tc-getCC)\nCXX=$(tc-getCXX)\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
235 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=\"$(tc-getCC)\"\nCXX=\"$(tc-getCXX)\"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
| 216 | -i configure || die "sed qmake compilers failed" |
236 | -i configure || die "sed qmake compilers failed" |
| 217 | # bug 321335 |
237 | # bug 321335 |
|
|
238 | if version_is_at_least 4.6; then |
| 218 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
239 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
| 219 | xargs -0 \ |
240 | xargs -0 \ |
| 220 | sed -e "s:\(\$MAKE\):\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX) LINK=$(tc-getCXX):g" \ |
241 | sed -e "s:\(\$MAKE\):\1 CC=\"$(tc-getCC)\" CXX=\"$(tc-getCXX)\" LD=\"$(tc-getCXX)\" LINK=\"$(tc-getCXX)\":g" \ |
| 221 | -i || die "sed test compilers failed" |
242 | -i || die "sed test compilers failed" |
|
|
243 | fi |
| 222 | |
244 | |
| 223 | # Bug 172219 |
245 | # Bug 172219 |
| 224 | sed -e "s:X11R6/::" \ |
246 | sed -e "s:X11R6/::" \ |
| 225 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
247 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
| 226 | |
248 | |
| … | |
… | |
| 272 | # use GCC over SunStudio |
294 | # use GCC over SunStudio |
| 273 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
295 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 274 | # don't flirt with non-Prefix stuff, we're quite possessive |
296 | # don't flirt with non-Prefix stuff, we're quite possessive |
| 275 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
297 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 276 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
298 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
|
|
299 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
|
|
300 | sed -i '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf |
| 277 | |
301 | |
| 278 | base_src_prepare |
302 | base_src_prepare |
| 279 | } |
303 | } |
| 280 | |
304 | |
| 281 | # @FUNCTION: qt4-build_src_configure |
305 | # @FUNCTION: qt4-build_src_configure |
| … | |
… | |
| 319 | # freetype2 include dir is non-standard, thus include it on configure |
343 | # freetype2 include dir is non-standard, thus include it on configure |
| 320 | # use -I from configure |
344 | # use -I from configure |
| 321 | myconf+=" $(pkg-config --cflags freetype2)" |
345 | myconf+=" $(pkg-config --cflags freetype2)" |
| 322 | fi |
346 | fi |
| 323 | |
347 | |
|
|
348 | # Disable SSE4.x, since auto-detection is currently broken |
|
|
349 | # Upstream bug http://bugreports.qt.nokia.com/browse/QTBUG-13623 |
|
|
350 | [[ ${PV} == "4.7.1" ]] && myconf+=" -no-sse4.1 -no-sse4.2" |
|
|
351 | |
| 324 | echo ./configure ${myconf} |
352 | echo ./configure ${myconf} |
| 325 | ./configure ${myconf} || die "./configure failed" |
353 | ./configure ${myconf} || die "./configure failed" |
| 326 | myconf="" |
354 | myconf="" |
|
|
355 | |
|
|
356 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
| 327 | } |
357 | } |
| 328 | |
358 | |
| 329 | # @FUNCTION: qt4-build_src_compile |
359 | # @FUNCTION: qt4-build_src_compile |
|
|
360 | # @DESCRIPTION: |
| 330 | # @DESCRIPTION: Actual compile phase |
361 | # Actual compile phase |
| 331 | qt4-build_src_compile() { |
362 | qt4-build_src_compile() { |
| 332 | setqtenv |
363 | setqtenv |
| 333 | |
364 | |
| 334 | build_directories ${QT4_TARGET_DIRECTORIES} |
365 | build_directories ${QT4_TARGET_DIRECTORIES} |
|
|
366 | } |
|
|
367 | |
|
|
368 | # @FUNCTION: qt4-build_src_test |
|
|
369 | # @DESCRIPTION: |
|
|
370 | # Runs tests only in target directories. |
|
|
371 | qt4-build_src_test() { |
|
|
372 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
|
|
373 | emake -j1 check -C ${dir} |
|
|
374 | done |
| 335 | } |
375 | } |
| 336 | |
376 | |
| 337 | # @FUNCTION: fix_includes |
377 | # @FUNCTION: fix_includes |
| 338 | # @DESCRIPTION: |
378 | # @DESCRIPTION: |
| 339 | # For MacOSX we need to add some symlinks when frameworks are |
379 | # For MacOSX we need to add some symlinks when frameworks are |
| … | |
… | |
| 368 | setqtenv |
408 | setqtenv |
| 369 | install_directories ${QT4_TARGET_DIRECTORIES} |
409 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 370 | install_qconfigs |
410 | install_qconfigs |
| 371 | fix_library_files |
411 | fix_library_files |
| 372 | fix_includes |
412 | fix_includes |
|
|
413 | # remove .la files since we are building only shared Qt libraries |
|
|
414 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
| 373 | } |
415 | } |
| 374 | |
416 | |
| 375 | # @FUNCTION: setqtenv |
417 | # @FUNCTION: setqtenv |
| 376 | setqtenv() { |
418 | setqtenv() { |
| 377 | # Set up installation directories |
419 | # Set up installation directories |
| … | |
… | |
| 464 | -nomake examples -nomake demos" |
506 | -nomake examples -nomake demos" |
| 465 | |
507 | |
| 466 | echo "${myconf}" |
508 | echo "${myconf}" |
| 467 | } |
509 | } |
| 468 | |
510 | |
| 469 | # @FUNCTION: build_directories |
511 | # @FUNCTION: prepare_directories |
| 470 | # @USAGE: < directories > |
512 | # @USAGE: < directories > |
| 471 | # @DESCRIPTION: |
513 | # @DESCRIPTION: |
| 472 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
514 | # Generates makefiles for the directories set in $QT4_TARGET_DIRECTORIES |
| 473 | build_directories() { |
515 | prepare_directories() { |
| 474 | for x in "$@"; do |
516 | for x in "$@"; do |
| 475 | pushd "${S}"/${x} >/dev/null |
517 | pushd "${S}"/${x} >/dev/null |
|
|
518 | einfo "running qmake in: $x" |
| 476 | # avoid running over the maximum argument number, bug #299810 |
519 | # avoid running over the maximum argument number, bug #299810 |
| 477 | { |
520 | { |
| 478 | echo "${S}"/mkspecs/common/*.conf |
521 | echo "${S}"/mkspecs/common/*.conf |
| 479 | find "${S}" -name '*.pr[io]' |
522 | find "${S}" -name '*.pr[io]' |
| 480 | } | 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 |
| 481 | "${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 |
| 482 | emake CC="$(tc-getCC)" \ |
537 | emake CC="$(tc-getCC)" \ |
| 483 | CXX="$(tc-getCXX)" \ |
538 | CXX="$(tc-getCXX)" \ |
| 484 | LINK="$(tc-getCXX)" || die "emake failed" |
539 | LINK="$(tc-getCXX)" || die "emake failed" |
| 485 | popd >/dev/null |
540 | popd >/dev/null |
| 486 | done |
541 | done |
| … | |
… | |
| 512 | # @DESCRIPTION: |
567 | # @DESCRIPTION: |
| 513 | # 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 |
| 514 | : ${QCONFIG_DEFINE:=} |
569 | : ${QCONFIG_DEFINE:=} |
| 515 | |
570 | |
| 516 | # @FUNCTION: install_qconfigs |
571 | # @FUNCTION: install_qconfigs |
|
|
572 | # @DESCRIPTION: |
| 517 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
573 | # Install gentoo-specific mkspecs configurations |
| 518 | install_qconfigs() { |
574 | install_qconfigs() { |
| 519 | local x |
575 | local x |
| 520 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
576 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 521 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
577 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 522 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
578 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 533 | 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" |
| 534 | fi |
590 | fi |
| 535 | } |
591 | } |
| 536 | |
592 | |
| 537 | # @FUNCTION: generate_qconfigs |
593 | # @FUNCTION: generate_qconfigs |
|
|
594 | # @DESCRIPTION: |
| 538 | # @DESCRIPTION: Generates gentoo-specific configurations |
595 | # Generates gentoo-specific configurations |
| 539 | generate_qconfigs() { |
596 | generate_qconfigs() { |
| 540 | 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 |
| 541 | local x qconfig_add qconfig_remove qconfig_new |
598 | local x qconfig_add qconfig_remove qconfig_new |
| 542 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
599 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 543 | [[ -f ${x} ]] || continue |
600 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 557 | |
614 | |
| 558 | # generate list of QT_CONFIG entries from the existing list |
615 | # generate list of QT_CONFIG entries from the existing list |
| 559 | # including qconfig_add and excluding qconfig_remove |
616 | # including qconfig_add and excluding qconfig_remove |
| 560 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
617 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
| 561 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
618 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
| 562 | hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
619 | has ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
| 563 | done |
620 | done |
| 564 | |
621 | |
| 565 | # replace the existing QT_CONFIG list with qconfig_new |
622 | # replace the existing QT_CONFIG list with qconfig_new |
| 566 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
623 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
| 567 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
624 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
| … | |
… | |
| 591 | fi |
648 | fi |
| 592 | fi |
649 | fi |
| 593 | } |
650 | } |
| 594 | |
651 | |
| 595 | # @FUNCTION: qt4-build_pkg_postrm |
652 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
653 | # @DESCRIPTION: |
| 596 | # @DESCRIPTION: Generate configurations when the package is completely removed |
654 | # Generate configurations when the package is completely removed |
| 597 | qt4-build_pkg_postrm() { |
655 | qt4-build_pkg_postrm() { |
| 598 | generate_qconfigs |
656 | generate_qconfigs |
| 599 | } |
657 | } |
| 600 | |
658 | |
| 601 | # @FUNCTION: qt4-build_pkg_postinst |
659 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
660 | # @DESCRIPTION: |
| 602 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
661 | # Generate configuration, plus throws a message about possible |
| 603 | # breakages and proposed solutions. |
662 | # breakages and proposed solutions. |
| 604 | qt4-build_pkg_postinst() { |
663 | qt4-build_pkg_postinst() { |
| 605 | generate_qconfigs |
664 | generate_qconfigs |
| 606 | } |
665 | } |
| 607 | |
666 | |
| … | |
… | |
| 736 | fi |
795 | fi |
| 737 | |
796 | |
| 738 | echo "${spec}" |
797 | echo "${spec}" |
| 739 | } |
798 | } |
| 740 | |
799 | |
|
|
800 | # @FUNCTION: qt_assistant_cleanup |
|
|
801 | # @RETURN: nothing |
|
|
802 | # @DESCRIPTION: |
|
|
803 | # Tries to clean up tools.pro for qt-assistant ebuilds |
|
|
804 | # Meant to be called in src_prepare |
|
|
805 | qt_assistant_cleanup() { |
|
|
806 | # different versions (and branches...) may need different handling, |
|
|
807 | # add a case if you need special handling |
|
|
808 | case "${MY_PV_EXTRA}" in |
|
|
809 | *kde-qt*) |
|
|
810 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
811 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
812 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
813 | ;; |
|
|
814 | *) |
|
|
815 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
816 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
817 | -e "s/^\([ \t]*pixeltool\) /\1 qdoc3 /" \ |
|
|
818 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
819 | ;; |
|
|
820 | esac |
|
|
821 | } |
|
|
822 | |
|
|
823 | # @FUNCTION: qt_nolibx11 |
|
|
824 | # @RETURN: nothing |
|
|
825 | # @DESCRIPTION: |
|
|
826 | # Ignore X11 tests for packages that don't need X libraries installed |
|
|
827 | qt_nolibx11() { |
|
|
828 | einfo "removing X11 check to allow X-less compilation" |
|
|
829 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
|
|
830 | die "x11 check sed failed" |
|
|
831 | } |
|
|
832 | |
| 741 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst |
833 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |