| 1 | # Copyright 1999-2012 Gentoo Foundation |
1 | # Copyright 1999-2012 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.118 2012/02/09 22:58:36 pesa Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.125 2012/04/19 14:52:12 pesa Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-build.eclass |
5 | # @ECLASS: qt4-build.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Qt herd <qt@gentoo.org> |
7 | # Qt herd <qt@gentoo.org> |
| 8 | # @BLURB: Eclass for Qt4 split ebuilds. |
8 | # @BLURB: Eclass for Qt4 split ebuilds. |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # This eclass contains various functions that are used when building Qt4. |
10 | # This eclass contains various functions that are used when building Qt4. |
| 11 | |
11 | |
|
|
12 | case ${EAPI} in |
|
|
13 | 2|3|4) : ;; |
|
|
14 | *) die "qt4-build.eclass requires EAPI 2, 3 or 4." ;; |
|
|
15 | esac |
|
|
16 | |
| 12 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
17 | inherit base eutils flag-o-matic multilib toolchain-funcs versionator |
|
|
18 | |
|
|
19 | if [[ ${PV} == *9999* ]]; then |
|
|
20 | QT4_BUILD_TYPE="live" |
|
|
21 | inherit git-2 |
|
|
22 | else |
|
|
23 | QT4_BUILD_TYPE="release" |
|
|
24 | fi |
|
|
25 | |
|
|
26 | HOMEPAGE="http://qt-project.org/ http://qt.nokia.com/" |
|
|
27 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
| 13 | |
28 | |
| 14 | MY_PV=${PV/_/-} |
29 | MY_PV=${PV/_/-} |
| 15 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
30 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
| 16 | |
31 | |
| 17 | HOMEPAGE="http://qt.nokia.com/ http://qt-project.org/" |
32 | case ${QT4_BUILD_TYPE} in |
|
|
33 | live) |
|
|
34 | EGIT_REPO_URI="git://gitorious.org/qt/qt.git |
|
|
35 | https://git.gitorious.org/qt/qt.git" |
|
|
36 | EGIT_BRANCH="${PV%.9999}" |
|
|
37 | ;; |
|
|
38 | release) |
| 18 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
39 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
| 19 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
40 | ;; |
|
|
41 | esac |
| 20 | |
42 | |
| 21 | IUSE="aqua debug pch" |
43 | IUSE="aqua debug pch" |
| 22 | |
|
|
| 23 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && |
44 | if [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]]; then |
| 24 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
|
|
| 25 | IUSE+=" +exceptions" |
45 | IUSE+=" +exceptions" |
| 26 | |
46 | fi |
| 27 | if version_is_at_least 4.7.99999999; then |
47 | if version_is_at_least 4.8; then |
| 28 | IUSE+=" c++0x qpa" |
48 | IUSE+=" c++0x qpa" |
| 29 | fi |
49 | fi |
| 30 | |
50 | |
| 31 | DEPEND="dev-util/pkgconfig" |
51 | DEPEND="dev-util/pkgconfig" |
|
|
52 | if [[ ${QT4_BUILD_TYPE} == live ]]; then |
|
|
53 | DEPEND+=" dev-lang/perl" |
|
|
54 | fi |
|
|
55 | |
| 32 | RDEPEND=" |
56 | RDEPEND=" |
| 33 | !<x11-libs/qt-assistant-${PV} |
57 | !<x11-libs/qt-assistant-${PV} |
| 34 | !>x11-libs/qt-assistant-${PV}-r9999 |
58 | !>x11-libs/qt-assistant-${PV}-r9999 |
|
|
59 | !<x11-libs/qt-bearer-${PV} |
|
|
60 | !>x11-libs/qt-bearer-${PV}-r9999 |
| 35 | !<x11-libs/qt-core-${PV} |
61 | !<x11-libs/qt-core-${PV} |
| 36 | !>x11-libs/qt-core-${PV}-r9999 |
62 | !>x11-libs/qt-core-${PV}-r9999 |
| 37 | !<x11-libs/qt-dbus-${PV} |
63 | !<x11-libs/qt-dbus-${PV} |
| 38 | !>x11-libs/qt-dbus-${PV}-r9999 |
64 | !>x11-libs/qt-dbus-${PV}-r9999 |
| 39 | !<x11-libs/qt-declarative-${PV} |
65 | !<x11-libs/qt-declarative-${PV} |
| … | |
… | |
| 44 | !>x11-libs/qt-gui-${PV}-r9999 |
70 | !>x11-libs/qt-gui-${PV}-r9999 |
| 45 | !<x11-libs/qt-multimedia-${PV} |
71 | !<x11-libs/qt-multimedia-${PV} |
| 46 | !>x11-libs/qt-multimedia-${PV}-r9999 |
72 | !>x11-libs/qt-multimedia-${PV}-r9999 |
| 47 | !<x11-libs/qt-opengl-${PV} |
73 | !<x11-libs/qt-opengl-${PV} |
| 48 | !>x11-libs/qt-opengl-${PV}-r9999 |
74 | !>x11-libs/qt-opengl-${PV}-r9999 |
|
|
75 | !<x11-libs/qt-openvg-${PV} |
|
|
76 | !>x11-libs/qt-openvg-${PV}-r9999 |
| 49 | !<x11-libs/qt-phonon-${PV} |
77 | !<x11-libs/qt-phonon-${PV} |
| 50 | !>x11-libs/qt-phonon-${PV}-r9999 |
78 | !>x11-libs/qt-phonon-${PV}-r9999 |
| 51 | !<x11-libs/qt-qt3support-${PV} |
79 | !<x11-libs/qt-qt3support-${PV} |
| 52 | !>x11-libs/qt-qt3support-${PV}-r9999 |
80 | !>x11-libs/qt-qt3support-${PV}-r9999 |
| 53 | !<x11-libs/qt-script-${PV} |
81 | !<x11-libs/qt-script-${PV} |
| … | |
… | |
| 74 | |
102 | |
| 75 | # Protect users by not allowing downgrades between releases |
103 | # Protect users by not allowing downgrades between releases |
| 76 | # Downgrading revisions within the same release should be allowed |
104 | # Downgrading revisions within the same release should be allowed |
| 77 | if has_version '>'${CATEGORY}/${P}-r9999; then |
105 | if has_version '>'${CATEGORY}/${P}-r9999; then |
| 78 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
106 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
107 | eerror |
| 79 | eerror "Sanity check to keep you from breaking your system:" |
108 | eerror "Sanity check to keep you from breaking your system:" |
| 80 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
109 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
|
|
110 | eerror |
| 81 | die "aborting to save your system" |
111 | die "aborting to save your system" |
| 82 | else |
112 | else |
| 83 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
113 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
| 84 | fi |
114 | fi |
| 85 | fi |
115 | fi |
| 86 | |
116 | |
| 87 | if [[ ${PN} == "qt-webkit" ]]; then |
117 | if [[ ${PN} == qt-webkit ]]; then |
| 88 | eshopts_push -s extglob |
118 | eshopts_push -s extglob |
| 89 | if is-flagq '-g?(gdb)?([1-9])'; then |
119 | if is-flagq '-g?(gdb)?([1-9])'; then |
| 90 | echo |
120 | echo |
| 91 | ewarn "You have enabled debug info (probably have -g or -ggdb in your \$C{,XX}FLAGS)." |
121 | ewarn "You have enabled debug info (probably have -g or -ggdb in your CFLAGS/CXXFLAGS)." |
| 92 | ewarn "You may experience really long compilation times and/or increased memory usage." |
122 | ewarn "You may experience really long compilation times and/or increased memory usage." |
| 93 | ewarn "If compilation fails, please try removing -g{,gdb} before reporting a bug." |
123 | ewarn "If compilation fails, please try removing -g/-ggdb before reporting a bug." |
| 94 | ewarn "For more info check out bug #307861" |
124 | ewarn "For more info check out bug #307861" |
| 95 | echo |
125 | echo |
| 96 | fi |
126 | fi |
| 97 | eshopts_pop |
127 | eshopts_pop |
| 98 | fi |
128 | fi |
| … | |
… | |
| 108 | [[ ${CHOST} == *-apple-darwin* ]] && \ |
138 | [[ ${CHOST} == *-apple-darwin* ]] && \ |
| 109 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm |
139 | QT4_EXTRACT_DIRECTORIES="src/gui/kernel/qapplication_mac.mm |
| 110 | ${QT4_EXTRACT_DIRECTORIES}" |
140 | ${QT4_EXTRACT_DIRECTORIES}" |
| 111 | fi |
141 | fi |
| 112 | |
142 | |
| 113 | # Make sure ebuilds use the required EAPI |
|
|
| 114 | if [[ ${EAPI} != [234] ]]; then |
|
|
| 115 | eerror "The qt4-build eclass requires EAPI 2,3 or 4 but this ebuild is using" |
|
|
| 116 | eerror "EAPI=${EAPI:-0}. The ebuild author or editor failed. This ebuild needs to be" |
|
|
| 117 | eerror "fixed. Using qt4-build eclass without EAPI 2,3 or 4 will fail." |
|
|
| 118 | die "qt4-build eclass requires EAPI 2,3 or 4" |
|
|
| 119 | fi |
|
|
| 120 | |
|
|
| 121 | if ! version_is_at_least 4.1 $(gcc-version); then |
143 | if ! version_is_at_least 4.1 $(gcc-version); then |
| 122 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
144 | ewarn "Using a GCC version lower than 4.1 is not supported." |
| 123 | fi |
145 | fi |
| 124 | } |
146 | } |
| 125 | |
147 | |
| 126 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
148 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
| 127 | # @DESCRIPTION: |
149 | # @DESCRIPTION: |
| … | |
… | |
| 137 | # @DESCRIPTION: |
159 | # @DESCRIPTION: |
| 138 | # Unpacks the sources. |
160 | # Unpacks the sources. |
| 139 | qt4-build_src_unpack() { |
161 | qt4-build_src_unpack() { |
| 140 | setqtenv |
162 | setqtenv |
| 141 | |
163 | |
|
|
164 | case ${QT4_BUILD_TYPE} in |
|
|
165 | live) |
|
|
166 | git-2_src_unpack |
|
|
167 | ;; |
|
|
168 | release) |
| 142 | local tarball="${MY_P}.tar.gz" target= targets= |
169 | local tarball="${MY_P}.tar.gz" target= targets= |
| 143 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
170 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 144 | src/{qbase,qt_targets,qt_install}.pri bin config.tests \ |
171 | src/{qbase,qt_targets,qt_install}.pri bin config.tests \ |
| 145 | mkspecs qmake ${QT4_EXTRACT_DIRECTORIES} |
172 | mkspecs qmake ${QT4_EXTRACT_DIRECTORIES} |
| 146 | do |
173 | do |
| 147 | targets+="${MY_P}/${target} " |
174 | targets+="${MY_P}/${target} " |
| 148 | done |
175 | done |
| 149 | |
176 | |
| 150 | ebegin "Unpacking parts of ${tarball}:" ${targets//${MY_P}\/} |
177 | ebegin "Unpacking parts of ${tarball}:" ${targets//${MY_P}\/} |
| 151 | tar -xzf "${DISTDIR}/${tarball}" ${targets} |
178 | tar -xzf "${DISTDIR}/${tarball}" ${targets} |
| 152 | eend $? || die "failed to unpack" |
179 | eend $? || die "failed to unpack" |
|
|
180 | ;; |
|
|
181 | esac |
| 153 | } |
182 | } |
| 154 | |
183 | |
| 155 | # @ECLASS-VARIABLE: PATCHES |
184 | # @ECLASS-VARIABLE: PATCHES |
| 156 | # @DEFAULT_UNSET |
185 | # @DEFAULT_UNSET |
| 157 | # @DESCRIPTION: |
186 | # @DESCRIPTION: |
| … | |
… | |
| 169 | # @DESCRIPTION: |
198 | # @DESCRIPTION: |
| 170 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
199 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
| 171 | # the build system in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified in /etc/make.conf. |
200 | # the build system in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified in /etc/make.conf. |
| 172 | qt4-build_src_prepare() { |
201 | qt4-build_src_prepare() { |
| 173 | setqtenv |
202 | setqtenv |
| 174 | cd "${S}" |
|
|
| 175 | |
203 | |
|
|
204 | if [[ ${QT4_BUILD_TYPE} == live ]]; then |
|
|
205 | QTDIR="." ./bin/syncqt || die "syncqt failed" |
|
|
206 | fi |
|
|
207 | |
| 176 | if version_is_at_least "4.7"; then |
208 | if version_is_at_least 4.7; then |
| 177 | # fix libX11 dependency on non X packages |
209 | # fix libX11 dependency on non X packages |
| 178 | local nolibx11_pkgs="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
210 | local nolibx11_pkgs="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
| 179 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
211 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
| 180 | |
212 | |
| 181 | qt_assistant_cleanup |
213 | qt_assistant_cleanup |
| … | |
… | |
| 194 | skip_qmake_build |
226 | skip_qmake_build |
| 195 | skip_project_generation |
227 | skip_project_generation |
| 196 | symlink_binaries_to_buildtree |
228 | symlink_binaries_to_buildtree |
| 197 | fi |
229 | fi |
| 198 | |
230 | |
| 199 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
231 | if [[ ${CHOST} == *86*-apple-darwin* ]]; then |
| 200 | # qmake bus errors with -O2 but -O3 works |
232 | # qmake bus errors with -O2 or -O3 but -O1 works |
|
|
233 | # Bug 373061 |
| 201 | replace-flags -O2 -O3 |
234 | replace-flags -O[23] -O1 |
| 202 | fi |
235 | fi |
| 203 | |
236 | |
| 204 | # Bug 178652 |
237 | # Bug 178652 |
| 205 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
238 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 206 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
239 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 207 | append-flags -fno-gcse |
240 | append-flags -fno-gcse |
| 208 | fi |
241 | fi |
| 209 | |
242 | |
| 210 | if use_if_iuse c++0x; then |
243 | if use_if_iuse c++0x; then |
|
|
244 | echo |
| 211 | ewarn "You are about to build Qt4 using the C++11 standard. Even though" |
245 | ewarn "You are about to build Qt4 using the C++11 standard. Even though" |
| 212 | ewarn "this is an official standard, some of the reverse dependencies" |
246 | ewarn "this is an official standard, some of the reverse dependencies" |
| 213 | ewarn "may fail to compile or link againt the Qt4 libraries. Before" |
247 | ewarn "may fail to compile or link againt the Qt4 libraries. Before" |
| 214 | ewarn "reporting a bug, make sure your bug is reproducible with c++0x" |
248 | ewarn "reporting a bug, make sure your bug is reproducible with c++0x" |
| 215 | ewarn "disabled." |
249 | ewarn "disabled." |
|
|
250 | echo |
| 216 | append-flags -std=c++0x |
251 | append-flags -std=c++0x |
| 217 | fi |
252 | fi |
| 218 | |
253 | |
| 219 | # Unsupported old gcc versions - hardened needs this :( |
254 | # Unsupported old gcc versions - hardened needs this :( |
| 220 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
255 | if [[ $(gcc-major-version) -lt 4 ]]; then |
| 221 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
256 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 222 | append-cxxflags -fno-stack-protector |
257 | append-cxxflags -fno-stack-protector |
| 223 | # Bug 253127 |
258 | # Bug 253127 |
| 224 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
259 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
| 225 | -i mkspecs/common/g++.conf || die |
260 | -i mkspecs/common/g++.conf || die |
| … | |
… | |
| 255 | sed -e 's:/X11R6/:/:' -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
290 | sed -e 's:/X11R6/:/:' -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 256 | |
291 | |
| 257 | if [[ ${CHOST} == *-darwin* ]]; then |
292 | if [[ ${CHOST} == *-darwin* ]]; then |
| 258 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
293 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 259 | # crippled (by design) :/ |
294 | # crippled (by design) :/ |
|
|
295 | local mac_gpp_conf= |
|
|
296 | if [[ -f mkspecs/common/mac-g++.conf ]]; then |
|
|
297 | # qt < 4.8 has mac-g++.conf |
|
|
298 | mac_gpp_conf="mkspecs/common/mac-g++.conf" |
|
|
299 | elif [[ -f mkspecs/common/g++-macx.conf ]]; then |
|
|
300 | # qt >= 4.8 has g++-macx.conf |
|
|
301 | mac_gpp_conf="mkspecs/common/g++-macx.conf" |
|
|
302 | else |
|
|
303 | die "no known conf file for mac found" |
|
|
304 | fi |
| 260 | sed \ |
305 | sed \ |
| 261 | -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
306 | -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 262 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
307 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 263 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
308 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
| 264 | -e "s:-arch\s\w*::g" \ |
309 | -e "s:-arch\s\w*::g" \ |
| 265 | -i mkspecs/common/mac-g++.conf \ |
310 | -i ${mac_gpp_conf} \ |
| 266 | || die "sed mkspecs/common/mac-g++.conf failed" |
311 | || die "sed ${mac_gpp_conf} failed" |
| 267 | |
312 | |
| 268 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
313 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
| 269 | # fix arch handling (automagically duplicates our -arch arg and breaks |
314 | # fix arch handling (automagically duplicates our -arch arg and breaks |
| 270 | # pch). Additionally disable Xarch support. |
315 | # pch). Additionally disable Xarch support. |
|
|
316 | local mac_gcc_confs="${mac_gpp_conf}" |
|
|
317 | if [[ -f mkspecs/common/gcc-base-macx.conf ]]; then |
|
|
318 | mac_gcc_confs+=" mkspecs/common/gcc-base-macx.conf" |
|
|
319 | fi |
| 271 | sed \ |
320 | sed \ |
| 272 | -e "s:-arch i386::" \ |
321 | -e "s:-arch i386::" \ |
| 273 | -e "s:-arch ppc::" \ |
322 | -e "s:-arch ppc::" \ |
| 274 | -e "s:-arch x86_64::" \ |
323 | -e "s:-arch x86_64::" \ |
| 275 | -e "s:-arch ppc64::" \ |
324 | -e "s:-arch ppc64::" \ |
| 276 | -e "s:-arch \$i::" \ |
325 | -e "s:-arch \$i::" \ |
| 277 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
326 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
| 278 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
327 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
| 279 | -e "s:-Xarch_x86_64::g" \ |
328 | -e "s:-Xarch_x86_64::g" \ |
| 280 | -e "s:-Xarch_ppc64::g" \ |
329 | -e "s:-Xarch_ppc64::g" \ |
| 281 | -i configure mkspecs/common/mac-g++.conf \ |
330 | -i configure ${mac_gcc_confs} \ |
| 282 | || die "sed -arch/-Xarch failed" |
331 | || die "sed -arch/-Xarch failed" |
| 283 | |
332 | |
| 284 | # On Snow Leopard don't fall back to 10.5 deployment target. |
333 | # On Snow Leopard don't fall back to 10.5 deployment target. |
| 285 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
334 | if [[ ${CHOST} == *-apple-darwin10 ]]; then |
| 286 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
335 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
| 287 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
336 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
| 288 | -i configure mkspecs/common/mac-g++.conf \ |
337 | -i configure ${mac_gpp_conf} \ |
| 289 | || die "sed deployment target failed" |
338 | || die "sed deployment target failed" |
| 290 | fi |
339 | fi |
| 291 | fi |
340 | fi |
| 292 | |
341 | |
| 293 | # this one is needed for all systems with a separate -liconv, apart from |
342 | # this one is needed for all systems with a separate -liconv, apart from |
| 294 | # Darwin, for which the sources already cater for -liconv |
343 | # Darwin, for which the sources already cater for -liconv |
| 295 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] ; then |
344 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]]; then |
| 296 | sed -e 's|mac:\(LIBS += -liconv\)|\1|g' \ |
345 | sed -e 's|mac:\(LIBS += -liconv\)|\1|g' \ |
| 297 | -i config.tests/unix/iconv/iconv.pro \ |
346 | -i config.tests/unix/iconv/iconv.pro \ |
| 298 | || die "sed iconv.pro failed" |
347 | || die "sed iconv.pro failed" |
| 299 | fi |
348 | fi |
| 300 | |
349 | |
| … | |
… | |
| 313 | # @FUNCTION: qt4-build_src_configure |
362 | # @FUNCTION: qt4-build_src_configure |
| 314 | # @DESCRIPTION: |
363 | # @DESCRIPTION: |
| 315 | # Default configure phase |
364 | # Default configure phase |
| 316 | qt4-build_src_configure() { |
365 | qt4-build_src_configure() { |
| 317 | setqtenv |
366 | setqtenv |
| 318 | myconf="$(standard_configure_options) ${myconf}" |
367 | |
|
|
368 | local conf=" |
|
|
369 | -prefix ${QTPREFIXDIR} |
|
|
370 | -bindir ${QTBINDIR} |
|
|
371 | -libdir ${QTLIBDIR} |
|
|
372 | -docdir ${QTDOCDIR} |
|
|
373 | -headerdir ${QTHEADERDIR} |
|
|
374 | -plugindir ${QTPLUGINDIR} |
|
|
375 | $(version_is_at_least 4.7 && echo -importdir ${QTIMPORTDIR}) |
|
|
376 | -datadir ${QTDATADIR} |
|
|
377 | -translationdir ${QTTRANSDIR} |
|
|
378 | -sysconfdir ${QTSYSCONFDIR} |
|
|
379 | -examplesdir ${QTEXAMPLESDIR} |
|
|
380 | -demosdir ${QTDEMOSDIR} |
|
|
381 | -opensource -confirm-license |
|
|
382 | -shared -fast -largefile -stl -verbose |
|
|
383 | -nomake examples -nomake demos" |
|
|
384 | |
|
|
385 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
|
|
386 | # $(tc-arch). Therefore we convert it to supported values. |
|
|
387 | case "$(tc-arch)" in |
|
|
388 | amd64|x64-*) conf+=" -arch x86_64" ;; |
|
|
389 | ppc-macos) conf+=" -arch ppc" ;; |
|
|
390 | ppc|ppc64|ppc-*) conf+=" -arch powerpc" ;; |
|
|
391 | sparc|sparc-*|sparc64-*) conf+=" -arch sparc" ;; |
|
|
392 | x86-macos) conf+=" -arch x86" ;; |
|
|
393 | x86|x86-*) conf+=" -arch i386" ;; |
|
|
394 | alpha|arm|ia64|mips|s390) conf+=" -arch $(tc-arch)" ;; |
|
|
395 | hppa|sh) conf+=" -arch generic" ;; |
|
|
396 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
|
|
397 | esac |
|
|
398 | |
|
|
399 | conf+=" -platform $(qt_mkspecs_dir)" |
|
|
400 | |
|
|
401 | [[ $(get_libdir) != lib ]] && conf+=" -L${EPREFIX}/usr/$(get_libdir)" |
|
|
402 | |
|
|
403 | # debug/release |
|
|
404 | if use debug; then |
|
|
405 | conf+=" -debug" |
|
|
406 | else |
|
|
407 | conf+=" -release" |
|
|
408 | fi |
|
|
409 | conf+=" -no-separate-debug-info" |
|
|
410 | |
|
|
411 | # exceptions USE flag |
|
|
412 | conf+=" $(in_iuse exceptions && qt_use exceptions || echo -exceptions)" |
|
|
413 | |
|
|
414 | # disable RPATH on Qt >= 4.8 (bug 380415) |
|
|
415 | version_is_at_least 4.8 && conf+=" -no-rpath" |
|
|
416 | |
|
|
417 | # precompiled headers don't work on hardened, where the flag is masked |
|
|
418 | conf+=" $(qt_use pch)" |
|
|
419 | |
|
|
420 | # -reduce-relocations |
|
|
421 | # This flag seems to introduce major breakage to applications, |
|
|
422 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
423 | # construct a QApplication before a QPaintDevice" on Solaris. |
|
|
424 | # -- Daniel Vergien |
|
|
425 | [[ ${CHOST} != *-solaris* ]] && conf+=" -reduce-relocations" |
| 319 | |
426 | |
| 320 | # this one is needed for all systems with a separate -liconv, apart from |
427 | # this one is needed for all systems with a separate -liconv, apart from |
| 321 | # Darwin, for which the sources already cater for -liconv |
428 | # Darwin, for which the sources already cater for -liconv |
| 322 | use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] && \ |
429 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]]; then |
| 323 | myconf+=" -liconv" |
430 | conf+=" -liconv" |
|
|
431 | fi |
| 324 | |
432 | |
| 325 | if use_if_iuse glib; then |
433 | if use_if_iuse glib; then |
| 326 | # use -I, -L and -l from configure |
|
|
| 327 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
434 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
| 328 | # avoid the -pthread argument |
435 | # avoid the -pthread argument |
| 329 | myconf+=" ${glibflags//-pthread}" |
436 | conf+=" ${glibflags//-pthread}" |
| 330 | unset glibflags |
437 | unset glibflags |
| 331 | fi |
438 | fi |
| 332 | |
439 | |
| 333 | if use_if_iuse qpa; then |
440 | if use_if_iuse qpa; then |
| 334 | ewarn |
441 | echo |
| 335 | ewarn "The qpa useflag enables the Qt Platform Abstraction, formely" |
442 | ewarn "The qpa useflag enables the Qt Platform Abstraction, formely" |
| 336 | ewarn "known as Qt Lighthouse. If you are not sure what that is, then" |
443 | ewarn "known as Qt Lighthouse. If you are not sure what that is, then" |
| 337 | ewarn "disable it before reporting any bugs related to this useflag." |
444 | ewarn "disable it before reporting any bugs related to this useflag." |
| 338 | ewarn |
445 | echo |
| 339 | myconf+=" -qpa" |
446 | conf+=" -qpa" |
| 340 | fi |
447 | fi |
| 341 | |
448 | |
| 342 | if use aqua ; then |
449 | if use aqua; then |
| 343 | # On (snow) leopard use the new (frameworked) cocoa code. |
450 | # On (snow) leopard use the new (frameworked) cocoa code. |
| 344 | if [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
451 | if [[ ${CHOST##*-darwin} -ge 9 ]]; then |
| 345 | myconf+=" -cocoa -framework" |
452 | conf+=" -cocoa -framework" |
|
|
453 | # We need the source's headers, not the installed ones. |
|
|
454 | conf+=" -I${S}/include" |
|
|
455 | # Add hint for the framework location. |
|
|
456 | conf+=" -F${QTLIBDIR}" |
| 346 | |
457 | |
| 347 | # We are crazy and build cocoa + qt3support :-) |
458 | # We are crazy and build cocoa + qt3support :-) |
| 348 | if use qt3support; then |
459 | if use qt3support; then |
| 349 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
460 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
| 350 | -i configure || die |
461 | -i configure || die |
| 351 | fi |
462 | fi |
| 352 | |
463 | else |
| 353 | # We need the source's headers, not the installed ones. |
464 | conf+=" -no-framework" |
| 354 | myconf+=" -I${S}/include" |
|
|
| 355 | |
|
|
| 356 | # Add hint for the framework location. |
|
|
| 357 | myconf+=" -F${QTLIBDIR}" |
|
|
| 358 | fi |
465 | fi |
| 359 | else |
466 | else |
| 360 | # freetype2 include dir is non-standard, thus include it on configure |
467 | # freetype2 include dir is non-standard, thus pass it to configure |
| 361 | # use -I from configure |
|
|
| 362 | myconf+=" $(pkg-config --cflags freetype2)" |
468 | conf+=" $(pkg-config --cflags-only-I freetype2)" |
| 363 | fi |
469 | fi |
| 364 | |
470 | |
|
|
471 | conf+=" ${myconf}" |
|
|
472 | myconf= |
|
|
473 | |
| 365 | echo ./configure ${myconf} |
474 | echo ./configure ${conf} |
| 366 | ./configure ${myconf} || die "./configure failed" |
475 | ./configure ${conf} || die "./configure failed" |
| 367 | myconf="" |
|
|
| 368 | |
476 | |
| 369 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
477 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
| 370 | } |
478 | } |
| 371 | |
479 | |
| 372 | # @FUNCTION: qt4-build_src_compile |
480 | # @FUNCTION: qt4-build_src_compile |
| … | |
… | |
| 381 | # @FUNCTION: qt4-build_src_test |
489 | # @FUNCTION: qt4-build_src_test |
| 382 | # @DESCRIPTION: |
490 | # @DESCRIPTION: |
| 383 | # Runs tests only in target directories. |
491 | # Runs tests only in target directories. |
| 384 | qt4-build_src_test() { |
492 | qt4-build_src_test() { |
| 385 | # QtMultimedia does not have any test suite (bug #332299) |
493 | # QtMultimedia does not have any test suite (bug #332299) |
| 386 | [[ ${PN} == "qt-multimedia" ]] && return |
494 | [[ ${PN} == qt-multimedia ]] && return |
| 387 | |
495 | |
| 388 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
496 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
| 389 | emake -j1 check -C ${dir} |
497 | emake -j1 check -C ${dir} |
| 390 | done |
498 | done |
| 391 | } |
499 | } |
| … | |
… | |
| 393 | # @FUNCTION: fix_includes |
501 | # @FUNCTION: fix_includes |
| 394 | # @DESCRIPTION: |
502 | # @DESCRIPTION: |
| 395 | # For MacOS X we need to add some symlinks when frameworks are |
503 | # For MacOS X we need to add some symlinks when frameworks are |
| 396 | # being used, to avoid complications with some more or less stupid packages. |
504 | # being used, to avoid complications with some more or less stupid packages. |
| 397 | fix_includes() { |
505 | fix_includes() { |
| 398 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
506 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]]; then |
| 399 | # Some packages tend to include <Qt/...> |
507 | # Some packages tend to include <Qt/...> |
| 400 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
508 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
| 401 | |
509 | |
| 402 | # Fake normal headers when frameworks are installed... eases life later on |
510 | # Fake normal headers when frameworks are installed... eases life later on |
| 403 | local dest f h |
511 | local dest f h |
| … | |
… | |
| 455 | PLATFORM=$(qt_mkspecs_dir) |
563 | PLATFORM=$(qt_mkspecs_dir) |
| 456 | |
564 | |
| 457 | unset QMAKESPEC |
565 | unset QMAKESPEC |
| 458 | } |
566 | } |
| 459 | |
567 | |
| 460 | # @FUNCTION: standard_configure_options |
|
|
| 461 | # @INTERNAL |
|
|
| 462 | # @DESCRIPTION: |
|
|
| 463 | # Sets up some standard configure options, like libdir (if necessary), whether |
|
|
| 464 | # debug info is wanted or not. |
|
|
| 465 | standard_configure_options() { |
|
|
| 466 | local myconf="-prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
|
|
| 467 | -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} -plugindir ${QTPLUGINDIR} |
|
|
| 468 | $(version_is_at_least 4.7 && echo -importdir ${QTIMPORTDIR}) |
|
|
| 469 | -datadir ${QTDATADIR} -translationdir ${QTTRANSDIR} -sysconfdir ${QTSYSCONFDIR} |
|
|
| 470 | -examplesdir ${QTEXAMPLESDIR} -demosdir ${QTDEMOSDIR} |
|
|
| 471 | -opensource -confirm-license -shared -fast -largefile -stl -verbose |
|
|
| 472 | -platform $(qt_mkspecs_dir) -nomake examples -nomake demos" |
|
|
| 473 | |
|
|
| 474 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
|
|
| 475 | |
|
|
| 476 | # debug/release |
|
|
| 477 | if use debug; then |
|
|
| 478 | myconf+=" -debug" |
|
|
| 479 | else |
|
|
| 480 | myconf+=" -release" |
|
|
| 481 | fi |
|
|
| 482 | myconf+=" -no-separate-debug-info" |
|
|
| 483 | |
|
|
| 484 | # exceptions USE flag |
|
|
| 485 | local exceptions="-exceptions" |
|
|
| 486 | in_iuse exceptions && exceptions="$(qt_use exceptions)" |
|
|
| 487 | myconf+=" ${exceptions}" |
|
|
| 488 | |
|
|
| 489 | # disable RPATH on Qt >= 4.8 (bug 380415) |
|
|
| 490 | version_is_at_least 4.8 && myconf+=" -no-rpath" |
|
|
| 491 | |
|
|
| 492 | # precompiled headers don't work on hardened, where the flag is masked |
|
|
| 493 | myconf+=" $(qt_use pch)" |
|
|
| 494 | |
|
|
| 495 | # -reduce-relocations |
|
|
| 496 | # This flag seems to introduce major breakage to applications, |
|
|
| 497 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
| 498 | # construct a QApplication before a QPaintDevice" on Solaris. |
|
|
| 499 | # -- Daniel Vergien |
|
|
| 500 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
| 501 | |
|
|
| 502 | use aqua && myconf+=" -no-framework" |
|
|
| 503 | |
|
|
| 504 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
|
|
| 505 | # $(tc-arch). Therefore we convert it to supported values. |
|
|
| 506 | case "$(tc-arch)" in |
|
|
| 507 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
|
|
| 508 | ppc-macos) myconf+=" -arch ppc" ;; |
|
|
| 509 | ppc|ppc64|ppc-*) myconf+=" -arch powerpc" ;; |
|
|
| 510 | sparc|sparc-*|sparc64-*) myconf+=" -arch sparc" ;; |
|
|
| 511 | x86-macos) myconf+=" -arch x86" ;; |
|
|
| 512 | x86|x86-*) myconf+=" -arch i386" ;; |
|
|
| 513 | alpha|arm|ia64|mips|s390) myconf+=" -arch $(tc-arch)" ;; |
|
|
| 514 | hppa|sh) myconf+=" -arch generic" ;; |
|
|
| 515 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
|
|
| 516 | esac |
|
|
| 517 | |
|
|
| 518 | echo "${myconf}" |
|
|
| 519 | } |
|
|
| 520 | |
|
|
| 521 | # @FUNCTION: prepare_directories |
568 | # @FUNCTION: prepare_directories |
| 522 | # @USAGE: < directories > |
569 | # @USAGE: < directories > |
| 523 | # @INTERNAL |
570 | # @INTERNAL |
| 524 | # @DESCRIPTION: |
571 | # @DESCRIPTION: |
| 525 | # Generates Makefiles for the given list of directories. |
572 | # Generates Makefiles for the given list of directories. |
| … | |
… | |
| 610 | # @FUNCTION: generate_qconfigs |
657 | # @FUNCTION: generate_qconfigs |
| 611 | # @INTERNAL |
658 | # @INTERNAL |
| 612 | # @DESCRIPTION: |
659 | # @DESCRIPTION: |
| 613 | # Generates gentoo-specific qconfig.{h,pri}. |
660 | # Generates gentoo-specific qconfig.{h,pri}. |
| 614 | generate_qconfigs() { |
661 | generate_qconfigs() { |
| 615 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
662 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${PN} == qt-core ]]; then |
| 616 | local x qconfig_add qconfig_remove qconfig_new |
663 | local x qconfig_add qconfig_remove qconfig_new |
| 617 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
664 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 618 | [[ -f ${x} ]] || continue |
665 | [[ -f ${x} ]] || continue |
| 619 | qconfig_add+=" $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
666 | qconfig_add+=" $(sed -n 's/^QCONFIG_ADD=//p' "${x}")" |
| 620 | qconfig_remove+=" $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
667 | qconfig_remove+=" $(sed -n 's/^QCONFIG_REMOVE=//p' "${x}")" |
| … | |
… | |
| 751 | # @RETURN: the specs-directory w/o path |
798 | # @RETURN: the specs-directory w/o path |
| 752 | # @DESCRIPTION: |
799 | # @DESCRIPTION: |
| 753 | # Allows us to define which mkspecs dir we want to use. |
800 | # Allows us to define which mkspecs dir we want to use. |
| 754 | qt_mkspecs_dir() { |
801 | qt_mkspecs_dir() { |
| 755 | local spec= |
802 | local spec= |
|
|
803 | |
| 756 | case ${CHOST} in |
804 | case "${CHOST}" in |
| 757 | *-freebsd*|*-dragonfly*) |
805 | *-freebsd*|*-dragonfly*) |
| 758 | spec=freebsd ;; |
806 | spec=freebsd ;; |
| 759 | *-openbsd*) |
807 | *-openbsd*) |
| 760 | spec=openbsd ;; |
808 | spec=openbsd ;; |
| 761 | *-netbsd*) |
809 | *-netbsd*) |
| … | |
… | |
| 772 | *-solaris*) |
820 | *-solaris*) |
| 773 | spec=solaris ;; |
821 | spec=solaris ;; |
| 774 | *-linux-*|*-linux) |
822 | *-linux-*|*-linux) |
| 775 | spec=linux ;; |
823 | spec=linux ;; |
| 776 | *) |
824 | *) |
| 777 | die "Unknown CHOST, no platform chosen" |
825 | die "${FUNCNAME}(): Unknown CHOST '${CHOST}'" ;; |
| 778 | esac |
826 | esac |
| 779 | |
827 | |
| 780 | CXX=$(tc-getCXX) |
828 | case "$(tc-getCXX)" in |
| 781 | if [[ ${CXX} == *g++* ]]; then |
829 | *g++*) |
| 782 | spec+=-g++ |
830 | spec+=-g++ ;; |
| 783 | elif [[ ${CXX} == *icpc* ]]; then |
831 | *icpc*) |
| 784 | spec+=-icc |
832 | spec+=-icc ;; |
| 785 | else |
833 | *) |
| 786 | die "Unknown compiler '${CXX}'" |
834 | die "${FUNCNAME}(): Unknown compiler '$(tc-getCXX)'" ;; |
| 787 | fi |
835 | esac |
| 788 | |
836 | |
| 789 | # Add -64 for 64bit profiles |
837 | # Add -64 for 64bit profiles |
| 790 | if use x64-freebsd || |
838 | if use x64-freebsd || |
| 791 | use amd64-linux || |
839 | use amd64-linux || |
| 792 | use x64-macos || |
840 | use x64-macos || |
| … | |
… | |
| 805 | # Tries to clean up tools.pro for qt-assistant ebuilds. |
853 | # Tries to clean up tools.pro for qt-assistant ebuilds. |
| 806 | # Meant to be called in src_prepare(). |
854 | # Meant to be called in src_prepare(). |
| 807 | # Since Qt 4.7.4 this function is a no-op. |
855 | # Since Qt 4.7.4 this function is a no-op. |
| 808 | qt_assistant_cleanup() { |
856 | qt_assistant_cleanup() { |
| 809 | # apply patching to qt-assistant ebuilds only |
857 | # apply patching to qt-assistant ebuilds only |
| 810 | [[ ${PN} != "qt-assistant" ]] && return |
858 | [[ ${PN} != qt-assistant ]] && return |
| 811 | |
859 | |
| 812 | # no longer needed for 4.7.4 and later |
860 | # no longer needed for 4.7.4 and later |
| 813 | version_is_at_least "4.7.4" && return |
861 | version_is_at_least 4.7.4 && return |
| 814 | |
862 | |
| 815 | # different versions (and branches...) may need different handling, |
863 | # different versions (and branches...) may need different handling, |
| 816 | # add a case if you need special handling |
864 | # add a case if you need special handling |
| 817 | case "${MY_PV_EXTRA}" in |
865 | case "${MY_PV_EXTRA}" in |
| 818 | *kde-qt*) |
866 | *kde-qt*) |