| 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.80 2010/08/13 16:36:10 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>, |
| … | |
… | |
| 79 | else |
79 | else |
| 80 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
80 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
| 81 | fi |
81 | fi |
| 82 | fi |
82 | fi |
| 83 | |
83 | |
|
|
84 | if [[ "${PN}" == "qt-webkit" ]]; then |
|
|
85 | eshopts_push -s extglob |
|
|
86 | if is-flagq '-g?(gdb)?([1-9])'; then |
|
|
87 | echo |
|
|
88 | 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." |
|
|
90 | ewarn "If compilation fails, please try removing -g{,gdb} before reporting a bug." |
|
|
91 | ewarn "For more info check out bug #307861" |
|
|
92 | echo |
|
|
93 | fi |
|
|
94 | eshopts_pop |
|
|
95 | fi |
|
|
96 | |
| 84 | PATH="${S}/bin${PATH:+:}${PATH}" |
97 | PATH="${S}/bin${PATH:+:}${PATH}" |
| 85 | if [[ ${CHOST} != *-darwin* ]]; then |
98 | if [[ ${CHOST} != *-darwin* ]]; then |
| 86 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
99 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
| 87 | else |
100 | else |
| 88 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
101 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
| … | |
… | |
| 127 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
140 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 128 | ${QT4_EXTRACT_DIRECTORIES}; do |
141 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 129 | targets+=" ${MY_P}/${target}" |
142 | targets+=" ${MY_P}/${target}" |
| 130 | done |
143 | done |
| 131 | |
144 | |
| 132 | echo tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
145 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 133 | tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
146 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
| 134 | } |
147 | } |
| 135 | |
148 | |
| 136 | # @ECLASS-VARIABLE: PATCHES |
149 | # @ECLASS-VARIABLE: PATCHES |
| 137 | # @DESCRIPTION: |
150 | # @DESCRIPTION: |
| 138 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
151 | # 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 |
160 | # 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. |
161 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
| 149 | qt4-build_src_prepare() { |
162 | qt4-build_src_prepare() { |
| 150 | setqtenv |
163 | setqtenv |
| 151 | cd "${S}" |
164 | cd "${S}" |
|
|
165 | |
|
|
166 | # fix qt 4.7 regression that skips -fvisibility=hidden |
|
|
167 | if version_is_at_least "4.7.0_beta1"; then |
|
|
168 | sed -e "s/^gcc|g++)/*gcc|*g++)/" \ |
|
|
169 | -i config.tests/unix/fvisibility.test || |
|
|
170 | die "visibility fixing sed failed" |
|
|
171 | fi |
|
|
172 | # fix libx11 dependency on non X packages |
|
|
173 | 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" |
|
|
175 | hasq ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
|
|
176 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
|
|
177 | fi |
| 152 | |
178 | |
| 153 | if use aqua; then |
179 | if use aqua; then |
| 154 | # provide a proper macx-g++-64 |
180 | # provide a proper macx-g++-64 |
| 155 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
181 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| 156 | |
182 | |
| … | |
… | |
| 168 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
194 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 169 | # qmake bus errors with -O2 but -O3 works |
195 | # qmake bus errors with -O2 but -O3 works |
| 170 | replace-flags -O2 -O3 |
196 | replace-flags -O2 -O3 |
| 171 | fi |
197 | fi |
| 172 | |
198 | |
| 173 | # Bug 282984 && Bug 295530 |
199 | if [[ ${CHOST} == arm* ]] ; then |
| 174 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=$(tc-getCC)\nCXX=$(tc-getCXX)\n\1:" \ |
200 | # Fails on arm with -Os, bug 331641 |
| 175 | -i configure || die "sed qmake compilers failed" |
201 | # This can be removed once qt-4.7 is stable or the bug on gcc is fixed |
| 176 | sed -e "s:\(\$MAKE\):\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX):" \ |
202 | replace-flags -Os -O2 |
| 177 | -i config.tests/unix/compile.test || die "sed test compilers failed" |
203 | fi |
| 178 | |
204 | |
| 179 | # Bug 178652 |
205 | # Bug 178652 |
| 180 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
206 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 181 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
207 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 182 | append-flags -fno-gcse |
208 | append-flags -fno-gcse |
| … | |
… | |
| 195 | if use ppc64; then |
221 | if use ppc64; then |
| 196 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
222 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 197 | append-flags -mminimal-toc |
223 | append-flags -mminimal-toc |
| 198 | fi |
224 | fi |
| 199 | |
225 | |
|
|
226 | # Bug 282984 && Bug 295530 |
|
|
227 | 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" |
|
|
229 | # bug 321335 |
|
|
230 | if version_is_at_least 4.6; then |
|
|
231 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
|
|
232 | xargs -0 \ |
|
|
233 | 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" |
|
|
235 | fi |
|
|
236 | |
| 200 | # Bug 172219 |
237 | # 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/::" \ |
238 | sed -e "s:X11R6/::" \ |
| 205 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
239 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
| 206 | |
240 | |
| 207 | if [[ ${CHOST} != *-darwin* ]]; then |
241 | 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 |
242 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 214 | # crippled (by design) :/ |
243 | # crippled (by design) :/ |
| 215 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
244 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 216 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
245 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 217 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
246 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
| … | |
… | |
| 257 | # use GCC over SunStudio |
286 | # use GCC over SunStudio |
| 258 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
287 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 259 | # don't flirt with non-Prefix stuff, we're quite possessive |
288 | # don't flirt with non-Prefix stuff, we're quite possessive |
| 260 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
289 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 261 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
290 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
|
|
291 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
|
|
292 | sed -i '/^QMAKE_CFLAGS_\(RELEASE\|DEBUG\)/s:+=.*:+=:' mkspecs/common/g++.conf |
| 262 | |
293 | |
| 263 | base_src_prepare |
294 | base_src_prepare |
| 264 | } |
295 | } |
| 265 | |
296 | |
| 266 | # @FUNCTION: qt4-build_src_configure |
297 | # @FUNCTION: qt4-build_src_configure |
| … | |
… | |
| 315 | # @DESCRIPTION: Actual compile phase |
346 | # @DESCRIPTION: Actual compile phase |
| 316 | qt4-build_src_compile() { |
347 | qt4-build_src_compile() { |
| 317 | setqtenv |
348 | setqtenv |
| 318 | |
349 | |
| 319 | build_directories ${QT4_TARGET_DIRECTORIES} |
350 | build_directories ${QT4_TARGET_DIRECTORIES} |
|
|
351 | } |
|
|
352 | |
|
|
353 | # @FUNCTION: qt4-build_src_test |
|
|
354 | # @DESCRIPTION: |
|
|
355 | # Runs tests only in target directories. |
|
|
356 | qt4-build_src_test() { |
|
|
357 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
|
|
358 | emake -j1 check -C ${dir} |
|
|
359 | done |
| 320 | } |
360 | } |
| 321 | |
361 | |
| 322 | # @FUNCTION: fix_includes |
362 | # @FUNCTION: fix_includes |
| 323 | # @DESCRIPTION: |
363 | # @DESCRIPTION: |
| 324 | # For MacOSX we need to add some symlinks when frameworks are |
364 | # For MacOSX we need to add some symlinks when frameworks are |
| … | |
… | |
| 353 | setqtenv |
393 | setqtenv |
| 354 | install_directories ${QT4_TARGET_DIRECTORIES} |
394 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 355 | install_qconfigs |
395 | install_qconfigs |
| 356 | fix_library_files |
396 | fix_library_files |
| 357 | fix_includes |
397 | fix_includes |
|
|
398 | # remove .la files since we are building only shared Qt libraries |
|
|
399 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
| 358 | } |
400 | } |
| 359 | |
401 | |
| 360 | # @FUNCTION: setqtenv |
402 | # @FUNCTION: setqtenv |
| 361 | setqtenv() { |
403 | setqtenv() { |
| 362 | # Set up installation directories |
404 | # Set up installation directories |
| … | |
… | |
| 462 | { |
504 | { |
| 463 | echo "${S}"/mkspecs/common/*.conf |
505 | echo "${S}"/mkspecs/common/*.conf |
| 464 | find "${S}" -name '*.pr[io]' |
506 | find "${S}" -name '*.pr[io]' |
| 465 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
507 | } | 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" |
508 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 467 | emake CC="@echo compiling \$< && $(tc-getCC)" \ |
509 | emake CC="$(tc-getCC)" \ |
| 468 | CXX="@echo compiling \$< && $(tc-getCXX)" \ |
510 | CXX="$(tc-getCXX)" \ |
| 469 | LINK="@echo linking \$@ && $(tc-getCXX)" || die "emake failed" |
511 | LINK="$(tc-getCXX)" || die "emake failed" |
| 470 | popd >/dev/null |
512 | popd >/dev/null |
| 471 | done |
513 | done |
| 472 | } |
514 | } |
| 473 | |
515 | |
| 474 | # @FUNCTION: install_directories |
516 | # @FUNCTION: install_directories |
| … | |
… | |
| 721 | fi |
763 | fi |
| 722 | |
764 | |
| 723 | echo "${spec}" |
765 | echo "${spec}" |
| 724 | } |
766 | } |
| 725 | |
767 | |
|
|
768 | # @FUNCTION: qt_assistant_cleanup |
|
|
769 | # @RETURN: nothing |
|
|
770 | # @DESCRIPTION: |
|
|
771 | # Tries to clean up tools.pro for qt-assistant ebuilds |
|
|
772 | # Meant to be called in src_prepare |
|
|
773 | qt_assistant_cleanup() { |
|
|
774 | # different versions (and branches...) may need different handling, |
|
|
775 | # add a case if you need special handling |
|
|
776 | case "${MY_PV_EXTRA}" in |
|
|
777 | *kde-qt*) |
|
|
778 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
779 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
780 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
781 | ;; |
|
|
782 | *) |
|
|
783 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
784 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
785 | -e "s/^\([ \t]*pixeltool\) /\1 qdoc3 /" \ |
|
|
786 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
787 | ;; |
|
|
788 | esac |
|
|
789 | } |
|
|
790 | |
|
|
791 | # @FUNCTION: qt_nolibx11 |
|
|
792 | # @RETURN: nothing |
|
|
793 | # @DESCRIPTION: |
|
|
794 | # Ignore X11 tests for packages that don't need X libraries installed |
|
|
795 | qt_nolibx11() { |
|
|
796 | einfo "removing X11 check to allow X-less compilation" |
|
|
797 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
|
|
798 | die "x11 check sed failed" |
|
|
799 | } |
|
|
800 | |
| 726 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst |
801 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |