| 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.123 2012/03/08 14:24:40 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. |
| … | |
… | |
| 12 | case ${EAPI} in |
12 | case ${EAPI} in |
| 13 | 2|3|4) : ;; |
13 | 2|3|4) : ;; |
| 14 | *) die "qt4-build.eclass requires EAPI 2, 3 or 4." ;; |
14 | *) die "qt4-build.eclass requires EAPI 2, 3 or 4." ;; |
| 15 | esac |
15 | esac |
| 16 | |
16 | |
| 17 | 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 )" |
| 18 | |
28 | |
| 19 | MY_PV=${PV/_/-} |
29 | MY_PV=${PV/_/-} |
| 20 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
30 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
| 21 | |
31 | |
| 22 | 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) |
| 23 | 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" |
| 24 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
40 | ;; |
|
|
41 | esac |
| 25 | |
42 | |
| 26 | IUSE="aqua debug pch" |
43 | IUSE="aqua debug pch" |
| 27 | |
|
|
| 28 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && |
44 | if [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]]; then |
| 29 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
|
|
| 30 | IUSE+=" +exceptions" |
45 | IUSE+=" +exceptions" |
| 31 | |
46 | fi |
| 32 | if version_is_at_least 4.7.99999999; then |
47 | if version_is_at_least 4.8; then |
| 33 | IUSE+=" c++0x qpa" |
48 | IUSE+=" c++0x qpa" |
| 34 | fi |
49 | fi |
| 35 | |
50 | |
| 36 | DEPEND="dev-util/pkgconfig" |
51 | DEPEND="dev-util/pkgconfig" |
|
|
52 | if [[ ${QT4_BUILD_TYPE} == live ]]; then |
|
|
53 | DEPEND+=" dev-lang/perl" |
|
|
54 | fi |
|
|
55 | |
| 37 | RDEPEND=" |
56 | RDEPEND=" |
| 38 | !<x11-libs/qt-assistant-${PV} |
57 | !<x11-libs/qt-assistant-${PV} |
| 39 | !>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 |
| 40 | !<x11-libs/qt-core-${PV} |
61 | !<x11-libs/qt-core-${PV} |
| 41 | !>x11-libs/qt-core-${PV}-r9999 |
62 | !>x11-libs/qt-core-${PV}-r9999 |
| 42 | !<x11-libs/qt-dbus-${PV} |
63 | !<x11-libs/qt-dbus-${PV} |
| 43 | !>x11-libs/qt-dbus-${PV}-r9999 |
64 | !>x11-libs/qt-dbus-${PV}-r9999 |
| 44 | !<x11-libs/qt-declarative-${PV} |
65 | !<x11-libs/qt-declarative-${PV} |
| … | |
… | |
| 81 | |
102 | |
| 82 | # Protect users by not allowing downgrades between releases |
103 | # Protect users by not allowing downgrades between releases |
| 83 | # Downgrading revisions within the same release should be allowed |
104 | # Downgrading revisions within the same release should be allowed |
| 84 | if has_version '>'${CATEGORY}/${P}-r9999; then |
105 | if has_version '>'${CATEGORY}/${P}-r9999; then |
| 85 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
106 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
107 | eerror |
| 86 | eerror "Sanity check to keep you from breaking your system:" |
108 | eerror "Sanity check to keep you from breaking your system:" |
| 87 | 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 |
| 88 | die "aborting to save your system" |
111 | die "aborting to save your system" |
| 89 | else |
112 | else |
| 90 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
113 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
| 91 | fi |
114 | fi |
| 92 | fi |
115 | fi |
| … | |
… | |
| 136 | # @DESCRIPTION: |
159 | # @DESCRIPTION: |
| 137 | # Unpacks the sources. |
160 | # Unpacks the sources. |
| 138 | qt4-build_src_unpack() { |
161 | qt4-build_src_unpack() { |
| 139 | setqtenv |
162 | setqtenv |
| 140 | |
163 | |
|
|
164 | case ${QT4_BUILD_TYPE} in |
|
|
165 | live) |
|
|
166 | git-2_src_unpack |
|
|
167 | ;; |
|
|
168 | release) |
| 141 | local tarball="${MY_P}.tar.gz" target= targets= |
169 | local tarball="${MY_P}.tar.gz" target= targets= |
| 142 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
170 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 143 | src/{qbase,qt_targets,qt_install}.pri bin config.tests \ |
171 | src/{qbase,qt_targets,qt_install}.pri bin config.tests \ |
| 144 | mkspecs qmake ${QT4_EXTRACT_DIRECTORIES} |
172 | mkspecs qmake ${QT4_EXTRACT_DIRECTORIES} |
| 145 | do |
173 | do |
| 146 | targets+="${MY_P}/${target} " |
174 | targets+="${MY_P}/${target} " |
| 147 | done |
175 | done |
| 148 | |
176 | |
| 149 | ebegin "Unpacking parts of ${tarball}:" ${targets//${MY_P}\/} |
177 | ebegin "Unpacking parts of ${tarball}:" ${targets//${MY_P}\/} |
| 150 | tar -xzf "${DISTDIR}/${tarball}" ${targets} |
178 | tar -xzf "${DISTDIR}/${tarball}" ${targets} |
| 151 | eend $? || die "failed to unpack" |
179 | eend $? || die "failed to unpack" |
|
|
180 | ;; |
|
|
181 | esac |
| 152 | } |
182 | } |
| 153 | |
183 | |
| 154 | # @ECLASS-VARIABLE: PATCHES |
184 | # @ECLASS-VARIABLE: PATCHES |
| 155 | # @DEFAULT_UNSET |
185 | # @DEFAULT_UNSET |
| 156 | # @DESCRIPTION: |
186 | # @DESCRIPTION: |
| … | |
… | |
| 168 | # @DESCRIPTION: |
198 | # @DESCRIPTION: |
| 169 | # 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 |
| 170 | # 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. |
| 171 | qt4-build_src_prepare() { |
201 | qt4-build_src_prepare() { |
| 172 | setqtenv |
202 | setqtenv |
| 173 | cd "${S}" |
203 | |
|
|
204 | if [[ ${QT4_BUILD_TYPE} == live ]]; then |
|
|
205 | QTDIR="." ./bin/syncqt || die "syncqt failed" |
|
|
206 | fi |
| 174 | |
207 | |
| 175 | if version_is_at_least 4.7; then |
208 | if version_is_at_least 4.7; then |
| 176 | # fix libX11 dependency on non X packages |
209 | # fix libX11 dependency on non X packages |
| 177 | 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" |
| 178 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
211 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
| … | |
… | |
| 194 | skip_project_generation |
227 | skip_project_generation |
| 195 | symlink_binaries_to_buildtree |
228 | symlink_binaries_to_buildtree |
| 196 | fi |
229 | fi |
| 197 | |
230 | |
| 198 | if [[ ${CHOST} == *86*-apple-darwin* ]]; then |
231 | if [[ ${CHOST} == *86*-apple-darwin* ]]; then |
| 199 | # qmake bus errors with -O2 but -O3 works |
232 | # qmake bus errors with -O2 or -O3 but -O1 works |
|
|
233 | # Bug 373061 |
| 200 | replace-flags -O2 -O3 |
234 | replace-flags -O[23] -O1 |
| 201 | fi |
235 | fi |
| 202 | |
236 | |
| 203 | # Bug 178652 |
237 | # Bug 178652 |
| 204 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
238 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 205 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
239 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| … | |
… | |
| 256 | 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 |
| 257 | |
291 | |
| 258 | if [[ ${CHOST} == *-darwin* ]]; then |
292 | if [[ ${CHOST} == *-darwin* ]]; then |
| 259 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
293 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 260 | # 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 |
| 261 | sed \ |
305 | sed \ |
| 262 | -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
306 | -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 263 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
307 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 264 | -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}:" \ |
| 265 | -e "s:-arch\s\w*::g" \ |
309 | -e "s:-arch\s\w*::g" \ |
| 266 | -i mkspecs/common/mac-g++.conf \ |
310 | -i ${mac_gpp_conf} \ |
| 267 | || die "sed mkspecs/common/mac-g++.conf failed" |
311 | || die "sed ${mac_gpp_conf} failed" |
| 268 | |
312 | |
| 269 | # 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 |
| 270 | # fix arch handling (automagically duplicates our -arch arg and breaks |
314 | # fix arch handling (automagically duplicates our -arch arg and breaks |
| 271 | # 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 |
| 272 | sed \ |
320 | sed \ |
| 273 | -e "s:-arch i386::" \ |
321 | -e "s:-arch i386::" \ |
| 274 | -e "s:-arch ppc::" \ |
322 | -e "s:-arch ppc::" \ |
| 275 | -e "s:-arch x86_64::" \ |
323 | -e "s:-arch x86_64::" \ |
| 276 | -e "s:-arch ppc64::" \ |
324 | -e "s:-arch ppc64::" \ |
| 277 | -e "s:-arch \$i::" \ |
325 | -e "s:-arch \$i::" \ |
| 278 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
326 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
| 279 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
327 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
| 280 | -e "s:-Xarch_x86_64::g" \ |
328 | -e "s:-Xarch_x86_64::g" \ |
| 281 | -e "s:-Xarch_ppc64::g" \ |
329 | -e "s:-Xarch_ppc64::g" \ |
| 282 | -i configure mkspecs/common/mac-g++.conf \ |
330 | -i configure ${mac_gcc_confs} \ |
| 283 | || die "sed -arch/-Xarch failed" |
331 | || die "sed -arch/-Xarch failed" |
| 284 | |
332 | |
| 285 | # 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. |
| 286 | if [[ ${CHOST} == *-apple-darwin10 ]]; then |
334 | if [[ ${CHOST} == *-apple-darwin10 ]]; then |
| 287 | 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" \ |
| 288 | -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" \ |
| 289 | -i configure mkspecs/common/mac-g++.conf \ |
337 | -i configure ${mac_gpp_conf} \ |
| 290 | || die "sed deployment target failed" |
338 | || die "sed deployment target failed" |
| 291 | fi |
339 | fi |
| 292 | fi |
340 | fi |
| 293 | |
341 | |
| 294 | # 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 |