| 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.66 2010/03/24 14:36:28 yngwin Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.86 2010/11/13 20:30:26 wired 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/" |
| 26 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
28 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
| 27 | |
29 | |
| 28 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
30 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
31 | IUSE+=" debug" |
|
|
32 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
| 29 | IUSE+=" debug pch aqua" |
33 | IUSE+=" pch aqua" |
| 30 | |
34 | |
| 31 | RDEPEND=" |
35 | RDEPEND=" |
| 32 | !<x11-libs/qt-assistant-${PV} |
36 | !<x11-libs/qt-assistant-${PV} |
| 33 | !>x11-libs/qt-assistant-${PV}-r9999 |
37 | !>x11-libs/qt-assistant-${PV}-r9999 |
| 34 | !<x11-libs/qt-core-${PV} |
38 | !<x11-libs/qt-core-${PV} |
| … | |
… | |
| 79 | else |
83 | else |
| 80 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
84 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
| 81 | fi |
85 | fi |
| 82 | fi |
86 | fi |
| 83 | |
87 | |
|
|
88 | if [[ "${PN}" == "qt-webkit" ]]; then |
|
|
89 | eshopts_push -s extglob |
|
|
90 | if is-flagq '-g?(gdb)?([1-9])'; then |
|
|
91 | echo |
|
|
92 | ewarn "You have enabled debug info (probably have -g or -ggdb in your \$C{,XX}FLAGS)." |
|
|
93 | ewarn "You may experience really long compilation times and/or increased memory usage." |
|
|
94 | ewarn "If compilation fails, please try removing -g{,gdb} before reporting a bug." |
|
|
95 | ewarn "For more info check out bug #307861" |
|
|
96 | echo |
|
|
97 | fi |
|
|
98 | eshopts_pop |
|
|
99 | fi |
|
|
100 | |
| 84 | PATH="${S}/bin${PATH:+:}${PATH}" |
101 | PATH="${S}/bin${PATH:+:}${PATH}" |
| 85 | if [[ ${CHOST} != *-darwin* ]]; then |
102 | if [[ ${CHOST} != *-darwin* ]]; then |
| 86 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
103 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
| 87 | else |
104 | else |
| 88 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
105 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
| … | |
… | |
| 127 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
144 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 128 | ${QT4_EXTRACT_DIRECTORIES}; do |
145 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 129 | targets+=" ${MY_P}/${target}" |
146 | targets+=" ${MY_P}/${target}" |
| 130 | done |
147 | done |
| 131 | |
148 | |
| 132 | echo tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
149 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 133 | tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
150 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
| 134 | } |
151 | } |
| 135 | |
152 | |
| 136 | # @ECLASS-VARIABLE: PATCHES |
153 | # @ECLASS-VARIABLE: PATCHES |
| 137 | # @DESCRIPTION: |
154 | # @DESCRIPTION: |
| 138 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
155 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
| … | |
… | |
| 147 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
164 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
| 148 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
165 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
| 149 | qt4-build_src_prepare() { |
166 | qt4-build_src_prepare() { |
| 150 | setqtenv |
167 | setqtenv |
| 151 | cd "${S}" |
168 | cd "${S}" |
|
|
169 | |
|
|
170 | # fix qt 4.7 regression that skips -fvisibility=hidden |
|
|
171 | if version_is_at_least "4.7.0_beta1"; then |
|
|
172 | sed -e "s/^gcc|g++)/*gcc|*g++)/" \ |
|
|
173 | -i config.tests/unix/fvisibility.test || |
|
|
174 | die "visibility fixing sed failed" |
|
|
175 | fi |
|
|
176 | # fix libx11 dependency on non X packages |
|
|
177 | if version_is_at_least "4.7.0_beta2"; then |
|
|
178 | local NOLIBX11PKG="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
|
|
179 | hasq ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
|
|
180 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
|
|
181 | fi |
| 152 | |
182 | |
| 153 | if use aqua; then |
183 | if use aqua; then |
| 154 | # provide a proper macx-g++-64 |
184 | # provide a proper macx-g++-64 |
| 155 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
185 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| 156 | |
186 | |
| … | |
… | |
| 167 | |
197 | |
| 168 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
198 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 169 | # qmake bus errors with -O2 but -O3 works |
199 | # qmake bus errors with -O2 but -O3 works |
| 170 | replace-flags -O2 -O3 |
200 | replace-flags -O2 -O3 |
| 171 | fi |
201 | fi |
| 172 | |
|
|
| 173 | # Bug 282984 && Bug 295530 |
|
|
| 174 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=$(tc-getCC)\nCXX=$(tc-getCXX)\n\1:" \ |
|
|
| 175 | -i configure || die "sed qmake compilers failed" |
|
|
| 176 | sed -e "s:\(\$MAKE\):\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX):" \ |
|
|
| 177 | -i config.tests/unix/compile.test || die "sed test compilers failed" |
|
|
| 178 | |
202 | |
| 179 | # Bug 178652 |
203 | # Bug 178652 |
| 180 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
204 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 181 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
205 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 182 | append-flags -fno-gcse |
206 | append-flags -fno-gcse |
| … | |
… | |
| 195 | if use ppc64; then |
219 | if use ppc64; then |
| 196 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
220 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 197 | append-flags -mminimal-toc |
221 | append-flags -mminimal-toc |
| 198 | fi |
222 | fi |
| 199 | |
223 | |
|
|
224 | # Bug 282984 && Bug 295530 |
|
|
225 | sed -e "s:\(^SYSTEM_VARIABLES\):CC="$(tc-getCC)"\nCXX="$(tc-getCXX)"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
|
|
226 | -i configure || die "sed qmake compilers failed" |
|
|
227 | # bug 321335 |
|
|
228 | if version_is_at_least 4.6; then |
|
|
229 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
|
|
230 | xargs -0 \ |
|
|
231 | sed -e "s:\(\$MAKE\):\1 CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getCXX)" LINK="$(tc-getCXX)":g" \ |
|
|
232 | -i || die "sed test compilers failed" |
|
|
233 | fi |
|
|
234 | |
| 200 | # Bug 172219 |
235 | # Bug 172219 |
| 201 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 202 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 203 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 204 | -e "s:X11R6/::" \ |
236 | sed -e "s:X11R6/::" \ |
| 205 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
237 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
| 206 | |
238 | |
| 207 | if [[ ${CHOST} != *-darwin* ]]; then |
239 | if [[ ${CHOST} == *-darwin* ]]; then |
| 208 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 209 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 210 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 211 | -i mkspecs/common/g++.conf || die "sed mkspecs/common/g++.conf failed" |
|
|
| 212 | else |
|
|
| 213 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
240 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 214 | # crippled (by design) :/ |
241 | # crippled (by design) :/ |
| 215 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
242 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 216 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
243 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 217 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
244 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
| … | |
… | |
| 257 | # use GCC over SunStudio |
284 | # use GCC over SunStudio |
| 258 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
285 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 259 | # don't flirt with non-Prefix stuff, we're quite possessive |
286 | # don't flirt with non-Prefix stuff, we're quite possessive |
| 260 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
287 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 261 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
288 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
|
|
289 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
|
|
290 | sed -i '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf |
| 262 | |
291 | |
| 263 | base_src_prepare |
292 | base_src_prepare |
| 264 | } |
293 | } |
| 265 | |
294 | |
| 266 | # @FUNCTION: qt4-build_src_configure |
295 | # @FUNCTION: qt4-build_src_configure |
| … | |
… | |
| 304 | # freetype2 include dir is non-standard, thus include it on configure |
333 | # freetype2 include dir is non-standard, thus include it on configure |
| 305 | # use -I from configure |
334 | # use -I from configure |
| 306 | myconf+=" $(pkg-config --cflags freetype2)" |
335 | myconf+=" $(pkg-config --cflags freetype2)" |
| 307 | fi |
336 | fi |
| 308 | |
337 | |
|
|
338 | # Disable SSE4.x, since auto-detection is currently broken |
|
|
339 | # Upstream bug http://bugreports.qt.nokia.com/browse/QTBUG-13623 |
|
|
340 | if version_is_at_least 4.7.1; then |
|
|
341 | myconf+=" -no-sse4.1 -no-sse4.2" |
|
|
342 | fi |
|
|
343 | |
| 309 | echo ./configure ${myconf} |
344 | echo ./configure ${myconf} |
| 310 | ./configure ${myconf} || die "./configure failed" |
345 | ./configure ${myconf} || die "./configure failed" |
| 311 | myconf="" |
346 | myconf="" |
| 312 | } |
347 | } |
| 313 | |
348 | |
| … | |
… | |
| 315 | # @DESCRIPTION: Actual compile phase |
350 | # @DESCRIPTION: Actual compile phase |
| 316 | qt4-build_src_compile() { |
351 | qt4-build_src_compile() { |
| 317 | setqtenv |
352 | setqtenv |
| 318 | |
353 | |
| 319 | build_directories ${QT4_TARGET_DIRECTORIES} |
354 | build_directories ${QT4_TARGET_DIRECTORIES} |
|
|
355 | } |
|
|
356 | |
|
|
357 | # @FUNCTION: qt4-build_src_test |
|
|
358 | # @DESCRIPTION: |
|
|
359 | # Runs tests only in target directories. |
|
|
360 | qt4-build_src_test() { |
|
|
361 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
|
|
362 | emake -j1 check -C ${dir} |
|
|
363 | done |
| 320 | } |
364 | } |
| 321 | |
365 | |
| 322 | # @FUNCTION: fix_includes |
366 | # @FUNCTION: fix_includes |
| 323 | # @DESCRIPTION: |
367 | # @DESCRIPTION: |
| 324 | # For MacOSX we need to add some symlinks when frameworks are |
368 | # For MacOSX we need to add some symlinks when frameworks are |
| … | |
… | |
| 353 | setqtenv |
397 | setqtenv |
| 354 | install_directories ${QT4_TARGET_DIRECTORIES} |
398 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 355 | install_qconfigs |
399 | install_qconfigs |
| 356 | fix_library_files |
400 | fix_library_files |
| 357 | fix_includes |
401 | fix_includes |
|
|
402 | # remove .la files since we are building only shared Qt libraries |
|
|
403 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
| 358 | } |
404 | } |
| 359 | |
405 | |
| 360 | # @FUNCTION: setqtenv |
406 | # @FUNCTION: setqtenv |
| 361 | setqtenv() { |
407 | setqtenv() { |
| 362 | # Set up installation directories |
408 | # Set up installation directories |
| … | |
… | |
| 462 | { |
508 | { |
| 463 | echo "${S}"/mkspecs/common/*.conf |
509 | echo "${S}"/mkspecs/common/*.conf |
| 464 | find "${S}" -name '*.pr[io]' |
510 | find "${S}" -name '*.pr[io]' |
| 465 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
511 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
| 466 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
512 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 467 | emake CC="@echo compiling \$< && $(tc-getCC)" \ |
513 | emake CC="$(tc-getCC)" \ |
| 468 | CXX="@echo compiling \$< && $(tc-getCXX)" \ |
514 | CXX="$(tc-getCXX)" \ |
| 469 | LINK="@echo linking \$@ && $(tc-getCXX)" || die "emake failed" |
515 | LINK="$(tc-getCXX)" || die "emake failed" |
| 470 | popd >/dev/null |
516 | popd >/dev/null |
| 471 | done |
517 | done |
| 472 | } |
518 | } |
| 473 | |
519 | |
| 474 | # @FUNCTION: install_directories |
520 | # @FUNCTION: install_directories |
| … | |
… | |
| 721 | fi |
767 | fi |
| 722 | |
768 | |
| 723 | echo "${spec}" |
769 | echo "${spec}" |
| 724 | } |
770 | } |
| 725 | |
771 | |
|
|
772 | # @FUNCTION: qt_assistant_cleanup |
|
|
773 | # @RETURN: nothing |
|
|
774 | # @DESCRIPTION: |
|
|
775 | # Tries to clean up tools.pro for qt-assistant ebuilds |
|
|
776 | # Meant to be called in src_prepare |
|
|
777 | qt_assistant_cleanup() { |
|
|
778 | # different versions (and branches...) may need different handling, |
|
|
779 | # add a case if you need special handling |
|
|
780 | case "${MY_PV_EXTRA}" in |
|
|
781 | *kde-qt*) |
|
|
782 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
783 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
784 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
785 | ;; |
|
|
786 | *) |
|
|
787 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
788 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
789 | -e "s/^\([ \t]*pixeltool\) /\1 qdoc3 /" \ |
|
|
790 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
791 | ;; |
|
|
792 | esac |
|
|
793 | } |
|
|
794 | |
|
|
795 | # @FUNCTION: qt_nolibx11 |
|
|
796 | # @RETURN: nothing |
|
|
797 | # @DESCRIPTION: |
|
|
798 | # Ignore X11 tests for packages that don't need X libraries installed |
|
|
799 | qt_nolibx11() { |
|
|
800 | einfo "removing X11 check to allow X-less compilation" |
|
|
801 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
|
|
802 | die "x11 check sed failed" |
|
|
803 | } |
|
|
804 | |
| 726 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst |
805 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |