| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2011 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.59 2009/12/25 15:27:22 abcd Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.95 2011/10/16 09:59:39 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 ]] && |
|
|
21 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
|
|
22 | IUSE="+exceptions" |
| 20 | else |
23 | else |
| 21 | MY_P=qt-x11-opensource-src-${MY_PV} |
24 | MY_P=qt-x11-opensource-src-${MY_PV} |
| 22 | fi |
25 | fi |
| 23 | |
26 | |
| 24 | HOMEPAGE="http://qt.nokia.com/" |
27 | HOMEPAGE="http://qt.nokia.com/" |
| 25 | 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" |
| 26 | |
29 | |
| 27 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
30 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
| 28 | IUSE="debug pch aqua" |
31 | IUSE+=" debug pch aqua" |
| 29 | |
32 | |
| 30 | RDEPEND=" |
33 | RDEPEND=" |
| 31 | !<x11-libs/qt-assistant-${PV} |
34 | !<x11-libs/qt-assistant-${PV} |
| 32 | !>x11-libs/qt-assistant-${PV}-r9999 |
35 | !>x11-libs/qt-assistant-${PV}-r9999 |
| 33 | !<x11-libs/qt-core-${PV} |
36 | !<x11-libs/qt-core-${PV} |
| … | |
… | |
| 36 | !>x11-libs/qt-dbus-${PV}-r9999 |
39 | !>x11-libs/qt-dbus-${PV}-r9999 |
| 37 | !<x11-libs/qt-demo-${PV} |
40 | !<x11-libs/qt-demo-${PV} |
| 38 | !>x11-libs/qt-demo-${PV}-r9999 |
41 | !>x11-libs/qt-demo-${PV}-r9999 |
| 39 | !<x11-libs/qt-gui-${PV} |
42 | !<x11-libs/qt-gui-${PV} |
| 40 | !>x11-libs/qt-gui-${PV}-r9999 |
43 | !>x11-libs/qt-gui-${PV}-r9999 |
|
|
44 | !<x11-libs/qt-multimedia-${PV} |
|
|
45 | !>x11-libs/qt-multimedia-${PV}-r9999 |
| 41 | !<x11-libs/qt-opengl-${PV} |
46 | !<x11-libs/qt-opengl-${PV} |
| 42 | !>x11-libs/qt-opengl-${PV}-r9999 |
47 | !>x11-libs/qt-opengl-${PV}-r9999 |
| 43 | !<x11-libs/qt-phonon-${PV} |
48 | !<x11-libs/qt-phonon-${PV} |
| 44 | !>x11-libs/qt-phonon-${PV}-r9999 |
49 | !>x11-libs/qt-phonon-${PV}-r9999 |
| 45 | !<x11-libs/qt-qt3support-${PV} |
50 | !<x11-libs/qt-qt3support-${PV} |
| … | |
… | |
| 64 | # @DESCRIPTION: |
69 | # @DESCRIPTION: |
| 65 | # Sets up S, MY_P, PATH, and LD_LIBRARY_PATH |
70 | # Sets up S, MY_P, PATH, and LD_LIBRARY_PATH |
| 66 | qt4-build_pkg_setup() { |
71 | qt4-build_pkg_setup() { |
| 67 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
72 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
| 68 | |
73 | |
|
|
74 | # Protect users by not allowing downgrades between releases |
|
|
75 | # Downgrading revisions within the same release should be allowed |
|
|
76 | if has_version '>'${CATEGORY}/${P}-r9999 ; then |
|
|
77 | if [[ -z $I_KNOW_WHAT_I_AM_DOING ]] ; then |
|
|
78 | eerror "Sanity check to keep you from breaking your system:" |
|
|
79 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
|
|
80 | die "aborting to save your system" |
|
|
81 | else |
|
|
82 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
|
|
83 | fi |
|
|
84 | fi |
|
|
85 | |
|
|
86 | if [[ "${PN}" == "qt-webkit" ]]; then |
|
|
87 | eshopts_push -s extglob |
|
|
88 | if is-flagq '-g?(gdb)?([1-9])'; then |
|
|
89 | echo |
|
|
90 | ewarn "You have enabled debug info (probably have -g or -ggdb in your \$C{,XX}FLAGS)." |
|
|
91 | ewarn "You may experience really long compilation times and/or increased memory usage." |
|
|
92 | ewarn "If compilation fails, please try removing -g{,gdb} before reporting a bug." |
|
|
93 | ewarn "For more info check out bug #307861" |
|
|
94 | echo |
|
|
95 | fi |
|
|
96 | eshopts_pop |
|
|
97 | fi |
| 69 | |
98 | |
| 70 | PATH="${S}/bin${PATH:+:}${PATH}" |
99 | PATH="${S}/bin${PATH:+:}${PATH}" |
| 71 | if [[ ${CHOST} != *-darwin* ]]; then |
100 | if [[ ${CHOST} != *-darwin* ]]; then |
| 72 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
101 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
| 73 | else |
102 | else |
| 74 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
103 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
| 75 | # on mac we *need* src/gui/kernel/qapplication_mac.cpp for platfrom |
104 | # On MacOS we *need* at least src/gui/kernel/qapplication_mac.mm for |
| 76 | # detection since the x11-headers package b0rkens the header |
105 | # platform detection. Note: needs to come before any directories to |
| 77 | # installation, we have to extract src/ and include/ completely on mac |
106 | # avoid extract failure. |
| 78 | # tools is needed for qt-demo and some others |
107 | [[ ${CHOST} == *-apple-darwin* ]] && \ |
| 79 | QT4_EXTRACT_DIRECTORIES+=" src include" |
108 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm |
| 80 | |
|
|
| 81 | if [[ ${PN} == qt-demo || ${PN} == qt-qt3support || ${PN} == qt-webkit ]]; then |
|
|
| 82 | QT4_EXTRACT_DIRECTORIES+=" tools" |
109 | ${QT4_EXTRACT_DIRECTORIES}" |
| 83 | fi |
|
|
| 84 | fi |
110 | fi |
| 85 | |
111 | |
| 86 | # Make sure ebuilds use the required EAPI |
112 | # Make sure ebuilds use the required EAPI |
| 87 | if [[ ${EAPI} != [23] ]]; then |
113 | if [[ ${EAPI} != [23] ]]; then |
| 88 | eerror "The qt4-build eclass requires EAPI=2 or EAPI=3, but this ebuild is using" |
114 | eerror "The qt4-build eclass requires EAPI=2 or EAPI=3, but this ebuild is using" |
| … | |
… | |
| 91 | die "qt4-build eclass requires EAPI=2 or EAPI=3" |
117 | die "qt4-build eclass requires EAPI=2 or EAPI=3" |
| 92 | fi |
118 | fi |
| 93 | |
119 | |
| 94 | if ! version_is_at_least 4.1 $(gcc-version); then |
120 | if ! version_is_at_least 4.1 $(gcc-version); then |
| 95 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
121 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
| 96 | echo |
|
|
| 97 | ebeep 3 |
|
|
| 98 | fi |
122 | fi |
| 99 | } |
123 | } |
| 100 | |
124 | |
| 101 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
125 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
| 102 | # @DESCRIPTION: |
126 | # @DESCRIPTION: |
| … | |
… | |
| 111 | # @FUNCTION: qt4-build_src_unpack |
135 | # @FUNCTION: qt4-build_src_unpack |
| 112 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 113 | # Unpacks the sources |
137 | # Unpacks the sources |
| 114 | qt4-build_src_unpack() { |
138 | qt4-build_src_unpack() { |
| 115 | setqtenv |
139 | setqtenv |
|
|
140 | local unpack_p="${MY_P}" |
|
|
141 | case "${PV}" in |
|
|
142 | 4.8.0_*) |
|
|
143 | unpack_p="qt-everywhere-opensource-src-${PV/_*}" |
|
|
144 | ;; |
|
|
145 | esac |
| 116 | local target targets= |
146 | local target targets= |
| 117 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
147 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 118 | 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 \ |
| 119 | ${QT4_EXTRACT_DIRECTORIES}; do |
149 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 120 | targets+=" ${MY_P}/${target}" |
150 | targets+=" ${unpack_p}/${target}" |
| 121 | done |
151 | done |
| 122 | |
152 | |
| 123 | echo tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
153 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 124 | tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
154 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
|
|
155 | case "${PV}" in |
|
|
156 | 4.8.0_*) |
|
|
157 | mv ${WORKDIR}/qt-everywhere-opensource-src-${PV/_*} \ |
|
|
158 | ${WORKDIR}/qt-everywhere-opensource-src-${MY_PV} |
|
|
159 | ;; |
|
|
160 | esac |
| 125 | } |
161 | } |
| 126 | |
162 | |
| 127 | # @ECLASS-VARIABLE: PATCHES |
163 | # @ECLASS-VARIABLE: PATCHES |
| 128 | # @DESCRIPTION: |
164 | # @DESCRIPTION: |
| 129 | # 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 |
| … | |
… | |
| 139 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
175 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
| 140 | qt4-build_src_prepare() { |
176 | qt4-build_src_prepare() { |
| 141 | setqtenv |
177 | setqtenv |
| 142 | cd "${S}" |
178 | cd "${S}" |
| 143 | |
179 | |
|
|
180 | # fix qt 4.7 regression that skips -fvisibility=hidden |
|
|
181 | if version_is_at_least "4.7.0_beta1"; then |
|
|
182 | sed -e "s/^gcc|g++)/*gcc|*g++)/" \ |
|
|
183 | -i config.tests/unix/fvisibility.test || |
|
|
184 | die "visibility fixing sed failed" |
|
|
185 | fi |
|
|
186 | # fix libx11 dependency on non X packages |
|
|
187 | if version_is_at_least "4.7.0_beta2"; then |
|
|
188 | local NOLIBX11PKG="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
|
|
189 | has ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
|
|
190 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
|
|
191 | fi |
|
|
192 | |
| 144 | if use aqua; then |
193 | if use aqua; then |
| 145 | # provide a proper macx-g++-64 |
194 | # provide a proper macx-g++-64 |
| 146 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
195 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| 147 | |
196 | |
| 148 | sed -e '/^CONFIG/s:app_bundle::' \ |
197 | sed -e '/^CONFIG/s:app_bundle::' \ |
| … | |
… | |
| 158 | |
207 | |
| 159 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
208 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 160 | # qmake bus errors with -O2 but -O3 works |
209 | # qmake bus errors with -O2 but -O3 works |
| 161 | replace-flags -O2 -O3 |
210 | replace-flags -O2 -O3 |
| 162 | fi |
211 | fi |
| 163 | |
|
|
| 164 | # Bug 282984 && Bug 295530 |
|
|
| 165 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=$(tc-getCC)\nCXX=$(tc-getCXX)\n\1:" \ |
|
|
| 166 | -i configure || die "sed qmake compilers failed" |
|
|
| 167 | sed -e "s:\(\$MAKE\):\1 CC=$(tc-getCC) CXX=$(tc-getCXX) LD=$(tc-getCXX):" \ |
|
|
| 168 | -i config.tests/unix/compile.test || die "sed test compilers failed" |
|
|
| 169 | |
212 | |
| 170 | # Bug 178652 |
213 | # Bug 178652 |
| 171 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
214 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 172 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
215 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 173 | append-flags -fno-gcse |
216 | append-flags -fno-gcse |
| … | |
… | |
| 186 | if use ppc64; then |
229 | if use ppc64; then |
| 187 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
230 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 188 | append-flags -mminimal-toc |
231 | append-flags -mminimal-toc |
| 189 | fi |
232 | fi |
| 190 | |
233 | |
|
|
234 | # Bug 282984 && Bug 295530 |
|
|
235 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=\"$(tc-getCC)\"\nCXX=\"$(tc-getCXX)\"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
|
|
236 | -i configure || die "sed qmake compilers failed" |
|
|
237 | # bug 321335 |
|
|
238 | if version_is_at_least 4.6; then |
|
|
239 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
|
|
240 | xargs -0 \ |
|
|
241 | sed -e "s:\(\$MAKE\):\1 CC=\"$(tc-getCC)\" CXX=\"$(tc-getCXX)\" LD=\"$(tc-getCXX)\" LINK=\"$(tc-getCXX)\":g" \ |
|
|
242 | -i || die "sed test compilers failed" |
|
|
243 | fi |
|
|
244 | |
| 191 | # Bug 172219 |
245 | # Bug 172219 |
| 192 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 193 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 194 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 195 | -e "s:X11R6/::" \ |
246 | sed -e "s:X11R6/::" \ |
| 196 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
247 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
| 197 | |
248 | |
| 198 | if [[ ${CHOST} != *-darwin* ]]; then |
249 | if [[ ${CHOST} == *-darwin* ]]; then |
| 199 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
|
|
| 200 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 201 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 202 | -i mkspecs/common/g++.conf || die "sed mkspecs/common/g++.conf failed" |
|
|
| 203 | else |
|
|
| 204 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
250 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 205 | # crippled (by design) :/ |
251 | # crippled (by design) :/ |
| 206 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
252 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 207 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
253 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 208 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
254 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
| … | |
… | |
| 248 | # use GCC over SunStudio |
294 | # use GCC over SunStudio |
| 249 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
295 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 250 | # don't flirt with non-Prefix stuff, we're quite possessive |
296 | # don't flirt with non-Prefix stuff, we're quite possessive |
| 251 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
297 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 252 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
298 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
|
|
299 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
|
|
300 | sed -i '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf |
| 253 | |
301 | |
| 254 | base_src_prepare |
302 | base_src_prepare |
| 255 | } |
303 | } |
| 256 | |
304 | |
| 257 | # @FUNCTION: qt4-build_src_configure |
305 | # @FUNCTION: qt4-build_src_configure |
| … | |
… | |
| 274 | unset glibflags |
322 | unset glibflags |
| 275 | fi |
323 | fi |
| 276 | |
324 | |
| 277 | if use aqua ; then |
325 | if use aqua ; then |
| 278 | # On (snow) leopard use the new (frameworked) cocoa code. |
326 | # On (snow) leopard use the new (frameworked) cocoa code. |
| 279 | if [[ $(uname -r | cut -d . -f 1) -ge 9 ]] ; then |
327 | if [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
| 280 | myconf+=" -cocoa -framework" |
328 | myconf+=" -cocoa -framework" |
| 281 | |
329 | |
| 282 | # We are crazy and build cocoa + qt3support :-) |
330 | # We are crazy and build cocoa + qt3support :-) |
| 283 | if use qt3support; then |
331 | if use qt3support; then |
| 284 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
332 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
| … | |
… | |
| 295 | # freetype2 include dir is non-standard, thus include it on configure |
343 | # freetype2 include dir is non-standard, thus include it on configure |
| 296 | # use -I from configure |
344 | # use -I from configure |
| 297 | myconf+=" $(pkg-config --cflags freetype2)" |
345 | myconf+=" $(pkg-config --cflags freetype2)" |
| 298 | fi |
346 | fi |
| 299 | |
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 | |
| 300 | echo ./configure ${myconf} |
352 | echo ./configure ${myconf} |
| 301 | ./configure ${myconf} || die "./configure failed" |
353 | ./configure ${myconf} || die "./configure failed" |
| 302 | myconf="" |
354 | myconf="" |
|
|
355 | |
|
|
356 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
| 303 | } |
357 | } |
| 304 | |
358 | |
| 305 | # @FUNCTION: qt4-build_src_compile |
359 | # @FUNCTION: qt4-build_src_compile |
|
|
360 | # @DESCRIPTION: |
| 306 | # @DESCRIPTION: Actual compile phase |
361 | # Actual compile phase |
| 307 | qt4-build_src_compile() { |
362 | qt4-build_src_compile() { |
| 308 | setqtenv |
363 | setqtenv |
| 309 | |
364 | |
| 310 | build_directories ${QT4_TARGET_DIRECTORIES} |
365 | build_directories ${QT4_TARGET_DIRECTORIES} |
|
|
366 | } |
|
|
367 | |
|
|
368 | # @FUNCTION: qt4-build_src_test |
|
|
369 | # @DESCRIPTION: |
|
|
370 | # Runs tests only in target directories. |
|
|
371 | qt4-build_src_test() { |
|
|
372 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
|
|
373 | emake -j1 check -C ${dir} |
|
|
374 | done |
| 311 | } |
375 | } |
| 312 | |
376 | |
| 313 | # @FUNCTION: fix_includes |
377 | # @FUNCTION: fix_includes |
| 314 | # @DESCRIPTION: |
378 | # @DESCRIPTION: |
| 315 | # For MacOSX we need to add some symlinks when frameworks are |
379 | # For MacOSX we need to add some symlinks when frameworks are |
| 316 | # being used, to avoid complications with some more or less stupid packages. |
380 | # being used, to avoid complications with some more or less stupid packages. |
| 317 | fix_includes() { |
381 | fix_includes() { |
| 318 | if use aqua && [[ $(uname -r | cut -d . -f 1) -ge 9 ]] ; then |
382 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
| 319 | # Some packages tend to include <Qt/...> |
383 | # Some packages tend to include <Qt/...> |
| 320 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
384 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
| 321 | |
385 | |
| 322 | # Fake normal headers when frameworks are installed... eases life later on |
386 | # Fake normal headers when frameworks are installed... eases life later on |
| 323 | local dest f |
387 | local dest f |
| … | |
… | |
| 344 | setqtenv |
408 | setqtenv |
| 345 | install_directories ${QT4_TARGET_DIRECTORIES} |
409 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 346 | install_qconfigs |
410 | install_qconfigs |
| 347 | fix_library_files |
411 | fix_library_files |
| 348 | fix_includes |
412 | fix_includes |
|
|
413 | # remove .la files since we are building only shared Qt libraries |
|
|
414 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
| 349 | } |
415 | } |
| 350 | |
416 | |
| 351 | # @FUNCTION: setqtenv |
417 | # @FUNCTION: setqtenv |
| 352 | setqtenv() { |
418 | setqtenv() { |
| 353 | # Set up installation directories |
419 | # Set up installation directories |
| … | |
… | |
| 409 | alpha|arm|ia64|mips|s390|sparc) myconf+=" -arch $(tc-arch)" ;; |
475 | alpha|arm|ia64|mips|s390|sparc) myconf+=" -arch $(tc-arch)" ;; |
| 410 | hppa|sh) myconf+=" -arch generic" ;; |
476 | hppa|sh) myconf+=" -arch generic" ;; |
| 411 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
477 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 412 | esac |
478 | esac |
| 413 | |
479 | |
| 414 | # 4.6: build qt-core with exceptions or qt-xmlpatterns won't build |
480 | # 4.5: build everything but qt-xmlpatterns w/o exceptions |
| 415 | local exceptions= |
481 | # 4.6: exceptions USE flag |
|
|
482 | local exceptions="-exceptions" |
| 416 | case "${PV}" in |
483 | case "${PV}" in |
| 417 | 4.6.*) |
484 | 4.5.*) |
| 418 | if [[ ${PN} != "qt-core" ]] && [[ ${PN} != "qt-xmlpatterns" ]]; then |
485 | [[ ${PN} == "qt-xmlpatterns" ]] || exceptions="-no-exceptions" |
| 419 | case "${PV}:${CHOST}" in |
|
|
| 420 | 4.6.0*:*-darwin*) |
|
|
| 421 | : # http://bugreports.qt.nokia.com/browse/QTBUG-5909 |
|
|
| 422 | # workaround for compilation error on OSX (qt-gui) |
|
|
| 423 | ;; |
|
|
| 424 | *) |
|
|
| 425 | exceptions="-no-exceptions" |
|
|
| 426 | ;; |
|
|
| 427 | esac |
|
|
| 428 | fi |
|
|
| 429 | ;; |
486 | ;; |
| 430 | *) |
487 | *) |
| 431 | [[ ${PN} == "qt-xmlpatterns" ]] || exceptions="-no-exceptions" |
488 | has exceptions "${IUSE//+}" && exceptions="$(qt_use exceptions)" |
| 432 | ;; |
489 | ;; |
| 433 | esac |
490 | esac |
| 434 | |
491 | |
| 435 | # note about -reduce-relocations: |
492 | # note about -reduce-relocations: |
| 436 | # That flag seems to introduce major breakage to applications, |
493 | # That flag seems to introduce major breakage to applications, |
| … | |
… | |
| 449 | -nomake examples -nomake demos" |
506 | -nomake examples -nomake demos" |
| 450 | |
507 | |
| 451 | echo "${myconf}" |
508 | echo "${myconf}" |
| 452 | } |
509 | } |
| 453 | |
510 | |
|
|
511 | # @FUNCTION: prepare_directories |
|
|
512 | # @USAGE: < directories > |
|
|
513 | # @DESCRIPTION: |
|
|
514 | # Generates makefiles for the directories set in $QT4_TARGET_DIRECTORIES |
|
|
515 | prepare_directories() { |
|
|
516 | for x in "$@"; do |
|
|
517 | pushd "${S}"/${x} >/dev/null |
|
|
518 | einfo "running qmake in: $x" |
|
|
519 | # avoid running over the maximum argument number, bug #299810 |
|
|
520 | { |
|
|
521 | echo "${S}"/mkspecs/common/*.conf |
|
|
522 | find "${S}" -name '*.pr[io]' |
|
|
523 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
|
|
524 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
|
|
525 | popd >/dev/null |
|
|
526 | done |
|
|
527 | } |
|
|
528 | |
|
|
529 | |
| 454 | # @FUNCTION: build_directories |
530 | # @FUNCTION: build_directories |
| 455 | # @USAGE: < directories > |
531 | # @USAGE: < directories > |
| 456 | # @DESCRIPTION: |
532 | # @DESCRIPTION: |
| 457 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
533 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
| 458 | build_directories() { |
534 | build_directories() { |
| 459 | for x in "$@"; do |
535 | for x in "$@"; do |
| 460 | pushd "${S}"/${x} >/dev/null |
536 | pushd "${S}"/${x} >/dev/null |
| 461 | sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" $(find "${S}" -name '*.pr[io]') "${S}"/mkspecs/common/*.conf || die |
537 | emake CC="$(tc-getCC)" \ |
| 462 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
538 | CXX="$(tc-getCXX)" \ |
| 463 | emake CC="@echo compiling \$< && $(tc-getCC)" \ |
|
|
| 464 | CXX="@echo compiling \$< && $(tc-getCXX)" \ |
|
|
| 465 | LINK="@echo linking \$@ && $(tc-getCXX)" || die "emake failed" |
539 | LINK="$(tc-getCXX)" || die "emake failed" |
| 466 | popd >/dev/null |
540 | popd >/dev/null |
| 467 | done |
541 | done |
| 468 | } |
542 | } |
| 469 | |
543 | |
| 470 | # @FUNCTION: install_directories |
544 | # @FUNCTION: install_directories |
| … | |
… | |
| 493 | # @DESCRIPTION: |
567 | # @DESCRIPTION: |
| 494 | # List variables that should be defined at the top of QtCore/qconfig.h |
568 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 495 | : ${QCONFIG_DEFINE:=} |
569 | : ${QCONFIG_DEFINE:=} |
| 496 | |
570 | |
| 497 | # @FUNCTION: install_qconfigs |
571 | # @FUNCTION: install_qconfigs |
|
|
572 | # @DESCRIPTION: |
| 498 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
573 | # Install gentoo-specific mkspecs configurations |
| 499 | install_qconfigs() { |
574 | install_qconfigs() { |
| 500 | local x |
575 | local x |
| 501 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
576 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 502 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
577 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 503 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
578 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 514 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
589 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 515 | fi |
590 | fi |
| 516 | } |
591 | } |
| 517 | |
592 | |
| 518 | # @FUNCTION: generate_qconfigs |
593 | # @FUNCTION: generate_qconfigs |
|
|
594 | # @DESCRIPTION: |
| 519 | # @DESCRIPTION: Generates gentoo-specific configurations |
595 | # Generates gentoo-specific configurations |
| 520 | generate_qconfigs() { |
596 | generate_qconfigs() { |
| 521 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
597 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 522 | local x qconfig_add qconfig_remove qconfig_new |
598 | local x qconfig_add qconfig_remove qconfig_new |
| 523 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
599 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 524 | [[ -f ${x} ]] || continue |
600 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 538 | |
614 | |
| 539 | # generate list of QT_CONFIG entries from the existing list |
615 | # generate list of QT_CONFIG entries from the existing list |
| 540 | # including qconfig_add and excluding qconfig_remove |
616 | # including qconfig_add and excluding qconfig_remove |
| 541 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
617 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
| 542 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
618 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
| 543 | hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
619 | has ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
| 544 | done |
620 | done |
| 545 | |
621 | |
| 546 | # replace the existing QT_CONFIG list with qconfig_new |
622 | # replace the existing QT_CONFIG list with qconfig_new |
| 547 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
623 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
| 548 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
624 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
| … | |
… | |
| 572 | fi |
648 | fi |
| 573 | fi |
649 | fi |
| 574 | } |
650 | } |
| 575 | |
651 | |
| 576 | # @FUNCTION: qt4-build_pkg_postrm |
652 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
653 | # @DESCRIPTION: |
| 577 | # @DESCRIPTION: Generate configurations when the package is completely removed |
654 | # Generate configurations when the package is completely removed |
| 578 | qt4-build_pkg_postrm() { |
655 | qt4-build_pkg_postrm() { |
| 579 | generate_qconfigs |
656 | generate_qconfigs |
| 580 | } |
657 | } |
| 581 | |
658 | |
| 582 | # @FUNCTION: qt4-build_pkg_postinst |
659 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
660 | # @DESCRIPTION: |
| 583 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
661 | # Generate configuration, plus throws a message about possible |
| 584 | # breakages and proposed solutions. |
662 | # breakages and proposed solutions. |
| 585 | qt4-build_pkg_postinst() { |
663 | qt4-build_pkg_postinst() { |
| 586 | generate_qconfigs |
664 | generate_qconfigs |
| 587 | |
|
|
| 588 | if [[ "${PN}" == "qt-core" ]]; then |
|
|
| 589 | echo |
|
|
| 590 | ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" |
|
|
| 591 | ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" |
|
|
| 592 | ewarn "should recompile the packages providing these plugins. Also, make sure you" |
|
|
| 593 | ewarn "compile the Qt packages, and the packages that depend on it, with the same" |
|
|
| 594 | ewarn "GCC version and the same USE flag settings (especially the debug flag)." |
|
|
| 595 | ewarn |
|
|
| 596 | ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" |
|
|
| 597 | ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," |
|
|
| 598 | ewarn "make sure all your Qt4 packages are up-to-date and built with the same" |
|
|
| 599 | ewarn "configuration." |
|
|
| 600 | ewarn |
|
|
| 601 | ewarn "For more information, see http://doc.trolltech.com/${PV%.*}/plugins-howto.html" |
|
|
| 602 | echo |
|
|
| 603 | fi |
|
|
| 604 | } |
665 | } |
| 605 | |
666 | |
| 606 | # @FUNCTION: skip_qmake_build_patch |
667 | # @FUNCTION: skip_qmake_build_patch |
| 607 | # @DESCRIPTION: |
668 | # @DESCRIPTION: |
| 608 | # Don't need to build qmake, as it's already installed from qt-core |
669 | # Don't need to build qmake, as it's already installed from qt-core |
| … | |
… | |
| 734 | fi |
795 | fi |
| 735 | |
796 | |
| 736 | echo "${spec}" |
797 | echo "${spec}" |
| 737 | } |
798 | } |
| 738 | |
799 | |
|
|
800 | # @FUNCTION: qt_assistant_cleanup |
|
|
801 | # @RETURN: nothing |
|
|
802 | # @DESCRIPTION: |
|
|
803 | # Tries to clean up tools.pro for qt-assistant ebuilds |
|
|
804 | # Meant to be called in src_prepare |
|
|
805 | qt_assistant_cleanup() { |
|
|
806 | # different versions (and branches...) may need different handling, |
|
|
807 | # add a case if you need special handling |
|
|
808 | case "${MY_PV_EXTRA}" in |
|
|
809 | *kde-qt*) |
|
|
810 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
811 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
812 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
813 | ;; |
|
|
814 | *) |
|
|
815 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
816 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
817 | -e "s/^\([ \t]*pixeltool\) /\1 qdoc3 /" \ |
|
|
818 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
819 | ;; |
|
|
820 | esac |
|
|
821 | } |
|
|
822 | |
|
|
823 | # @FUNCTION: qt_nolibx11 |
|
|
824 | # @RETURN: nothing |
|
|
825 | # @DESCRIPTION: |
|
|
826 | # Ignore X11 tests for packages that don't need X libraries installed |
|
|
827 | qt_nolibx11() { |
|
|
828 | einfo "removing X11 check to allow X-less compilation" |
|
|
829 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
|
|
830 | die "x11 check sed failed" |
|
|
831 | } |
|
|
832 | |
| 739 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst |
833 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |