| 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.65 2010/02/17 23:32:24 wired Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.73 2010/05/27 21:27:31 spatz 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>, |
| … | |
… | |
| 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 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
70 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
| 71 | |
71 | |
|
|
72 | # Protect users by not allowing downgrades between releases |
|
|
73 | # Downgrading revisions within the same release should be allowed |
|
|
74 | if has_version '>'${CATEGORY}/${P}-r9999 ; then |
|
|
75 | if [[ -z $I_KNOW_WHAT_I_AM_DOING ]] ; then |
|
|
76 | eerror "Sanity check to keep you from breaking your system:" |
|
|
77 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
|
|
78 | die "aborting to save your system" |
|
|
79 | else |
|
|
80 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
|
|
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 |
|
|
95 | fi |
| 72 | |
96 | |
| 73 | PATH="${S}/bin${PATH:+:}${PATH}" |
97 | PATH="${S}/bin${PATH:+:}${PATH}" |
| 74 | if [[ ${CHOST} != *-darwin* ]]; then |
98 | if [[ ${CHOST} != *-darwin* ]]; then |
| 75 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
99 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
| 76 | else |
100 | else |
| 77 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
101 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
| 78 | # On MacOS we *need* at least src/gui/kernel/qapplication_mac.mm for |
102 | # On MacOS we *need* at least src/gui/kernel/qapplication_mac.mm for |
| 79 | # platform detection. Note: needs to come before any directories to |
103 | # platform detection. Note: needs to come before any directories to |
| 80 | # avoid extract failure. |
104 | # avoid extract failure. |
| 81 | [[ ${CHOST} == *-apple-darwin* ]] && \ |
105 | [[ ${CHOST} == *-apple-darwin* ]] && \ |
| 82 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm ${QT4_EXTRACT_DIRECTORIES}" |
106 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm |
|
|
107 | ${QT4_EXTRACT_DIRECTORIES}" |
| 83 | fi |
108 | fi |
| 84 | |
109 | |
| 85 | # Make sure ebuilds use the required EAPI |
110 | # Make sure ebuilds use the required EAPI |
| 86 | if [[ ${EAPI} != [23] ]]; then |
111 | if [[ ${EAPI} != [23] ]]; then |
| 87 | eerror "The qt4-build eclass requires EAPI=2 or EAPI=3, but this ebuild is using" |
112 | eerror "The qt4-build eclass requires EAPI=2 or EAPI=3, but this ebuild is using" |
| … | |
… | |
| 90 | die "qt4-build eclass requires EAPI=2 or EAPI=3" |
115 | die "qt4-build eclass requires EAPI=2 or EAPI=3" |
| 91 | fi |
116 | fi |
| 92 | |
117 | |
| 93 | if ! version_is_at_least 4.1 $(gcc-version); then |
118 | if ! version_is_at_least 4.1 $(gcc-version); then |
| 94 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
119 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
| 95 | echo |
|
|
| 96 | ebeep 3 |
|
|
| 97 | fi |
120 | fi |
| 98 | } |
121 | } |
| 99 | |
122 | |
| 100 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
123 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
| 101 | # @DESCRIPTION: |
124 | # @DESCRIPTION: |
| … | |
… | |
| 117 | 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 \ |
| 118 | ${QT4_EXTRACT_DIRECTORIES}; do |
141 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 119 | targets+=" ${MY_P}/${target}" |
142 | targets+=" ${MY_P}/${target}" |
| 120 | done |
143 | done |
| 121 | |
144 | |
| 122 | echo tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
145 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 123 | tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
146 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
| 124 | } |
147 | } |
| 125 | |
148 | |
| 126 | # @ECLASS-VARIABLE: PATCHES |
149 | # @ECLASS-VARIABLE: PATCHES |
| 127 | # @DESCRIPTION: |
150 | # @DESCRIPTION: |
| 128 | # 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 |
| … | |
… | |
| 138 | # 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. |
| 139 | qt4-build_src_prepare() { |
162 | qt4-build_src_prepare() { |
| 140 | setqtenv |
163 | setqtenv |
| 141 | cd "${S}" |
164 | cd "${S}" |
| 142 | |
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 | |
| 143 | if use aqua; then |
173 | if use aqua; then |
| 144 | # provide a proper macx-g++-64 |
174 | # provide a proper macx-g++-64 |
| 145 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
175 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| 146 | |
176 | |
| 147 | sed -e '/^CONFIG/s:app_bundle::' \ |
177 | sed -e '/^CONFIG/s:app_bundle::' \ |
| … | |
… | |
| 157 | |
187 | |
| 158 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
188 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 159 | # qmake bus errors with -O2 but -O3 works |
189 | # qmake bus errors with -O2 but -O3 works |
| 160 | replace-flags -O2 -O3 |
190 | replace-flags -O2 -O3 |
| 161 | fi |
191 | fi |
| 162 | |
|
|
| 163 | # Bug 282984 && Bug 295530 |
|
|
| 164 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=$(tc-getCC)\nCXX=$(tc-getCXX)\n\1:" \ |
|
|
| 165 | -i configure || die "sed qmake compilers failed" |
|
|
| 166 | sed -e "s:\(\$MAKE\):\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX):" \ |
|
|
| 167 | -i config.tests/unix/compile.test || die "sed test compilers failed" |
|
|
| 168 | |
192 | |
| 169 | # Bug 178652 |
193 | # Bug 178652 |
| 170 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
194 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 171 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
195 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 172 | append-flags -fno-gcse |
196 | append-flags -fno-gcse |
| … | |
… | |
| 185 | if use ppc64; then |
209 | if use ppc64; then |
| 186 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
210 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 187 | append-flags -mminimal-toc |
211 | append-flags -mminimal-toc |
| 188 | fi |
212 | fi |
| 189 | |
213 | |
|
|
214 | # Bug 282984 && Bug 295530 |
|
|
215 | 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" |
|
|
217 | # bug 321335 |
|
|
218 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
|
|
219 | xargs -0 \ |
|
|
220 | 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" |
|
|
222 | |
| 190 | # Bug 172219 |
223 | # Bug 172219 |
| 191 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 192 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 193 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 194 | -e "s:X11R6/::" \ |
224 | sed -e "s:X11R6/::" \ |
| 195 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
225 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
| 196 | |
226 | |
| 197 | if [[ ${CHOST} != *-darwin* ]]; then |
227 | if [[ ${CHOST} == *-darwin* ]]; then |
| 198 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 199 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 200 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 201 | -i mkspecs/common/g++.conf || die "sed mkspecs/common/g++.conf failed" |
|
|
| 202 | else |
|
|
| 203 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
228 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 204 | # crippled (by design) :/ |
229 | # crippled (by design) :/ |
| 205 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
230 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 206 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
231 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 207 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
232 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
| … | |
… | |
| 452 | { |
477 | { |
| 453 | echo "${S}"/mkspecs/common/*.conf |
478 | echo "${S}"/mkspecs/common/*.conf |
| 454 | find "${S}" -name '*.pr[io]' |
479 | find "${S}" -name '*.pr[io]' |
| 455 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
480 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
| 456 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
481 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 457 | emake CC="@echo compiling \$< && $(tc-getCC)" \ |
482 | emake CC="$(tc-getCC)" \ |
| 458 | CXX="@echo compiling \$< && $(tc-getCXX)" \ |
483 | CXX="$(tc-getCXX)" \ |
| 459 | LINK="@echo linking \$@ && $(tc-getCXX)" || die "emake failed" |
484 | LINK="$(tc-getCXX)" || die "emake failed" |
| 460 | popd >/dev/null |
485 | popd >/dev/null |
| 461 | done |
486 | done |
| 462 | } |
487 | } |
| 463 | |
488 | |
| 464 | # @FUNCTION: install_directories |
489 | # @FUNCTION: install_directories |