| 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.111 2011/12/27 16:04:27 pesa 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 | # Qt herd <qt@gentoo.org> |
| 8 | # Markos Chandras <hwoarang@gentoo.org>, |
|
|
| 9 | # Caleb Tennis <caleb@gentoo.org> |
|
|
| 10 | # Alex Alexander <wired@gentoo.org> |
|
|
| 11 | # @BLURB: Eclass for Qt4 split ebuilds. |
8 | # @BLURB: Eclass for Qt4 split ebuilds. |
| 12 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 13 | # This eclass contains various functions that are used when building Qt4 |
10 | # This eclass contains various functions that are used when building Qt4. |
| 14 | |
11 | |
| 15 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
12 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
| 16 | |
13 | |
| 17 | MY_PV=${PV/_/-} |
14 | MY_PV=${PV/_/-} |
| 18 | if version_is_at_least 4.5.99999999; then |
|
|
| 19 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
15 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
| 20 | else |
16 | |
| 21 | MY_P=qt-x11-opensource-src-${MY_PV} |
17 | HOMEPAGE="http://qt.nokia.com/ http://qt-project.org/" |
|
|
18 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
|
|
19 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
20 | |
|
|
21 | IUSE="aqua debug pch" |
|
|
22 | |
|
|
23 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && |
|
|
24 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
|
|
25 | IUSE+=" +exceptions" |
|
|
26 | |
|
|
27 | if version_is_at_least 4.7.99999999; then |
|
|
28 | IUSE+=" c++0x qpa" |
| 22 | fi |
29 | fi |
| 23 | |
30 | |
| 24 | HOMEPAGE="http://qt.nokia.com/" |
31 | DEPEND="dev-util/pkgconfig" |
| 25 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
|
|
| 26 | |
|
|
| 27 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
| 28 | IUSE="debug pch aqua" |
|
|
| 29 | |
|
|
| 30 | RDEPEND=" |
32 | RDEPEND=" |
| 31 | !<x11-libs/qt-assistant-${PV} |
33 | !<x11-libs/qt-assistant-${PV} |
| 32 | !>x11-libs/qt-assistant-${PV}-r9999 |
34 | !>x11-libs/qt-assistant-${PV}-r9999 |
| 33 | !<x11-libs/qt-core-${PV} |
35 | !<x11-libs/qt-core-${PV} |
| 34 | !>x11-libs/qt-core-${PV}-r9999 |
36 | !>x11-libs/qt-core-${PV}-r9999 |
| 35 | !<x11-libs/qt-dbus-${PV} |
37 | !<x11-libs/qt-dbus-${PV} |
| 36 | !>x11-libs/qt-dbus-${PV}-r9999 |
38 | !>x11-libs/qt-dbus-${PV}-r9999 |
|
|
39 | !<x11-libs/qt-declarative-${PV} |
|
|
40 | !>x11-libs/qt-declarative-${PV}-r9999 |
| 37 | !<x11-libs/qt-demo-${PV} |
41 | !<x11-libs/qt-demo-${PV} |
| 38 | !>x11-libs/qt-demo-${PV}-r9999 |
42 | !>x11-libs/qt-demo-${PV}-r9999 |
| 39 | !<x11-libs/qt-gui-${PV} |
43 | !<x11-libs/qt-gui-${PV} |
| 40 | !>x11-libs/qt-gui-${PV}-r9999 |
44 | !>x11-libs/qt-gui-${PV}-r9999 |
|
|
45 | !<x11-libs/qt-multimedia-${PV} |
|
|
46 | !>x11-libs/qt-multimedia-${PV}-r9999 |
| 41 | !<x11-libs/qt-opengl-${PV} |
47 | !<x11-libs/qt-opengl-${PV} |
| 42 | !>x11-libs/qt-opengl-${PV}-r9999 |
48 | !>x11-libs/qt-opengl-${PV}-r9999 |
| 43 | !<x11-libs/qt-phonon-${PV} |
49 | !<x11-libs/qt-phonon-${PV} |
| 44 | !>x11-libs/qt-phonon-${PV}-r9999 |
50 | !>x11-libs/qt-phonon-${PV}-r9999 |
| 45 | !<x11-libs/qt-qt3support-${PV} |
51 | !<x11-libs/qt-qt3support-${PV} |
| … | |
… | |
| 60 | |
66 | |
| 61 | S=${WORKDIR}/${MY_P} |
67 | S=${WORKDIR}/${MY_P} |
| 62 | |
68 | |
| 63 | # @FUNCTION: qt4-build_pkg_setup |
69 | # @FUNCTION: qt4-build_pkg_setup |
| 64 | # @DESCRIPTION: |
70 | # @DESCRIPTION: |
| 65 | # Sets up S, MY_P, PATH, and LD_LIBRARY_PATH |
71 | # Sets up PATH and LD_LIBRARY_PATH. |
| 66 | qt4-build_pkg_setup() { |
72 | qt4-build_pkg_setup() { |
| 67 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
73 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
| 68 | |
74 | |
|
|
75 | # Protect users by not allowing downgrades between releases |
|
|
76 | # Downgrading revisions within the same release should be allowed |
|
|
77 | if has_version '>'${CATEGORY}/${P}-r9999; then |
|
|
78 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
79 | eerror "Sanity check to keep you from breaking your system:" |
|
|
80 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
|
|
81 | die "aborting to save your system" |
|
|
82 | else |
|
|
83 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
|
|
84 | fi |
|
|
85 | fi |
|
|
86 | |
|
|
87 | if [[ ${PN} == "qt-webkit" ]]; then |
|
|
88 | eshopts_push -s extglob |
|
|
89 | if is-flagq '-g?(gdb)?([1-9])'; then |
|
|
90 | echo |
|
|
91 | ewarn "You have enabled debug info (probably have -g or -ggdb in your \$C{,XX}FLAGS)." |
|
|
92 | 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." |
|
|
94 | ewarn "For more info check out bug #307861" |
|
|
95 | echo |
|
|
96 | fi |
|
|
97 | eshopts_pop |
|
|
98 | fi |
| 69 | |
99 | |
| 70 | PATH="${S}/bin${PATH:+:}${PATH}" |
100 | PATH="${S}/bin${PATH:+:}${PATH}" |
| 71 | if [[ ${CHOST} != *-darwin* ]]; then |
101 | if [[ ${CHOST} != *-darwin* ]]; then |
| 72 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
102 | LD_LIBRARY_PATH="${S}/lib${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
| 73 | else |
103 | else |
| 74 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
104 | DYLD_LIBRARY_PATH="${S}/lib${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
| 75 | # on mac we *need* src/gui/kernel/qapplication_mac.cpp for platfrom |
105 | # On MacOS we *need* at least src/gui/kernel/qapplication_mac.mm for |
| 76 | # detection since the x11-headers package b0rkens the header |
106 | # platform detection. Note: needs to come before any directories to |
| 77 | # installation, we have to extract src/ and include/ completely on mac |
107 | # avoid extract failure. |
| 78 | # tools is needed for qt-demo and some others |
108 | [[ ${CHOST} == *-apple-darwin* ]] && \ |
| 79 | QT4_EXTRACT_DIRECTORIES+=" src include" |
109 | 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" |
110 | ${QT4_EXTRACT_DIRECTORIES}" |
| 83 | fi |
|
|
| 84 | fi |
111 | fi |
| 85 | |
112 | |
| 86 | # Make sure ebuilds use the required EAPI |
113 | # Make sure ebuilds use the required EAPI |
| 87 | if [[ ${EAPI} != [23] ]]; then |
114 | if [[ ${EAPI} != [23] ]]; then |
| 88 | eerror "The qt4-build eclass requires EAPI=2 or EAPI=3, but this ebuild is using" |
115 | 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" |
118 | die "qt4-build eclass requires EAPI=2 or EAPI=3" |
| 92 | fi |
119 | fi |
| 93 | |
120 | |
| 94 | if ! version_is_at_least 4.1 $(gcc-version); then |
121 | if ! version_is_at_least 4.1 $(gcc-version); then |
| 95 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
122 | ewarn "Using a GCC version lower than 4.1 is not supported!" |
| 96 | echo |
|
|
| 97 | ebeep 3 |
|
|
| 98 | fi |
123 | fi |
| 99 | } |
124 | } |
| 100 | |
125 | |
| 101 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
126 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
| 102 | # @DESCRIPTION: |
127 | # @DESCRIPTION: |
| 103 | # Arguments for build_target_directories. Takes the directories, in which the |
128 | # Arguments for build_target_directories. Takes the directories in which the |
| 104 | # code should be compiled. This is a space-separated list |
129 | # code should be compiled. This is a space-separated list. |
| 105 | |
130 | |
| 106 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
131 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
| 107 | # @DESCRIPTION: |
132 | # @DESCRIPTION: |
| 108 | # Space separated list including the directories that will be extracted from Qt |
133 | # Space-separated list including the directories that will be extracted from |
| 109 | # tarball |
134 | # Qt tarball. |
| 110 | |
135 | |
| 111 | # @FUNCTION: qt4-build_src_unpack |
136 | # @FUNCTION: qt4-build_src_unpack |
| 112 | # @DESCRIPTION: |
137 | # @DESCRIPTION: |
| 113 | # Unpacks the sources |
138 | # Unpacks the sources. |
| 114 | qt4-build_src_unpack() { |
139 | qt4-build_src_unpack() { |
| 115 | setqtenv |
140 | setqtenv |
| 116 | local target targets= |
141 | local target targets= |
| 117 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
142 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 118 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
143 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 119 | ${QT4_EXTRACT_DIRECTORIES}; do |
144 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 120 | targets+=" ${MY_P}/${target}" |
145 | targets+=" ${MY_P}/${target}" |
| 121 | done |
146 | done |
| 122 | |
147 | |
| 123 | echo tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
148 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 124 | tar xzpf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
149 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
| 125 | } |
150 | } |
| 126 | |
151 | |
| 127 | # @ECLASS-VARIABLE: PATCHES |
152 | # @ECLASS-VARIABLE: PATCHES |
|
|
153 | # @DEFAULT_UNSET |
| 128 | # @DESCRIPTION: |
154 | # @DESCRIPTION: |
| 129 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
155 | # PATCHES array variable containing all various patches to be applied. |
| 130 | # to specify the full path. This variable is necessary for src_prepare phase. |
156 | # This variable is expected to be defined in global scope of ebuild. |
| 131 | # example: |
157 | # Make sure to specify the full path. This variable is utilised in |
| 132 | # PATCHES="${FILESDIR}"/mypatch.patch |
158 | # src_unpack/src_prepare phase, based on EAPI. |
| 133 | # ${FILESDIR}"/mypatch2.patch" |
|
|
| 134 | # |
159 | # |
|
|
160 | # @CODE |
|
|
161 | # PATCHES=( "${FILESDIR}/mypatch.patch" |
|
|
162 | # "${FILESDIR}/patches_folder/" ) |
|
|
163 | # @CODE |
| 135 | |
164 | |
| 136 | # @FUNCTION: qt4-build_src_prepare |
165 | # @FUNCTION: qt4-build_src_prepare |
| 137 | # @DESCRIPTION: |
166 | # @DESCRIPTION: |
| 138 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
167 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
| 139 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
168 | # the build system in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified in /etc/make.conf. |
| 140 | qt4-build_src_prepare() { |
169 | qt4-build_src_prepare() { |
| 141 | setqtenv |
170 | setqtenv |
| 142 | cd "${S}" |
171 | cd "${S}" |
| 143 | |
172 | |
|
|
173 | if version_is_at_least "4.7"; then |
|
|
174 | # fix libX11 dependency on non X packages |
|
|
175 | local nolibx11_pkgs="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
|
|
176 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
|
|
177 | |
|
|
178 | qt_assistant_cleanup |
|
|
179 | fi |
|
|
180 | |
| 144 | if use aqua; then |
181 | if use aqua; then |
| 145 | # provide a proper macx-g++-64 |
182 | # provide a proper macx-g++-64 |
| 146 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
183 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| 147 | |
184 | |
| 148 | sed -e '/^CONFIG/s:app_bundle::' \ |
185 | sed -e '/^CONFIG/s:app_bundle::' \ |
| 149 | -e '/^CONFIG/s:plugin_no_soname:plugin_with_soname absolute_library_soname:' \ |
186 | -e '/^CONFIG/s:plugin_no_soname:plugin_with_soname absolute_library_soname:' \ |
| 150 | -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed failed" |
187 | -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 151 | fi |
188 | fi |
| 152 | |
189 | |
| 153 | if [[ ${PN} != qt-core ]]; then |
190 | if [[ ${PN} != qt-core ]]; then |
| 154 | skip_qmake_build_patch |
191 | skip_qmake_build |
| 155 | skip_project_generation_patch |
192 | skip_project_generation |
| 156 | symlink_binaries_to_buildtree |
193 | symlink_binaries_to_buildtree |
| 157 | fi |
194 | fi |
| 158 | |
195 | |
| 159 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
196 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 160 | # qmake bus errors with -O2 but -O3 works |
197 | # qmake bus errors with -O2 but -O3 works |
| 161 | replace-flags -O2 -O3 |
198 | replace-flags -O2 -O3 |
| 162 | fi |
199 | 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 | |
200 | |
| 170 | # Bug 178652 |
201 | # Bug 178652 |
| 171 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
202 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 172 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
203 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 173 | append-flags -fno-gcse |
204 | append-flags -fno-gcse |
|
|
205 | fi |
|
|
206 | |
|
|
207 | if use_if_iuse c++0x; then |
|
|
208 | ewarn "You are about to build Qt4 using the C++11 standard. Even though" |
|
|
209 | ewarn "this is an official standard, some of the reverse dependencies" |
|
|
210 | ewarn "may fail to compile or link againt the Qt4 libraries. Before" |
|
|
211 | ewarn "reporting a bug, make sure your bug is reproducible with c++0x" |
|
|
212 | ewarn "disabled." |
|
|
213 | append-flags -std=c++0x |
| 174 | fi |
214 | fi |
| 175 | |
215 | |
| 176 | # Unsupported old gcc versions - hardened needs this :( |
216 | # Unsupported old gcc versions - hardened needs this :( |
| 177 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
217 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
| 178 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
218 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 179 | append-cxxflags -fno-stack-protector |
219 | append-cxxflags -fno-stack-protector |
| 180 | # Bug 253127 |
220 | # Bug 253127 |
| 181 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
221 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
| 182 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
222 | -i mkspecs/common/g++.conf || die |
| 183 | fi |
223 | fi |
| 184 | |
224 | |
| 185 | # Bug 261632 |
225 | # Bug 261632 |
| 186 | if use ppc64; then |
226 | if use ppc64; then |
| 187 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
227 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 188 | append-flags -mminimal-toc |
228 | append-flags -mminimal-toc |
| 189 | fi |
229 | fi |
| 190 | |
230 | |
|
|
231 | # Respect CC, CXX, {C,CXX,LD}FLAGS in .qmake.cache |
|
|
232 | sed -e "/^SYSTEM_VARIABLES=/i \ |
|
|
233 | CC='$(tc-getCC)'\n\ |
|
|
234 | CXX='$(tc-getCXX)'\n\ |
|
|
235 | CFLAGS='${CFLAGS}'\n\ |
|
|
236 | CXXFLAGS='${CXXFLAGS}'\n\ |
|
|
237 | LDFLAGS='${LDFLAGS}'\n" \ |
|
|
238 | -i configure || die "sed SYSTEM_VARIABLES failed" |
|
|
239 | |
|
|
240 | # Bug 321335 |
|
|
241 | find config.tests/unix -name '*.test' -type f -exec grep -lZ \$MAKE '{}' \; | xargs -0 \ |
|
|
242 | sed -e "s:\(\$MAKE\):\1 CC='$(tc-getCC)' CXX='$(tc-getCXX)' LINK='$(tc-getCXX)':g" \ |
|
|
243 | -i || die "sed test compilers failed" |
|
|
244 | |
| 191 | # Bug 172219 |
245 | # Bug 172219 |
| 192 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
246 | sed -e "s:X11R6/::" -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 193 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
|
|
| 194 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ |
|
|
| 195 | -e "s:X11R6/::" \ |
|
|
| 196 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
| 197 | |
247 | |
| 198 | if [[ ${CHOST} != *-darwin* ]]; then |
248 | 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 |
249 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 205 | # crippled (by design) :/ |
250 | # crippled (by design) :/ |
| 206 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
251 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 207 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
252 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 208 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
253 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
| … | |
… | |
| 220 | -e "s:-arch \$i::" \ |
265 | -e "s:-arch \$i::" \ |
| 221 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
266 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
| 222 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
267 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
| 223 | -e "s:-Xarch_x86_64::g" \ |
268 | -e "s:-Xarch_x86_64::g" \ |
| 224 | -e "s:-Xarch_ppc64::g" \ |
269 | -e "s:-Xarch_ppc64::g" \ |
| 225 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
270 | -i configure mkspecs/common/mac-g++.conf || die "sed -arch/-Xarch failed" |
| 226 | |
271 | |
| 227 | # On Snow Leopard don't fall back to 10.5 deployment target. |
272 | # On Snow Leopard don't fall back to 10.5 deployment target. |
| 228 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
273 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
| 229 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
274 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
| 230 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
275 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
| 231 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
276 | -i configure mkspecs/common/mac-g++.conf || die "sed deployment target failed" |
| 232 | fi |
277 | fi |
| 233 | fi |
278 | fi |
| 234 | |
279 | |
| 235 | # this one is needed for all systems with a separate -liconv, apart from |
280 | # this one is needed for all systems with a separate -liconv, apart from |
| 236 | # Darwin, for which the sources already cater for -liconv |
281 | # Darwin, for which the sources already cater for -liconv |
| … | |
… | |
| 248 | # use GCC over SunStudio |
293 | # use GCC over SunStudio |
| 249 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
294 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 250 | # don't flirt with non-Prefix stuff, we're quite possessive |
295 | # don't flirt with non-Prefix stuff, we're quite possessive |
| 251 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
296 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 252 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
297 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
|
|
298 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
|
|
299 | sed -i '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf |
| 253 | |
300 | |
| 254 | base_src_prepare |
301 | base_src_prepare |
| 255 | } |
302 | } |
| 256 | |
303 | |
| 257 | # @FUNCTION: qt4-build_src_configure |
304 | # @FUNCTION: qt4-build_src_configure |
| … | |
… | |
| 264 | # this one is needed for all systems with a separate -liconv, apart from |
311 | # this one is needed for all systems with a separate -liconv, apart from |
| 265 | # Darwin, for which the sources already cater for -liconv |
312 | # Darwin, for which the sources already cater for -liconv |
| 266 | use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] && \ |
313 | use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] && \ |
| 267 | myconf+=" -liconv" |
314 | myconf+=" -liconv" |
| 268 | |
315 | |
| 269 | if has glib ${IUSE//+} && use glib; then |
316 | if use_if_iuse glib; then |
| 270 | # use -I, -L and -l from configure |
317 | # use -I, -L and -l from configure |
| 271 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
318 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
| 272 | # avoid the -pthread argument |
319 | # avoid the -pthread argument |
| 273 | myconf+=" ${glibflags//-pthread}" |
320 | myconf+=" ${glibflags//-pthread}" |
| 274 | unset glibflags |
321 | unset glibflags |
| 275 | fi |
322 | fi |
| 276 | |
323 | |
|
|
324 | if use_if_iuse qpa; then |
|
|
325 | ewarn |
|
|
326 | ewarn "The qpa useflag enables the Qt Platform Abstraction, formely" |
|
|
327 | ewarn "known as Qt Lighthouse. If you are not sure what that is, then" |
|
|
328 | ewarn "disable it before reporting any bugs related to this useflag." |
|
|
329 | ewarn |
|
|
330 | myconf+=" -qpa" |
|
|
331 | fi |
|
|
332 | |
| 277 | if use aqua ; then |
333 | if use aqua ; then |
| 278 | # On (snow) leopard use the new (frameworked) cocoa code. |
334 | # On (snow) leopard use the new (frameworked) cocoa code. |
| 279 | if [[ $(uname -r | cut -d . -f 1) -ge 9 ]] ; then |
335 | if [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
| 280 | myconf+=" -cocoa -framework" |
336 | myconf+=" -cocoa -framework" |
| 281 | |
337 | |
| 282 | # We are crazy and build cocoa + qt3support :-) |
338 | # We are crazy and build cocoa + qt3support :-) |
| 283 | if use qt3support; then |
339 | if use qt3support; then |
| 284 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
340 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
| … | |
… | |
| 298 | fi |
354 | fi |
| 299 | |
355 | |
| 300 | echo ./configure ${myconf} |
356 | echo ./configure ${myconf} |
| 301 | ./configure ${myconf} || die "./configure failed" |
357 | ./configure ${myconf} || die "./configure failed" |
| 302 | myconf="" |
358 | myconf="" |
|
|
359 | |
|
|
360 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
| 303 | } |
361 | } |
| 304 | |
362 | |
| 305 | # @FUNCTION: qt4-build_src_compile |
363 | # @FUNCTION: qt4-build_src_compile |
|
|
364 | # @DESCRIPTION: |
| 306 | # @DESCRIPTION: Actual compile phase |
365 | # Actual compile phase |
| 307 | qt4-build_src_compile() { |
366 | qt4-build_src_compile() { |
| 308 | setqtenv |
367 | setqtenv |
| 309 | |
368 | |
| 310 | build_directories ${QT4_TARGET_DIRECTORIES} |
369 | build_directories ${QT4_TARGET_DIRECTORIES} |
| 311 | } |
370 | } |
| 312 | |
371 | |
|
|
372 | # @FUNCTION: qt4-build_src_test |
|
|
373 | # @DESCRIPTION: |
|
|
374 | # Runs tests only in target directories. |
|
|
375 | qt4-build_src_test() { |
|
|
376 | for dir in ${QT4_TARGET_DIRECTORIES}; do |
|
|
377 | emake -j1 check -C ${dir} |
|
|
378 | done |
|
|
379 | } |
|
|
380 | |
| 313 | # @FUNCTION: fix_includes |
381 | # @FUNCTION: fix_includes |
| 314 | # @DESCRIPTION: |
382 | # @DESCRIPTION: |
| 315 | # For MacOSX we need to add some symlinks when frameworks are |
383 | # For MacOS X we need to add some symlinks when frameworks are |
| 316 | # being used, to avoid complications with some more or less stupid packages. |
384 | # being used, to avoid complications with some more or less stupid packages. |
| 317 | fix_includes() { |
385 | fix_includes() { |
| 318 | if use aqua && [[ $(uname -r | cut -d . -f 1) -ge 9 ]] ; then |
386 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
| 319 | # Some packages tend to include <Qt/...> |
387 | # Some packages tend to include <Qt/...> |
| 320 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
388 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
| 321 | |
389 | |
| 322 | # Fake normal headers when frameworks are installed... eases life later on |
390 | # Fake normal headers when frameworks are installed... eases life later on |
| 323 | local dest f |
391 | local dest f |
| … | |
… | |
| 340 | # @DESCRIPTION: |
408 | # @DESCRIPTION: |
| 341 | # Perform the actual installation including some library fixes. |
409 | # Perform the actual installation including some library fixes. |
| 342 | qt4-build_src_install() { |
410 | qt4-build_src_install() { |
| 343 | [[ ${EAPI} == 2 ]] && use !prefix && ED=${D} |
411 | [[ ${EAPI} == 2 ]] && use !prefix && ED=${D} |
| 344 | setqtenv |
412 | setqtenv |
|
|
413 | |
| 345 | install_directories ${QT4_TARGET_DIRECTORIES} |
414 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 346 | install_qconfigs |
415 | install_qconfigs |
| 347 | fix_library_files |
416 | fix_library_files |
| 348 | fix_includes |
417 | fix_includes |
|
|
418 | |
|
|
419 | # remove .la files since we are building only shared Qt libraries |
|
|
420 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
| 349 | } |
421 | } |
| 350 | |
422 | |
| 351 | # @FUNCTION: setqtenv |
423 | # @FUNCTION: setqtenv |
|
|
424 | # @INTERNAL |
| 352 | setqtenv() { |
425 | setqtenv() { |
| 353 | # Set up installation directories |
426 | # Set up installation directories |
| 354 | QTBASEDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
| 355 | QTPREFIXDIR=${EPREFIX}/usr |
427 | QTPREFIXDIR=${EPREFIX}/usr |
| 356 | QTBINDIR=${EPREFIX}/usr/bin |
428 | QTBINDIR=${EPREFIX}/usr/bin |
| 357 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
429 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
| 358 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
|
|
| 359 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
430 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
| 360 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
|
|
| 361 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
431 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
| 362 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
432 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
| 363 | QTPLUGINDIR=${QTLIBDIR}/plugins |
433 | QTPLUGINDIR=${QTLIBDIR}/plugins |
|
|
434 | QTIMPORTDIR=${QTLIBDIR}/imports |
|
|
435 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
|
|
436 | QTTRANSDIR=${QTDATADIR}/translations |
| 364 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
437 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
| 365 | QTTRANSDIR=${QTDATADIR}/translations |
|
|
| 366 | QTEXAMPLESDIR=${QTDATADIR}/examples |
438 | QTEXAMPLESDIR=${QTDATADIR}/examples |
| 367 | QTDEMOSDIR=${QTDATADIR}/demos |
439 | QTDEMOSDIR=${QTDATADIR}/demos |
|
|
440 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
| 368 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
441 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
442 | |
| 369 | PLATFORM=$(qt_mkspecs_dir) |
443 | PLATFORM=$(qt_mkspecs_dir) |
| 370 | |
444 | |
| 371 | unset QMAKESPEC |
445 | unset QMAKESPEC |
| 372 | } |
446 | } |
| 373 | |
447 | |
| 374 | # @FUNCTION: standard_configure_options |
448 | # @FUNCTION: standard_configure_options |
|
|
449 | # @INTERNAL |
| 375 | # @DESCRIPTION: |
450 | # @DESCRIPTION: |
| 376 | # Sets up some standard configure options, like libdir (if necessary), whether |
451 | # Sets up some standard configure options, like libdir (if necessary), whether |
| 377 | # debug info is wanted or not. |
452 | # debug info is wanted or not. |
| 378 | standard_configure_options() { |
453 | standard_configure_options() { |
| 379 | local myconf= |
454 | local myconf="-prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
|
|
455 | -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} -plugindir ${QTPLUGINDIR} |
|
|
456 | -importdir ${QTIMPORTDIR} -datadir ${QTDATADIR} -translationdir ${QTTRANSDIR} |
|
|
457 | -sysconfdir ${QTSYSCONFDIR} -examplesdir ${QTEXAMPLESDIR} -demosdir ${QTDEMOSDIR} |
|
|
458 | -opensource -confirm-license -shared -fast -largefile -stl -verbose |
|
|
459 | -platform $(qt_mkspecs_dir) -nomake examples -nomake demos" |
| 380 | |
460 | |
| 381 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
461 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
| 382 | |
462 | |
| 383 | # Disable visibility explicitly if gcc version isn't 4 |
463 | # debug/release |
| 384 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
| 385 | myconf+=" -no-reduce-exports" |
|
|
| 386 | fi |
|
|
| 387 | |
|
|
| 388 | # precompiled headers doesn't work on hardened, where the flag is masked. |
|
|
| 389 | myconf+=" $(qt_use pch)" |
|
|
| 390 | |
|
|
| 391 | if use debug; then |
464 | if use debug; then |
| 392 | myconf+=" -debug" |
465 | myconf+=" -debug" |
| 393 | else |
466 | else |
| 394 | myconf+=" -release" |
467 | myconf+=" -release" |
| 395 | fi |
468 | fi |
| 396 | myconf+=" -no-separate-debug-info" |
469 | myconf+=" -no-separate-debug-info" |
| 397 | |
470 | |
|
|
471 | # exceptions USE flag |
|
|
472 | local exceptions="-exceptions" |
|
|
473 | in_iuse exceptions && exceptions="$(qt_use exceptions)" |
|
|
474 | myconf+=" ${exceptions}" |
|
|
475 | |
|
|
476 | # disable RPATH on Qt >= 4.8 (bug 380415) |
|
|
477 | version_is_at_least 4.8 && myconf+=" -no-rpath" |
|
|
478 | |
|
|
479 | # precompiled headers don't work on hardened, where the flag is masked |
|
|
480 | myconf+=" $(qt_use pch)" |
|
|
481 | |
|
|
482 | # -reduce-relocations |
|
|
483 | # This flag seems to introduce major breakage to applications, |
|
|
484 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
485 | # construct a QApplication before a QPaintDevice" on Solaris. |
|
|
486 | # -- Daniel Vergien |
|
|
487 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
488 | |
| 398 | use aqua && myconf+=" -no-framework" |
489 | use aqua && myconf+=" -no-framework" |
| 399 | |
490 | |
| 400 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
491 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 401 | # $(tc-arch). Therefore we convert it to supported values. |
492 | # $(tc-arch). Therefore we convert it to supported values. |
| 402 | case "$(tc-arch)" in |
493 | case "$(tc-arch)" in |
| 403 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
494 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
| 404 | ppc-macos) myconf+=" -arch ppc" ;; |
495 | ppc-macos) myconf+=" -arch ppc" ;; |
| 405 | ppc|ppc64|ppc-*) myconf+=" -arch powerpc" ;; |
496 | ppc|ppc64|ppc-*) myconf+=" -arch powerpc" ;; |
| 406 | sparc|sparc-*) myconf+=" -arch sparc" ;; |
497 | sparc|sparc-*|sparc64-*) myconf+=" -arch sparc" ;; |
| 407 | x86-macos) myconf+=" -arch x86" ;; |
498 | x86-macos) myconf+=" -arch x86" ;; |
| 408 | x86|x86-*) myconf+=" -arch i386" ;; |
499 | x86|x86-*) myconf+=" -arch i386" ;; |
| 409 | alpha|arm|ia64|mips|s390|sparc) myconf+=" -arch $(tc-arch)" ;; |
500 | alpha|arm|ia64|mips|s390) myconf+=" -arch $(tc-arch)" ;; |
| 410 | hppa|sh) myconf+=" -arch generic" ;; |
501 | hppa|sh) myconf+=" -arch generic" ;; |
| 411 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
502 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 412 | esac |
503 | esac |
| 413 | |
504 | |
| 414 | # 4.6: build qt-core with exceptions or qt-xmlpatterns won't build |
|
|
| 415 | local exceptions= |
|
|
| 416 | case "${PV}" in |
|
|
| 417 | 4.6.*) |
|
|
| 418 | if [[ ${PN} != "qt-core" ]] && [[ ${PN} != "qt-xmlpatterns" ]]; then |
|
|
| 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 | ;; |
|
|
| 430 | *) |
|
|
| 431 | [[ ${PN} == "qt-xmlpatterns" ]] || exceptions="-no-exceptions" |
|
|
| 432 | ;; |
|
|
| 433 | esac |
|
|
| 434 | |
|
|
| 435 | # note about -reduce-relocations: |
|
|
| 436 | # That flag seems to introduce major breakage to applications, |
|
|
| 437 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
| 438 | # construct a QApplication before a QPaintDevice" on Solaris |
|
|
| 439 | # -- Daniel Vergien |
|
|
| 440 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
| 441 | |
|
|
| 442 | myconf+=" -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license |
|
|
| 443 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
|
|
| 444 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
|
|
| 445 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
|
|
| 446 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
|
|
| 447 | -demosdir ${QTDEMOSDIR} -silent -fast -opensource |
|
|
| 448 | ${exceptions} |
|
|
| 449 | -nomake examples -nomake demos" |
|
|
| 450 | |
|
|
| 451 | echo "${myconf}" |
505 | echo "${myconf}" |
| 452 | } |
506 | } |
|
|
507 | |
|
|
508 | # @FUNCTION: prepare_directories |
|
|
509 | # @USAGE: < directories > |
|
|
510 | # @INTERNAL |
|
|
511 | # @DESCRIPTION: |
|
|
512 | # Generates Makefiles for the given list of directories. |
|
|
513 | prepare_directories() { |
|
|
514 | for x in "$@"; do |
|
|
515 | pushd "${S}"/${x} >/dev/null || die |
|
|
516 | einfo "Running qmake in: ${x}" |
|
|
517 | # avoid running over the maximum argument number, bug #299810 |
|
|
518 | { |
|
|
519 | echo "${S}"/mkspecs/common/*.conf |
|
|
520 | find "${S}" -name '*.pr[io]' |
|
|
521 | } | xargs sed -i \ |
|
|
522 | -e "s:\$\$\[QT_INSTALL_LIBS\]:${QTLIBDIR}:g" \ |
|
|
523 | -e "s:\$\$\[QT_INSTALL_PLUGINS\]:${QTPLUGINDIR}:g" \ |
|
|
524 | || die |
|
|
525 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
|
|
526 | popd >/dev/null || die |
|
|
527 | done |
|
|
528 | } |
|
|
529 | |
| 453 | |
530 | |
| 454 | # @FUNCTION: build_directories |
531 | # @FUNCTION: build_directories |
| 455 | # @USAGE: < directories > |
532 | # @USAGE: < directories > |
|
|
533 | # @INTERNAL |
| 456 | # @DESCRIPTION: |
534 | # @DESCRIPTION: |
| 457 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
535 | # Compiles the code in the given list of directories. |
| 458 | build_directories() { |
536 | build_directories() { |
| 459 | for x in "$@"; do |
537 | for x in "$@"; do |
| 460 | pushd "${S}"/${x} >/dev/null |
538 | pushd "${S}"/${x} >/dev/null || die |
| 461 | sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" $(find "${S}" -name '*.pr[io]') "${S}"/mkspecs/common/*.conf || die |
539 | emake CC="$(tc-getCC)" \ |
| 462 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
540 | 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" |
541 | LINK="$(tc-getCXX)" || die "emake failed" |
| 466 | popd >/dev/null |
542 | popd >/dev/null || die |
| 467 | done |
543 | done |
| 468 | } |
544 | } |
| 469 | |
545 | |
| 470 | # @FUNCTION: install_directories |
546 | # @FUNCTION: install_directories |
| 471 | # @USAGE: < directories > |
547 | # @USAGE: < directories > |
|
|
548 | # @INTERNAL |
| 472 | # @DESCRIPTION: |
549 | # @DESCRIPTION: |
| 473 | # run emake install in the given directories, which are separated by spaces |
550 | # Runs emake install in the given directories, which are separated by spaces. |
| 474 | install_directories() { |
551 | install_directories() { |
| 475 | for x in "$@"; do |
552 | for x in "$@"; do |
| 476 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
553 | pushd "${S}"/${x} >/dev/null || die |
| 477 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
554 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| 478 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
555 | popd >/dev/null || die |
| 479 | done |
556 | done |
| 480 | } |
557 | } |
| 481 | |
558 | |
| 482 | # @ECLASS-VARIABLE: QCONFIG_ADD |
559 | # @ECLASS-VARIABLE: QCONFIG_ADD |
| 483 | # @DESCRIPTION: |
560 | # @DESCRIPTION: |
| … | |
… | |
| 493 | # @DESCRIPTION: |
570 | # @DESCRIPTION: |
| 494 | # List variables that should be defined at the top of QtCore/qconfig.h |
571 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 495 | : ${QCONFIG_DEFINE:=} |
572 | : ${QCONFIG_DEFINE:=} |
| 496 | |
573 | |
| 497 | # @FUNCTION: install_qconfigs |
574 | # @FUNCTION: install_qconfigs |
|
|
575 | # @INTERNAL |
|
|
576 | # @DESCRIPTION: |
| 498 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
577 | # Install gentoo-specific mkspecs configurations. |
| 499 | install_qconfigs() { |
578 | install_qconfigs() { |
| 500 | local x |
579 | local x |
| 501 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
580 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 502 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
581 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 503 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
582 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 514 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
593 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 515 | fi |
594 | fi |
| 516 | } |
595 | } |
| 517 | |
596 | |
| 518 | # @FUNCTION: generate_qconfigs |
597 | # @FUNCTION: generate_qconfigs |
| 519 | # @DESCRIPTION: Generates gentoo-specific configurations |
598 | # @INTERNAL |
|
|
599 | # @DESCRIPTION: |
|
|
600 | # Generates gentoo-specific qconfig.{h,pri}. |
| 520 | generate_qconfigs() { |
601 | generate_qconfigs() { |
| 521 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
602 | 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 |
603 | local x qconfig_add qconfig_remove qconfig_new |
| 523 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
604 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 524 | [[ -f ${x} ]] || continue |
605 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 538 | |
619 | |
| 539 | # generate list of QT_CONFIG entries from the existing list |
620 | # generate list of QT_CONFIG entries from the existing list |
| 540 | # including qconfig_add and excluding qconfig_remove |
621 | # including qconfig_add and excluding qconfig_remove |
| 541 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
622 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
| 542 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
623 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
| 543 | hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
624 | has ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
| 544 | done |
625 | done |
| 545 | |
626 | |
| 546 | # replace the existing QT_CONFIG list with qconfig_new |
627 | # replace the existing QT_CONFIG list with qconfig_new |
| 547 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
628 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
| 548 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
629 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
| … | |
… | |
| 572 | fi |
653 | fi |
| 573 | fi |
654 | fi |
| 574 | } |
655 | } |
| 575 | |
656 | |
| 576 | # @FUNCTION: qt4-build_pkg_postrm |
657 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
658 | # @DESCRIPTION: |
| 577 | # @DESCRIPTION: Generate configurations when the package is completely removed |
659 | # Regenerate configuration when the package is completely removed. |
| 578 | qt4-build_pkg_postrm() { |
660 | qt4-build_pkg_postrm() { |
| 579 | generate_qconfigs |
661 | generate_qconfigs |
| 580 | } |
662 | } |
| 581 | |
663 | |
| 582 | # @FUNCTION: qt4-build_pkg_postinst |
664 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
665 | # @DESCRIPTION: |
| 583 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
666 | # Regenerate configuration, plus throw a message about possible |
| 584 | # breakages and proposed solutions. |
667 | # breakages and proposed solutions. |
| 585 | qt4-build_pkg_postinst() { |
668 | qt4-build_pkg_postinst() { |
| 586 | generate_qconfigs |
669 | 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 | } |
670 | } |
| 605 | |
671 | |
| 606 | # @FUNCTION: skip_qmake_build_patch |
672 | # @FUNCTION: skip_qmake_build |
|
|
673 | # @INTERNAL |
| 607 | # @DESCRIPTION: |
674 | # @DESCRIPTION: |
| 608 | # Don't need to build qmake, as it's already installed from qt-core |
675 | # Patches configure to skip qmake compilation, as it's already installed by qt-core. |
| 609 | skip_qmake_build_patch() { |
676 | skip_qmake_build() { |
| 610 | # Don't need to build qmake, as it's already installed from qt-core |
|
|
| 611 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "Sed failed" |
677 | sed -i -e "s:if true:if false:g" "${S}"/configure || die |
| 612 | } |
678 | } |
| 613 | |
679 | |
| 614 | # @FUNCTION: skip_project_generation_patch |
680 | # @FUNCTION: skip_project_generation |
|
|
681 | # @INTERNAL |
| 615 | # @DESCRIPTION: |
682 | # @DESCRIPTION: |
| 616 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
683 | # Exit the script early by throwing in an exit before all of the .pro files are scanned. |
| 617 | skip_project_generation_patch() { |
684 | skip_project_generation() { |
| 618 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
|
|
| 619 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
685 | sed -i -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" "${S}"/configure || die |
| 620 | -i "${S}"/configure || die "Sed failed" |
|
|
| 621 | } |
686 | } |
| 622 | |
687 | |
| 623 | # @FUNCTION: symlink_binaries_to_buildtree |
688 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
689 | # @INTERNAL |
| 624 | # @DESCRIPTION: |
690 | # @DESCRIPTION: |
| 625 | # Symlink generated binaries to buildtree so they can be used during compilation |
691 | # Symlinks generated binaries to buildtree, so they can be used during compilation time. |
| 626 | # time |
|
|
| 627 | symlink_binaries_to_buildtree() { |
692 | symlink_binaries_to_buildtree() { |
| 628 | for bin in qmake moc uic rcc; do |
693 | for bin in qmake moc uic rcc; do |
| 629 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "Symlinking ${bin} to ${S}/bin failed." |
694 | ln -s "${QTBINDIR}"/${bin} "${S}"/bin/ || die "symlinking ${bin} to ${S}/bin failed" |
| 630 | done |
695 | done |
| 631 | } |
696 | } |
| 632 | |
697 | |
| 633 | # @FUNCTION: fix_library_files |
698 | # @FUNCTION: fix_library_files |
|
|
699 | # @INTERNAL |
| 634 | # @DESCRIPTION: |
700 | # @DESCRIPTION: |
| 635 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
701 | # Fixes the paths in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
| 636 | # moves the *.pc-files into the pkgconfig directory |
702 | # moves the *.pc files into the pkgconfig directory. |
| 637 | fix_library_files() { |
703 | fix_library_files() { |
|
|
704 | local libfile |
| 638 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
705 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 639 | if [[ -e ${libfile} ]]; then |
706 | if [[ -e ${libfile} ]]; then |
| 640 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "Sed on ${libfile} failed." |
707 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "sed on ${libfile} failed" |
| 641 | fi |
708 | fi |
| 642 | done |
709 | done |
| 643 | |
710 | |
| 644 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
711 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations |
| 645 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
712 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 646 | if [[ -e ${libfile} ]]; then |
713 | if [[ -e ${libfile} ]]; then |
| 647 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "Sed failed" |
714 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "sed on ${libfile} failed" |
| 648 | |
715 | |
| 649 | # Move .pc files into the pkgconfig directory |
716 | # Move .pc files into the pkgconfig directory |
| 650 | dodir ${QTPCDIR#${EPREFIX}} |
717 | dodir ${QTPCDIR#${EPREFIX}} |
| 651 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
718 | mv ${libfile} "${D}"/${QTPCDIR}/ || die "moving ${libfile} to ${D}/${QTPCDIR}/ failed" |
| 652 | || die "Moving ${libfile} to ${D}/${QTPCDIR}/ failed." |
|
|
| 653 | fi |
719 | fi |
| 654 | done |
720 | done |
| 655 | |
721 | |
| 656 | # Don't install an empty directory |
722 | # Don't install an empty directory |
| 657 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
723 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 658 | } |
724 | } |
| 659 | |
725 | |
| 660 | # @FUNCTION: qt_use |
726 | # @FUNCTION: qt_use |
| 661 | # @USAGE: < flag > [ feature ] [ enableval ] |
727 | # @USAGE: < flag > [ feature ] [ enableval ] |
| 662 | # @DESCRIPTION: |
728 | # @DESCRIPTION: |
| 663 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
729 | # This will echo "-${enableval}-${feature}" if <flag> is enabled, or |
| 664 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
730 | # "-no-${feature}" if it's disabled. If [feature] is not specified, <flag> |
| 665 | # will be used for that. If [enableval] is not specified, it omits the |
731 | # will be used for that. If [enableval] is not specified, it omits the |
| 666 | # assignment-part |
732 | # "-${enableval}" part. |
| 667 | qt_use() { |
733 | qt_use() { |
| 668 | local flag=$1 |
734 | use "$1" && echo "${3:+-$3}-${2:-$1}" || echo "-no-${2:-$1}" |
| 669 | local feature=$1 |
|
|
| 670 | local enableval= |
|
|
| 671 | |
|
|
| 672 | [[ -n $2 ]] && feature=$2 |
|
|
| 673 | [[ -n $3 ]] && enableval=-$3 |
|
|
| 674 | |
|
|
| 675 | if use ${flag}; then |
|
|
| 676 | echo "${enableval}-${feature}" |
|
|
| 677 | else |
|
|
| 678 | echo "-no-${feature}" |
|
|
| 679 | fi |
|
|
| 680 | } |
735 | } |
| 681 | |
736 | |
| 682 | # @FUNCTION: qt_mkspecs_dir |
737 | # @FUNCTION: qt_mkspecs_dir |
| 683 | # @RETURN: the specs-directory w/o path |
738 | # @RETURN: the specs-directory w/o path |
| 684 | # @DESCRIPTION: |
739 | # @DESCRIPTION: |
| 685 | # Allows us to define which mkspecs dir we want to use. |
740 | # Allows us to define which mkspecs dir we want to use. |
| 686 | qt_mkspecs_dir() { |
741 | qt_mkspecs_dir() { |
| 687 | # Allows us to define which mkspecs dir we want to use. |
|
|
| 688 | local spec |
742 | local spec= |
| 689 | |
|
|
| 690 | case ${CHOST} in |
743 | case ${CHOST} in |
| 691 | *-freebsd*|*-dragonfly*) |
744 | *-freebsd*|*-dragonfly*) |
| 692 | spec=freebsd ;; |
745 | spec=freebsd ;; |
| 693 | *-openbsd*) |
746 | *-openbsd*) |
| 694 | spec=openbsd ;; |
747 | spec=openbsd ;; |
| … | |
… | |
| 706 | *-solaris*) |
759 | *-solaris*) |
| 707 | spec=solaris ;; |
760 | spec=solaris ;; |
| 708 | *-linux-*|*-linux) |
761 | *-linux-*|*-linux) |
| 709 | spec=linux ;; |
762 | spec=linux ;; |
| 710 | *) |
763 | *) |
| 711 | die "Unknown CHOST, no platform choosen." |
764 | die "Unknown CHOST, no platform chosen" |
| 712 | esac |
765 | esac |
| 713 | |
766 | |
| 714 | CXX=$(tc-getCXX) |
767 | CXX=$(tc-getCXX) |
| 715 | if [[ ${CXX} == *g++* ]]; then |
768 | if [[ ${CXX} == *g++* ]]; then |
| 716 | spec+=-g++ |
769 | spec+=-g++ |
| 717 | elif [[ ${CXX} == *icpc* ]]; then |
770 | elif [[ ${CXX} == *icpc* ]]; then |
| 718 | spec+=-icc |
771 | spec+=-icc |
| 719 | else |
772 | else |
| 720 | die "Unknown compiler ${CXX}." |
773 | die "Unknown compiler '${CXX}'" |
| 721 | fi |
774 | fi |
| 722 | if [[ -n ${LIBDIR/lib} ]]; then |
775 | if [[ -n ${LIBDIR/lib} ]]; then |
| 723 | spec+=-${LIBDIR/lib} |
776 | spec+=-${LIBDIR/lib} |
| 724 | fi |
777 | fi |
| 725 | |
778 | |
| … | |
… | |
| 734 | fi |
787 | fi |
| 735 | |
788 | |
| 736 | echo "${spec}" |
789 | echo "${spec}" |
| 737 | } |
790 | } |
| 738 | |
791 | |
|
|
792 | # @FUNCTION: qt_assistant_cleanup |
|
|
793 | # @INTERNAL |
|
|
794 | # @DESCRIPTION: |
|
|
795 | # Tries to clean up tools.pro for qt-assistant ebuilds. |
|
|
796 | # Meant to be called in src_prepare(). |
|
|
797 | # Since Qt 4.7.4 this function is a no-op. |
|
|
798 | qt_assistant_cleanup() { |
|
|
799 | # apply patching to qt-assistant ebuilds only |
|
|
800 | [[ ${PN} != "qt-assistant" ]] && return |
|
|
801 | |
|
|
802 | # no longer needed for 4.7.4 and later |
|
|
803 | version_is_at_least "4.7.4" && return |
|
|
804 | |
|
|
805 | # different versions (and branches...) may need different handling, |
|
|
806 | # add a case if you need special handling |
|
|
807 | case "${MY_PV_EXTRA}" in |
|
|
808 | *kde-qt*) |
|
|
809 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
810 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
811 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
812 | ;; |
|
|
813 | *) |
|
|
814 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
|
|
815 | -e "/mac/,/^embedded.*makeqpf$/d" \ |
|
|
816 | -e "s/^\([ \t]*pixeltool\) /\1 qdoc3 /" \ |
|
|
817 | -i tools/tools.pro || die "patching tools.pro failed" |
|
|
818 | ;; |
|
|
819 | esac |
|
|
820 | } |
|
|
821 | |
|
|
822 | # @FUNCTION: qt_nolibx11 |
|
|
823 | # @INTERNAL |
|
|
824 | # @DESCRIPTION: |
|
|
825 | # Ignore X11 tests for packages that don't need X libraries installed. |
|
|
826 | qt_nolibx11() { |
|
|
827 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
|
|
828 | die "x11 check sed failed" |
|
|
829 | } |
|
|
830 | |
| 739 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst |
831 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |