| 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.68 2010/05/22 19:23:51 wired Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.78 2010/07/11 10:32:17 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>, |
| … | |
… | |
| 65 | |
65 | |
| 66 | # @FUNCTION: qt4-build_pkg_setup |
66 | # @FUNCTION: qt4-build_pkg_setup |
| 67 | # @DESCRIPTION: |
67 | # @DESCRIPTION: |
| 68 | # Sets up S, MY_P, PATH, and LD_LIBRARY_PATH |
68 | # Sets up S, MY_P, PATH, and LD_LIBRARY_PATH |
| 69 | qt4-build_pkg_setup() { |
69 | qt4-build_pkg_setup() { |
| 70 | if [[ "${PN}" == "qt-webkit" ]]; then |
|
|
| 71 | if [[ "${CFLAGS}" =~ "-ggdb" ]] || [[ "${CXXFLAGS}" =~ "-ggdb" ]]; then |
|
|
| 72 | echo |
|
|
| 73 | ewarn "Your \$C{,XX}FLAGS contain -ggdb. You may experience really" |
|
|
| 74 | ewarn "long compilation times and/or increased memory usage." |
|
|
| 75 | ewarn "If compilation fails, please try removing -ggdb before" |
|
|
| 76 | ewarn "reporting a bug." |
|
|
| 77 | ewarn "For more info check out bug #307861" |
|
|
| 78 | echo |
|
|
| 79 | fi |
|
|
| 80 | fi |
|
|
| 81 | |
|
|
| 82 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
70 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
| 83 | |
71 | |
| 84 | # Protect users by not allowing downgrades between releases |
72 | # Protect users by not allowing downgrades between releases |
| 85 | # Downgrading revisions within the same release should be allowed |
73 | # Downgrading revisions within the same release should be allowed |
| 86 | if has_version '>'${CATEGORY}/${P}-r9999 ; then |
74 | if has_version '>'${CATEGORY}/${P}-r9999 ; then |
| … | |
… | |
| 89 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
77 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
| 90 | die "aborting to save your system" |
78 | die "aborting to save your system" |
| 91 | else |
79 | else |
| 92 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
80 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
| 93 | fi |
81 | fi |
|
|
82 | fi |
|
|
83 | |
|
|
84 | if [[ "${PN}" == "qt-webkit" ]]; then |
|
|
85 | eshopts_push -s extglob |
|
|
86 | if is-flagq '-g?(gdb)?([0-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 |
| 94 | fi |
95 | fi |
| 95 | |
96 | |
| 96 | PATH="${S}/bin${PATH:+:}${PATH}" |
97 | PATH="${S}/bin${PATH:+:}${PATH}" |
| 97 | if [[ ${CHOST} != *-darwin* ]]; then |
98 | if [[ ${CHOST} != *-darwin* ]]; then |
| 98 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
99 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
| … | |
… | |
| 139 | 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 \ |
| 140 | ${QT4_EXTRACT_DIRECTORIES}; do |
141 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 141 | targets+=" ${MY_P}/${target}" |
142 | targets+=" ${MY_P}/${target}" |
| 142 | done |
143 | done |
| 143 | |
144 | |
| 144 | echo tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
145 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 145 | tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
146 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
| 146 | } |
147 | } |
| 147 | |
148 | |
| 148 | # @ECLASS-VARIABLE: PATCHES |
149 | # @ECLASS-VARIABLE: PATCHES |
| 149 | # @DESCRIPTION: |
150 | # @DESCRIPTION: |
| 150 | # 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 |
| … | |
… | |
| 159 | # 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 |
| 160 | # 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. |
| 161 | qt4-build_src_prepare() { |
162 | qt4-build_src_prepare() { |
| 162 | setqtenv |
163 | setqtenv |
| 163 | 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 |
| 164 | |
178 | |
| 165 | if use aqua; then |
179 | if use aqua; then |
| 166 | # provide a proper macx-g++-64 |
180 | # provide a proper macx-g++-64 |
| 167 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
181 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| 168 | |
182 | |
| … | |
… | |
| 204 | fi |
218 | fi |
| 205 | |
219 | |
| 206 | # Bug 282984 && Bug 295530 |
220 | # Bug 282984 && Bug 295530 |
| 207 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=$(tc-getCC)\nCXX=$(tc-getCXX)\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
221 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=$(tc-getCC)\nCXX=$(tc-getCXX)\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
| 208 | -i configure || die "sed qmake compilers failed" |
222 | -i configure || die "sed qmake compilers failed" |
|
|
223 | # bug 321335 |
|
|
224 | if version_is_at_least 4.6; then |
|
|
225 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
|
|
226 | xargs -0 \ |
| 209 | sed -e "s:\(\$MAKE\):\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX) LINK=$(tc-getCXX):" \ |
227 | sed -e "s:\(\$MAKE\):\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX) LINK=$(tc-getCXX):g" \ |
| 210 | -i config.tests/unix/compile.test || die "sed test compilers failed" |
228 | -i || die "sed test compilers failed" |
|
|
229 | fi |
| 211 | |
230 | |
| 212 | # Bug 172219 |
231 | # Bug 172219 |
| 213 | sed -e "s:X11R6/::" \ |
232 | sed -e "s:X11R6/::" \ |
| 214 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
233 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
| 215 | |
234 | |
| … | |
… | |
| 261 | # use GCC over SunStudio |
280 | # use GCC over SunStudio |
| 262 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
281 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 263 | # don't flirt with non-Prefix stuff, we're quite possessive |
282 | # don't flirt with non-Prefix stuff, we're quite possessive |
| 264 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
283 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 265 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
284 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
|
|
285 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
|
|
286 | sed -i '/^QMAKE_CFLAGS_\(RELEASE\|DEBUG\)/s:+=.*:+=:' mkspecs/common/g++.conf |
| 266 | |
287 | |
| 267 | base_src_prepare |
288 | base_src_prepare |
| 268 | } |
289 | } |
| 269 | |
290 | |
| 270 | # @FUNCTION: qt4-build_src_configure |
291 | # @FUNCTION: qt4-build_src_configure |
| … | |
… | |
| 319 | # @DESCRIPTION: Actual compile phase |
340 | # @DESCRIPTION: Actual compile phase |
| 320 | qt4-build_src_compile() { |
341 | qt4-build_src_compile() { |
| 321 | setqtenv |
342 | setqtenv |
| 322 | |
343 | |
| 323 | build_directories ${QT4_TARGET_DIRECTORIES} |
344 | build_directories ${QT4_TARGET_DIRECTORIES} |
|
|
345 | } |
|
|
346 | |
|
|
347 | # @FUNCTION: qt4-build_src_test |
|
|
348 | # @DESCRIPTION: |
|
|
349 | # Runs tests only in target directories. |
|
|
350 | qt4-build_src_test() { |
|
|
351 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
|
|
352 | emake -j1 check -C ${dir} |
|
|
353 | done |
| 324 | } |
354 | } |
| 325 | |
355 | |
| 326 | # @FUNCTION: fix_includes |
356 | # @FUNCTION: fix_includes |
| 327 | # @DESCRIPTION: |
357 | # @DESCRIPTION: |
| 328 | # For MacOSX we need to add some symlinks when frameworks are |
358 | # For MacOSX we need to add some symlinks when frameworks are |
| … | |
… | |
| 357 | setqtenv |
387 | setqtenv |
| 358 | install_directories ${QT4_TARGET_DIRECTORIES} |
388 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 359 | install_qconfigs |
389 | install_qconfigs |
| 360 | fix_library_files |
390 | fix_library_files |
| 361 | fix_includes |
391 | fix_includes |
|
|
392 | # remove .la files since we are building only shared Qt libraries |
|
|
393 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
| 362 | } |
394 | } |
| 363 | |
395 | |
| 364 | # @FUNCTION: setqtenv |
396 | # @FUNCTION: setqtenv |
| 365 | setqtenv() { |
397 | setqtenv() { |
| 366 | # Set up installation directories |
398 | # Set up installation directories |
| … | |
… | |
| 725 | fi |
757 | fi |
| 726 | |
758 | |
| 727 | echo "${spec}" |
759 | echo "${spec}" |
| 728 | } |
760 | } |
| 729 | |
761 | |
|
|
762 | # @FUNCTION: qt_assistant_cleanup |
|
|
763 | # @RETURN: nothing |
|
|
764 | # @DESCRIPTION: |
|
|
765 | # Tries to clean up tools.pro for qt-assistant ebuilds |
|
|
766 | # Meant to be called in src_prepare |
|
|
767 | qt_assistant_cleanup() { |
|
|
768 | # different versions (and branches...) may need different handling, |
|
|
769 | # add a case if you need special handling |
|
|
770 | case "${MY_PV_EXTRA}" in |
|
|
771 | *kde-qt*) |
|
|
772 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
773 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
774 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
775 | ;; |
|
|
776 | *) |
|
|
777 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
778 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
779 | -e "s/^\([ \t]*pixeltool\) /\1 qdoc3 /" \ |
|
|
780 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
781 | ;; |
|
|
782 | esac |
|
|
783 | } |
|
|
784 | |
|
|
785 | # @FUNCTION: qt_nolibx11 |
|
|
786 | # @RETURN: nothing |
|
|
787 | # @DESCRIPTION: |
|
|
788 | # Ignore X11 tests for packages that don't need X libraries installed |
|
|
789 | qt_nolibx11() { |
|
|
790 | einfo "removing X11 check to allow X-less compilation" |
|
|
791 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
|
|
792 | die "x11 check sed failed" |
|
|
793 | } |
|
|
794 | |
| 730 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst |
795 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |