| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 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.80 2010/08/13 16:36:10 hwoarang Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.92 2011/08/13 11:31:03 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/" |
| … | |
… | |
| 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_beta*) |
|
|
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_beta*) |
|
|
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 |
| … | |
… | |
| 170 | die "visibility fixing sed failed" |
184 | die "visibility fixing sed failed" |
| 171 | fi |
185 | fi |
| 172 | # fix libx11 dependency on non X packages |
186 | # fix libx11 dependency on non X packages |
| 173 | if version_is_at_least "4.7.0_beta2"; then |
187 | if version_is_at_least "4.7.0_beta2"; then |
| 174 | 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" |
| 175 | hasq ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
189 | has ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
| 176 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
190 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
| 177 | fi |
191 | fi |
| 178 | |
192 | |
| 179 | if use aqua; then |
193 | if use aqua; then |
| 180 | # provide a proper macx-g++-64 |
194 | # provide a proper macx-g++-64 |
| … | |
… | |
| 192 | fi |
206 | fi |
| 193 | |
207 | |
| 194 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
208 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 195 | # qmake bus errors with -O2 but -O3 works |
209 | # qmake bus errors with -O2 but -O3 works |
| 196 | replace-flags -O2 -O3 |
210 | replace-flags -O2 -O3 |
| 197 | fi |
|
|
| 198 | |
|
|
| 199 | if [[ ${CHOST} == arm* ]] ; then |
|
|
| 200 | # Fails on arm with -Os, bug 331641 |
|
|
| 201 | # This can be removed once qt-4.7 is stable or the bug on gcc is fixed |
|
|
| 202 | replace-flags -Os -O2 |
|
|
| 203 | fi |
211 | fi |
| 204 | |
212 | |
| 205 | # Bug 178652 |
213 | # Bug 178652 |
| 206 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
214 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 207 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
215 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| … | |
… | |
| 222 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
230 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 223 | append-flags -mminimal-toc |
231 | append-flags -mminimal-toc |
| 224 | fi |
232 | fi |
| 225 | |
233 | |
| 226 | # Bug 282984 && Bug 295530 |
234 | # Bug 282984 && Bug 295530 |
| 227 | 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:" \ |
| 228 | -i configure || die "sed qmake compilers failed" |
236 | -i configure || die "sed qmake compilers failed" |
| 229 | # bug 321335 |
237 | # bug 321335 |
| 230 | if version_is_at_least 4.6; then |
238 | if version_is_at_least 4.6; then |
| 231 | 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 '{}' \; | \ |
| 232 | xargs -0 \ |
240 | xargs -0 \ |
| 233 | 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" \ |
| 234 | -i || die "sed test compilers failed" |
242 | -i || die "sed test compilers failed" |
| 235 | fi |
243 | fi |
| 236 | |
244 | |
| 237 | # Bug 172219 |
245 | # Bug 172219 |
| 238 | sed -e "s:X11R6/::" \ |
246 | sed -e "s:X11R6/::" \ |
| … | |
… | |
| 287 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
295 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 288 | # don't flirt with non-Prefix stuff, we're quite possessive |
296 | # don't flirt with non-Prefix stuff, we're quite possessive |
| 289 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
297 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 290 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
298 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 291 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
299 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
| 292 | sed -i '/^QMAKE_CFLAGS_\(RELEASE\|DEBUG\)/s:+=.*:+=:' mkspecs/common/g++.conf |
300 | sed -i '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf |
| 293 | |
301 | |
| 294 | base_src_prepare |
302 | base_src_prepare |
| 295 | } |
303 | } |
| 296 | |
304 | |
| 297 | # @FUNCTION: qt4-build_src_configure |
305 | # @FUNCTION: qt4-build_src_configure |
| … | |
… | |
| 335 | # freetype2 include dir is non-standard, thus include it on configure |
343 | # freetype2 include dir is non-standard, thus include it on configure |
| 336 | # use -I from configure |
344 | # use -I from configure |
| 337 | myconf+=" $(pkg-config --cflags freetype2)" |
345 | myconf+=" $(pkg-config --cflags freetype2)" |
| 338 | fi |
346 | fi |
| 339 | |
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 | |
| 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 |
| 346 | # @DESCRIPTION: Actual compile phase |
360 | # @DESCRIPTION: Actual compile phase |
| 347 | qt4-build_src_compile() { |
361 | qt4-build_src_compile() { |
| … | |
… | |
| 491 | -nomake examples -nomake demos" |
505 | -nomake examples -nomake demos" |
| 492 | |
506 | |
| 493 | echo "${myconf}" |
507 | echo "${myconf}" |
| 494 | } |
508 | } |
| 495 | |
509 | |
| 496 | # @FUNCTION: build_directories |
510 | # @FUNCTION: prepare_directories |
| 497 | # @USAGE: < directories > |
511 | # @USAGE: < directories > |
| 498 | # @DESCRIPTION: |
512 | # @DESCRIPTION: |
| 499 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
513 | # Generates makefiles for the directories set in $QT4_TARGET_DIRECTORIES |
| 500 | build_directories() { |
514 | prepare_directories() { |
| 501 | for x in "$@"; do |
515 | for x in "$@"; do |
| 502 | pushd "${S}"/${x} >/dev/null |
516 | pushd "${S}"/${x} >/dev/null |
|
|
517 | einfo "running qmake in: $x" |
| 503 | # avoid running over the maximum argument number, bug #299810 |
518 | # avoid running over the maximum argument number, bug #299810 |
| 504 | { |
519 | { |
| 505 | echo "${S}"/mkspecs/common/*.conf |
520 | echo "${S}"/mkspecs/common/*.conf |
| 506 | find "${S}" -name '*.pr[io]' |
521 | find "${S}" -name '*.pr[io]' |
| 507 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
522 | } | 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" |
523 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
|
|
524 | popd >/dev/null |
|
|
525 | done |
|
|
526 | } |
|
|
527 | |
|
|
528 | |
|
|
529 | # @FUNCTION: build_directories |
|
|
530 | # @USAGE: < directories > |
|
|
531 | # @DESCRIPTION: |
|
|
532 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
|
|
533 | build_directories() { |
|
|
534 | for x in "$@"; do |
|
|
535 | pushd "${S}"/${x} >/dev/null |
| 509 | emake CC="$(tc-getCC)" \ |
536 | emake CC="$(tc-getCC)" \ |
| 510 | CXX="$(tc-getCXX)" \ |
537 | CXX="$(tc-getCXX)" \ |
| 511 | LINK="$(tc-getCXX)" || die "emake failed" |
538 | LINK="$(tc-getCXX)" || die "emake failed" |
| 512 | popd >/dev/null |
539 | popd >/dev/null |
| 513 | done |
540 | done |
| … | |
… | |
| 584 | |
611 | |
| 585 | # generate list of QT_CONFIG entries from the existing list |
612 | # generate list of QT_CONFIG entries from the existing list |
| 586 | # including qconfig_add and excluding qconfig_remove |
613 | # including qconfig_add and excluding qconfig_remove |
| 587 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
614 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
| 588 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
615 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
| 589 | hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
616 | has ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
| 590 | done |
617 | done |
| 591 | |
618 | |
| 592 | # replace the existing QT_CONFIG list with qconfig_new |
619 | # replace the existing QT_CONFIG list with qconfig_new |
| 593 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
620 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
| 594 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
621 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |