| 1 | # Copyright 1999-2011 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.98 2011/11/12 19:01:56 pesa Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.114 2012/01/01 18:12:03 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. |
| … | |
… | |
| 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 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
12 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
| 13 | |
13 | |
| 14 | MY_PV=${PV/_/-} |
14 | MY_PV=${PV/_/-} |
| 15 | if version_is_at_least 4.5.99999999; then |
|
|
| 16 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
15 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
|
|
16 | |
|
|
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 | |
| 17 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && |
23 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && |
| 18 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
24 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
| 19 | IUSE="+exceptions" |
25 | IUSE+=" +exceptions" |
| 20 | else |
|
|
| 21 | MY_P=qt-x11-opensource-src-${MY_PV} |
|
|
| 22 | fi |
|
|
| 23 | |
26 | |
| 24 | if version_is_at_least 4.7.99999999; then |
27 | if version_is_at_least 4.7.99999999; then |
| 25 | IUSE+=" c++0x qpa" |
28 | IUSE+=" c++0x qpa" |
| 26 | fi |
29 | fi |
| 27 | |
30 | |
| 28 | HOMEPAGE="http://qt.nokia.com/" |
31 | DEPEND="dev-util/pkgconfig" |
| 29 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
|
|
| 30 | |
|
|
| 31 | LICENSE="|| ( LGPL-2.1 GPL-3 )" |
|
|
| 32 | IUSE+=" debug pch aqua" |
|
|
| 33 | |
|
|
| 34 | RDEPEND=" |
32 | RDEPEND=" |
| 35 | !<x11-libs/qt-assistant-${PV} |
33 | !<x11-libs/qt-assistant-${PV} |
| 36 | !>x11-libs/qt-assistant-${PV}-r9999 |
34 | !>x11-libs/qt-assistant-${PV}-r9999 |
| 37 | !<x11-libs/qt-core-${PV} |
35 | !<x11-libs/qt-core-${PV} |
| 38 | !>x11-libs/qt-core-${PV}-r9999 |
36 | !>x11-libs/qt-core-${PV}-r9999 |
| 39 | !<x11-libs/qt-dbus-${PV} |
37 | !<x11-libs/qt-dbus-${PV} |
| 40 | !>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 |
| 41 | !<x11-libs/qt-demo-${PV} |
41 | !<x11-libs/qt-demo-${PV} |
| 42 | !>x11-libs/qt-demo-${PV}-r9999 |
42 | !>x11-libs/qt-demo-${PV}-r9999 |
| 43 | !<x11-libs/qt-gui-${PV} |
43 | !<x11-libs/qt-gui-${PV} |
| 44 | !>x11-libs/qt-gui-${PV}-r9999 |
44 | !>x11-libs/qt-gui-${PV}-r9999 |
| 45 | !<x11-libs/qt-multimedia-${PV} |
45 | !<x11-libs/qt-multimedia-${PV} |
| … | |
… | |
| 66 | |
66 | |
| 67 | S=${WORKDIR}/${MY_P} |
67 | S=${WORKDIR}/${MY_P} |
| 68 | |
68 | |
| 69 | # @FUNCTION: qt4-build_pkg_setup |
69 | # @FUNCTION: qt4-build_pkg_setup |
| 70 | # @DESCRIPTION: |
70 | # @DESCRIPTION: |
| 71 | # Sets up S, MY_P, PATH, and LD_LIBRARY_PATH |
71 | # Sets up PATH and LD_LIBRARY_PATH. |
| 72 | qt4-build_pkg_setup() { |
72 | qt4-build_pkg_setup() { |
| 73 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
73 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
| 74 | |
74 | |
| 75 | # Protect users by not allowing downgrades between releases |
75 | # Protect users by not allowing downgrades between releases |
| 76 | # Downgrading revisions within the same release should be allowed |
76 | # Downgrading revisions within the same release should be allowed |
| 77 | if has_version '>'${CATEGORY}/${P}-r9999 ; then |
77 | if has_version '>'${CATEGORY}/${P}-r9999; then |
| 78 | if [[ -z $I_KNOW_WHAT_I_AM_DOING ]] ; then |
78 | if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
| 79 | eerror "Sanity check to keep you from breaking your system:" |
79 | eerror "Sanity check to keep you from breaking your system:" |
| 80 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
80 | eerror " Downgrading Qt is completely unsupported and will break your system!" |
| 81 | die "aborting to save your system" |
81 | die "aborting to save your system" |
| 82 | else |
82 | else |
| 83 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
83 | ewarn "Downgrading Qt is completely unsupported and will break your system!" |
| … | |
… | |
| 123 | fi |
123 | fi |
| 124 | } |
124 | } |
| 125 | |
125 | |
| 126 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
126 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
| 127 | # @DESCRIPTION: |
127 | # @DESCRIPTION: |
| 128 | # Arguments for build_target_directories. Takes the directories, in which the |
128 | # Arguments for build_target_directories. Takes the directories in which the |
| 129 | # code should be compiled. This is a space-separated list |
129 | # code should be compiled. This is a space-separated list. |
| 130 | |
130 | |
| 131 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
131 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
| 132 | # @DESCRIPTION: |
132 | # @DESCRIPTION: |
| 133 | # Space separated list including the directories that will be extracted from Qt |
133 | # Space-separated list including the directories that will be extracted from |
| 134 | # tarball |
134 | # Qt tarball. |
| 135 | |
135 | |
| 136 | # @FUNCTION: qt4-build_src_unpack |
136 | # @FUNCTION: qt4-build_src_unpack |
| 137 | # @DESCRIPTION: |
137 | # @DESCRIPTION: |
| 138 | # Unpacks the sources |
138 | # Unpacks the sources. |
| 139 | qt4-build_src_unpack() { |
139 | qt4-build_src_unpack() { |
| 140 | setqtenv |
140 | setqtenv |
| 141 | local unpack_p="${MY_P}" |
141 | |
| 142 | case "${PV}" in |
142 | local tarball="${MY_P}.tar.gz" target= targets= |
| 143 | 4.8.0_*) |
|
|
| 144 | unpack_p="qt-everywhere-opensource-src-${PV/_*}" |
|
|
| 145 | ;; |
|
|
| 146 | esac |
|
|
| 147 | local target targets= |
|
|
| 148 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
143 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 149 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
144 | src/{qbase,qt_targets,qt_install}.pri bin config.tests \ |
| 150 | ${QT4_EXTRACT_DIRECTORIES}; do |
145 | mkspecs qmake ${QT4_EXTRACT_DIRECTORIES} |
|
|
146 | do |
| 151 | targets+=" ${unpack_p}/${target}" |
147 | targets+="${MY_P}/${target} " |
| 152 | done |
148 | done |
| 153 | |
149 | |
|
|
150 | ebegin "Unpacking parts of ${tarball}:" ${targets//${MY_P}\/} |
| 154 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
151 | tar -xzf "${DISTDIR}/${tarball}" ${targets} |
| 155 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
152 | eend $? || die "failed to unpack" |
| 156 | case "${PV}" in |
|
|
| 157 | 4.8.0_*) |
|
|
| 158 | mv ${WORKDIR}/qt-everywhere-opensource-src-${PV/_*} \ |
|
|
| 159 | ${WORKDIR}/qt-everywhere-opensource-src-${MY_PV} |
|
|
| 160 | ;; |
|
|
| 161 | esac |
|
|
| 162 | } |
153 | } |
| 163 | |
154 | |
| 164 | # @ECLASS-VARIABLE: PATCHES |
155 | # @ECLASS-VARIABLE: PATCHES |
|
|
156 | # @DEFAULT_UNSET |
| 165 | # @DESCRIPTION: |
157 | # @DESCRIPTION: |
| 166 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
158 | # PATCHES array variable containing all various patches to be applied. |
| 167 | # to specify the full path. This variable is necessary for src_prepare phase. |
159 | # This variable is expected to be defined in global scope of ebuild. |
| 168 | # example: |
160 | # Make sure to specify the full path. This variable is utilised in |
| 169 | # PATCHES="${FILESDIR}"/mypatch.patch |
161 | # src_unpack/src_prepare phase, based on EAPI. |
| 170 | # ${FILESDIR}"/mypatch2.patch" |
|
|
| 171 | # |
162 | # |
|
|
163 | # @CODE |
|
|
164 | # PATCHES=( "${FILESDIR}/mypatch.patch" |
|
|
165 | # "${FILESDIR}/patches_folder/" ) |
|
|
166 | # @CODE |
| 172 | |
167 | |
| 173 | # @FUNCTION: qt4-build_src_prepare |
168 | # @FUNCTION: qt4-build_src_prepare |
| 174 | # @DESCRIPTION: |
169 | # @DESCRIPTION: |
| 175 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
170 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
| 176 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
171 | # the build system in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified in /etc/make.conf. |
| 177 | qt4-build_src_prepare() { |
172 | qt4-build_src_prepare() { |
| 178 | setqtenv |
173 | setqtenv |
| 179 | cd "${S}" |
174 | cd "${S}" |
| 180 | |
175 | |
| 181 | # fix qt 4.7 regression that skips -fvisibility=hidden |
|
|
| 182 | if version_is_at_least "4.7.0_beta1"; then |
176 | if version_is_at_least "4.7"; then |
| 183 | sed -e "s/^gcc|g++)/*gcc|*g++)/" \ |
|
|
| 184 | -i config.tests/unix/fvisibility.test || |
|
|
| 185 | die "visibility fixing sed failed" |
|
|
| 186 | fi |
|
|
| 187 | |
|
|
| 188 | # fix libX11 dependency on non X packages |
177 | # fix libX11 dependency on non X packages |
| 189 | if version_is_at_least "4.7.0_beta2"; then |
|
|
| 190 | local nolibx11_pkgs="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
178 | local nolibx11_pkgs="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
| 191 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
179 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
| 192 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
180 | |
|
|
181 | qt_assistant_cleanup |
| 193 | fi |
182 | fi |
| 194 | |
183 | |
| 195 | if use aqua; then |
184 | if use aqua; then |
| 196 | # provide a proper macx-g++-64 |
185 | # provide a proper macx-g++-64 |
| 197 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
186 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| 198 | |
187 | |
| 199 | sed -e '/^CONFIG/s:app_bundle::' \ |
188 | sed -e '/^CONFIG/s:app_bundle::' \ |
| 200 | -e '/^CONFIG/s:plugin_no_soname:plugin_with_soname absolute_library_soname:' \ |
189 | -e '/^CONFIG/s:plugin_no_soname:plugin_with_soname absolute_library_soname:' \ |
| 201 | -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed failed" |
190 | -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 202 | fi |
191 | fi |
| 203 | |
192 | |
| 204 | if [[ ${PN} != qt-core ]]; then |
193 | if [[ ${PN} != qt-core ]]; then |
| 205 | skip_qmake_build_patch |
194 | skip_qmake_build |
| 206 | skip_project_generation_patch |
195 | skip_project_generation |
| 207 | symlink_binaries_to_buildtree |
196 | symlink_binaries_to_buildtree |
| 208 | fi |
197 | fi |
| 209 | |
198 | |
| 210 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
199 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 211 | # qmake bus errors with -O2 but -O3 works |
200 | # qmake bus errors with -O2 but -O3 works |
| … | |
… | |
| 216 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
205 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 217 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
206 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 218 | append-flags -fno-gcse |
207 | append-flags -fno-gcse |
| 219 | fi |
208 | fi |
| 220 | |
209 | |
| 221 | if has c++0x ${IUSE//+} && use c++0x; then |
210 | if use_if_iuse c++0x; then |
| 222 | ewarn "You are about to build Qt4 using the C++11 standard. Even though" |
211 | ewarn "You are about to build Qt4 using the C++11 standard. Even though" |
| 223 | ewarn "this is an official standard, some of the reverse dependencies" |
212 | ewarn "this is an official standard, some of the reverse dependencies" |
| 224 | ewarn "may fail to compile or link againt the Qt4 libraries. Before" |
213 | ewarn "may fail to compile or link againt the Qt4 libraries. Before" |
| 225 | ewarn "reporting a bug, make sure your bug is reproducible with c++0x" |
214 | ewarn "reporting a bug, make sure your bug is reproducible with c++0x" |
| 226 | ewarn "disabled." |
215 | ewarn "disabled." |
| … | |
… | |
| 231 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
220 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
| 232 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
221 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 233 | append-cxxflags -fno-stack-protector |
222 | append-cxxflags -fno-stack-protector |
| 234 | # Bug 253127 |
223 | # Bug 253127 |
| 235 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
224 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
| 236 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
225 | -i mkspecs/common/g++.conf || die |
| 237 | fi |
226 | fi |
| 238 | |
227 | |
| 239 | # Bug 261632 |
228 | # Bug 261632 |
| 240 | if use ppc64; then |
229 | if use ppc64; then |
| 241 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
230 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 242 | append-flags -mminimal-toc |
231 | append-flags -mminimal-toc |
| 243 | fi |
232 | fi |
| 244 | |
233 | |
| 245 | # Bug 282984 && Bug 295530 |
234 | # Respect CC, CXX, {C,CXX,LD}FLAGS in .qmake.cache |
| 246 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=\"$(tc-getCC)\"\nCXX=\"$(tc-getCXX)\"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
235 | sed -e "/^SYSTEM_VARIABLES=/i \ |
| 247 | -i configure || die "sed qmake compilers failed" |
236 | CC='$(tc-getCC)'\n\ |
|
|
237 | CXX='$(tc-getCXX)'\n\ |
|
|
238 | CFLAGS='${CFLAGS}'\n\ |
|
|
239 | CXXFLAGS='${CXXFLAGS}'\n\ |
|
|
240 | LDFLAGS='${LDFLAGS}'\n" \ |
|
|
241 | -i configure \ |
|
|
242 | || die "sed SYSTEM_VARIABLES failed" |
| 248 | |
243 | |
| 249 | # Bug 321335 |
244 | # Respect CC, CXX, LINK and *FLAGS in config.tests |
| 250 | if version_is_at_least 4.6; then |
245 | find config.tests/unix -name '*.test' -type f -print0 | xargs -0 \ |
| 251 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
246 | sed -i -e "/bin\/qmake/ s: \"QT_BUILD_TREE=: \ |
| 252 | xargs -0 \ |
247 | 'QMAKE_CC=$(tc-getCC)' 'QMAKE_CXX=$(tc-getCXX)' 'QMAKE_LINK=$(tc-getCXX)' \ |
| 253 | sed -e "s:\(\$MAKE\):\1 CC=\"$(tc-getCC)\" CXX=\"$(tc-getCXX)\" LD=\"$(tc-getCXX)\" LINK=\"$(tc-getCXX)\":g" \ |
248 | 'QMAKE_CFLAGS+=${CFLAGS}' 'QMAKE_CXXFLAGS+=${CXXFLAGS}' 'QMAKE_LFLAGS+=${LDFLAGS}'&:" \ |
| 254 | -i || die "sed test compilers failed" |
249 | || die "sed config.tests failed" |
| 255 | fi |
250 | |
|
|
251 | # Strip predefined CFLAGS from mkspecs (bug 312689) |
|
|
252 | sed -i -e '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf || die |
| 256 | |
253 | |
| 257 | # Bug 172219 |
254 | # Bug 172219 |
| 258 | sed -e "s:X11R6/::" \ |
255 | sed -e 's:/X11R6/:/:' -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 259 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
| 260 | |
256 | |
| 261 | if [[ ${CHOST} == *-darwin* ]]; then |
257 | if [[ ${CHOST} == *-darwin* ]]; then |
| 262 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
258 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 263 | # crippled (by design) :/ |
259 | # crippled (by design) :/ |
|
|
260 | sed \ |
| 264 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
261 | -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| 265 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
262 | -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ |
| 266 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
263 | -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=-headerpad_max_install_names ${LDFLAGS}:" \ |
| 267 | -e "s:-arch\s\w*::g" \ |
264 | -e "s:-arch\s\w*::g" \ |
| 268 | -i mkspecs/common/mac-g++.conf || die "sed mkspecs/common/mac-g++.conf failed" |
265 | -i mkspecs/common/mac-g++.conf \ |
|
|
266 | || die "sed mkspecs/common/mac-g++.conf failed" |
| 269 | |
267 | |
| 270 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
268 | # Fix configure's -arch settings that appear in qmake/Makefile and also |
| 271 | # fix arch handling (automagically duplicates our -arch arg and breaks |
269 | # fix arch handling (automagically duplicates our -arch arg and breaks |
| 272 | # pch). Additionally disable Xarch support. |
270 | # pch). Additionally disable Xarch support. |
| 273 | sed \ |
271 | sed \ |
| … | |
… | |
| 278 | -e "s:-arch \$i::" \ |
276 | -e "s:-arch \$i::" \ |
| 279 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
277 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
| 280 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
278 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
| 281 | -e "s:-Xarch_x86_64::g" \ |
279 | -e "s:-Xarch_x86_64::g" \ |
| 282 | -e "s:-Xarch_ppc64::g" \ |
280 | -e "s:-Xarch_ppc64::g" \ |
| 283 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
281 | -i configure mkspecs/common/mac-g++.conf \ |
|
|
282 | || die "sed -arch/-Xarch failed" |
| 284 | |
283 | |
| 285 | # On Snow Leopard don't fall back to 10.5 deployment target. |
284 | # On Snow Leopard don't fall back to 10.5 deployment target. |
| 286 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
285 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
| 287 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
286 | 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" \ |
287 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
| 289 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
288 | -i configure mkspecs/common/mac-g++.conf \ |
|
|
289 | || die "sed deployment target failed" |
| 290 | fi |
290 | fi |
| 291 | fi |
291 | fi |
| 292 | |
292 | |
| 293 | # this one is needed for all systems with a separate -liconv, apart from |
293 | # this one is needed for all systems with a separate -liconv, apart from |
| 294 | # Darwin, for which the sources already cater for -liconv |
294 | # Darwin, for which the sources already cater for -liconv |
| 295 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] ; then |
295 | if use !elibc_glibc && [[ ${CHOST} != *-darwin* ]] ; then |
| 296 | sed \ |
296 | sed -e 's|mac:\(LIBS += -liconv\)|\1|g' \ |
| 297 | -e "s|mac:LIBS += -liconv|LIBS += -liconv|g" \ |
|
|
| 298 | -i config.tests/unix/iconv/iconv.pro \ |
297 | -i config.tests/unix/iconv/iconv.pro \ |
| 299 | || die "sed on iconv.pro failed" |
298 | || die "sed iconv.pro failed" |
| 300 | fi |
299 | fi |
| 301 | |
300 | |
| 302 | # we need some patches for Solaris |
301 | # we need some patches for Solaris |
| 303 | sed -i \ |
|
|
| 304 | -e '/^QMAKE_LFLAGS_THREAD/a\QMAKE_LFLAGS_DYNAMIC_LIST = -Wl,--dynamic-list,' \ |
302 | sed -i -e '/^QMAKE_LFLAGS_THREAD/a\QMAKE_LFLAGS_DYNAMIC_LIST = -Wl,--dynamic-list,' \ |
| 305 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
303 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 306 | # use GCC over SunStudio |
304 | # use GCC over SunStudio |
| 307 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
305 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 308 | # don't flirt with non-Prefix stuff, we're quite possessive |
306 | # do not flirt with non-Prefix stuff, we're quite possessive |
| 309 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
307 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 310 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
308 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 311 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
|
|
| 312 | sed -i '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf |
|
|
| 313 | |
309 | |
| 314 | base_src_prepare |
310 | base_src_prepare |
| 315 | } |
311 | } |
| 316 | |
312 | |
| 317 | # @FUNCTION: qt4-build_src_configure |
313 | # @FUNCTION: qt4-build_src_configure |
| … | |
… | |
| 349 | myconf+=" -cocoa -framework" |
345 | myconf+=" -cocoa -framework" |
| 350 | |
346 | |
| 351 | # We are crazy and build cocoa + qt3support :-) |
347 | # We are crazy and build cocoa + qt3support :-) |
| 352 | if use qt3support; then |
348 | if use qt3support; then |
| 353 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
349 | sed -e "/case \"\$PLATFORM,\$CFG_MAC_COCOA\" in/,/;;/ s|CFG_QT3SUPPORT=\"no\"|CFG_QT3SUPPORT=\"yes\"|" \ |
| 354 | -i configure |
350 | -i configure || die |
| 355 | fi |
351 | fi |
| 356 | |
352 | |
| 357 | # We need the source's headers, not the installed ones. |
353 | # We need the source's headers, not the installed ones. |
| 358 | myconf+=" -I${S}/include" |
354 | myconf+=" -I${S}/include" |
| 359 | |
355 | |
| … | |
… | |
| 364 | # freetype2 include dir is non-standard, thus include it on configure |
360 | # freetype2 include dir is non-standard, thus include it on configure |
| 365 | # use -I from configure |
361 | # use -I from configure |
| 366 | myconf+=" $(pkg-config --cflags freetype2)" |
362 | myconf+=" $(pkg-config --cflags freetype2)" |
| 367 | fi |
363 | fi |
| 368 | |
364 | |
| 369 | # Disable SSE4.x, since auto-detection is currently broken |
|
|
| 370 | # Upstream bug http://bugreports.qt.nokia.com/browse/QTBUG-13623 |
|
|
| 371 | [[ ${PV} == "4.7.1" ]] && myconf+=" -no-sse4.1 -no-sse4.2" |
|
|
| 372 | |
|
|
| 373 | echo ./configure ${myconf} |
365 | echo ./configure ${myconf} |
| 374 | ./configure ${myconf} || die "./configure failed" |
366 | ./configure ${myconf} || die "./configure failed" |
| 375 | myconf="" |
367 | myconf="" |
| 376 | |
368 | |
| 377 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
369 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
| … | |
… | |
| 395 | done |
387 | done |
| 396 | } |
388 | } |
| 397 | |
389 | |
| 398 | # @FUNCTION: fix_includes |
390 | # @FUNCTION: fix_includes |
| 399 | # @DESCRIPTION: |
391 | # @DESCRIPTION: |
| 400 | # For MacOSX we need to add some symlinks when frameworks are |
392 | # For MacOS X we need to add some symlinks when frameworks are |
| 401 | # being used, to avoid complications with some more or less stupid packages. |
393 | # being used, to avoid complications with some more or less stupid packages. |
| 402 | fix_includes() { |
394 | fix_includes() { |
| 403 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
395 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
| 404 | # Some packages tend to include <Qt/...> |
396 | # Some packages tend to include <Qt/...> |
| 405 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
397 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
| 406 | |
398 | |
| 407 | # Fake normal headers when frameworks are installed... eases life later on |
399 | # Fake normal headers when frameworks are installed... eases life later on |
| 408 | local dest f |
400 | local dest f h |
| 409 | for frw in "${D}${QTLIBDIR}"/*.framework; do |
401 | for frw in "${D}${QTLIBDIR}"/*.framework; do |
| 410 | [[ -e "${frw}"/Headers ]] || continue |
402 | [[ -e "${frw}"/Headers ]] || continue |
| 411 | f=$(basename ${frw}) |
403 | f=$(basename ${frw}) |
| 412 | dest="${QTHEADERDIR#${EPREFIX}}"/${f%.framework} |
404 | dest="${QTHEADERDIR#${EPREFIX}}"/${f%.framework} |
| 413 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers "${dest}" |
405 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers "${dest}" |
| … | |
… | |
| 432 | install_qconfigs |
424 | install_qconfigs |
| 433 | fix_library_files |
425 | fix_library_files |
| 434 | fix_includes |
426 | fix_includes |
| 435 | |
427 | |
| 436 | # remove .la files since we are building only shared Qt libraries |
428 | # remove .la files since we are building only shared Qt libraries |
| 437 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
429 | find "${D}"${QTLIBDIR} -type f -name '*.la' -print0 | xargs -0 rm -f |
| 438 | } |
430 | } |
| 439 | |
431 | |
| 440 | # @FUNCTION: setqtenv |
432 | # @FUNCTION: setqtenv |
|
|
433 | # @INTERNAL |
| 441 | setqtenv() { |
434 | setqtenv() { |
| 442 | # Set up installation directories |
435 | # Set up installation directories |
| 443 | QTBASEDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
| 444 | QTPREFIXDIR=${EPREFIX}/usr |
436 | QTPREFIXDIR=${EPREFIX}/usr |
| 445 | QTBINDIR=${EPREFIX}/usr/bin |
437 | QTBINDIR=${EPREFIX}/usr/bin |
| 446 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
438 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
| 447 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
|
|
| 448 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
439 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
| 449 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
|
|
| 450 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
440 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
| 451 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
441 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
| 452 | QTPLUGINDIR=${QTLIBDIR}/plugins |
442 | QTPLUGINDIR=${QTLIBDIR}/plugins |
|
|
443 | QTIMPORTDIR=${QTLIBDIR}/imports |
|
|
444 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
|
|
445 | QTTRANSDIR=${QTDATADIR}/translations |
| 453 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
446 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
| 454 | QTTRANSDIR=${QTDATADIR}/translations |
|
|
| 455 | QTEXAMPLESDIR=${QTDATADIR}/examples |
447 | QTEXAMPLESDIR=${QTDATADIR}/examples |
| 456 | QTDEMOSDIR=${QTDATADIR}/demos |
448 | QTDEMOSDIR=${QTDATADIR}/demos |
|
|
449 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
| 457 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
450 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
451 | |
| 458 | PLATFORM=$(qt_mkspecs_dir) |
452 | PLATFORM=$(qt_mkspecs_dir) |
| 459 | |
453 | |
| 460 | unset QMAKESPEC |
454 | unset QMAKESPEC |
| 461 | } |
455 | } |
| 462 | |
456 | |
| 463 | # @FUNCTION: standard_configure_options |
457 | # @FUNCTION: standard_configure_options |
|
|
458 | # @INTERNAL |
| 464 | # @DESCRIPTION: |
459 | # @DESCRIPTION: |
| 465 | # Sets up some standard configure options, like libdir (if necessary), whether |
460 | # Sets up some standard configure options, like libdir (if necessary), whether |
| 466 | # debug info is wanted or not. |
461 | # debug info is wanted or not. |
| 467 | standard_configure_options() { |
462 | standard_configure_options() { |
| 468 | local myconf= |
463 | local myconf="-prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
|
|
464 | -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} -plugindir ${QTPLUGINDIR} |
|
|
465 | -importdir ${QTIMPORTDIR} -datadir ${QTDATADIR} -translationdir ${QTTRANSDIR} |
|
|
466 | -sysconfdir ${QTSYSCONFDIR} -examplesdir ${QTEXAMPLESDIR} -demosdir ${QTDEMOSDIR} |
|
|
467 | -opensource -confirm-license -shared -fast -largefile -stl -verbose |
|
|
468 | -platform $(qt_mkspecs_dir) -nomake examples -nomake demos" |
| 469 | |
469 | |
| 470 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
470 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
| 471 | |
471 | |
| 472 | # Disable visibility explicitly if gcc version isn't 4 |
472 | # debug/release |
| 473 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
| 474 | myconf+=" -no-reduce-exports" |
|
|
| 475 | fi |
|
|
| 476 | |
|
|
| 477 | # precompiled headers doesn't work on hardened, where the flag is masked. |
|
|
| 478 | myconf+=" $(qt_use pch)" |
|
|
| 479 | |
|
|
| 480 | if use debug; then |
473 | if use debug; then |
| 481 | myconf+=" -debug" |
474 | myconf+=" -debug" |
| 482 | else |
475 | else |
| 483 | myconf+=" -release" |
476 | myconf+=" -release" |
| 484 | fi |
477 | fi |
| 485 | myconf+=" -no-separate-debug-info" |
478 | myconf+=" -no-separate-debug-info" |
| 486 | |
479 | |
|
|
480 | # exceptions USE flag |
|
|
481 | local exceptions="-exceptions" |
|
|
482 | in_iuse exceptions && exceptions="$(qt_use exceptions)" |
|
|
483 | myconf+=" ${exceptions}" |
|
|
484 | |
|
|
485 | # disable RPATH on Qt >= 4.8 (bug 380415) |
|
|
486 | version_is_at_least 4.8 && myconf+=" -no-rpath" |
|
|
487 | |
|
|
488 | # precompiled headers don't work on hardened, where the flag is masked |
|
|
489 | myconf+=" $(qt_use pch)" |
|
|
490 | |
|
|
491 | # -reduce-relocations |
|
|
492 | # This flag seems to introduce major breakage to applications, |
|
|
493 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
494 | # construct a QApplication before a QPaintDevice" on Solaris. |
|
|
495 | # -- Daniel Vergien |
|
|
496 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
497 | |
| 487 | use aqua && myconf+=" -no-framework" |
498 | use aqua && myconf+=" -no-framework" |
| 488 | |
499 | |
| 489 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
500 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 490 | # $(tc-arch). Therefore we convert it to supported values. |
501 | # $(tc-arch). Therefore we convert it to supported values. |
| 491 | case "$(tc-arch)" in |
502 | case "$(tc-arch)" in |
| 492 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
503 | amd64|x64-*) myconf+=" -arch x86_64" ;; |
| 493 | ppc-macos) myconf+=" -arch ppc" ;; |
504 | ppc-macos) myconf+=" -arch ppc" ;; |
| 494 | ppc|ppc64|ppc-*) myconf+=" -arch powerpc" ;; |
505 | ppc|ppc64|ppc-*) myconf+=" -arch powerpc" ;; |
| 495 | sparc|sparc-*) myconf+=" -arch sparc" ;; |
506 | sparc|sparc-*|sparc64-*) myconf+=" -arch sparc" ;; |
| 496 | x86-macos) myconf+=" -arch x86" ;; |
507 | x86-macos) myconf+=" -arch x86" ;; |
| 497 | x86|x86-*) myconf+=" -arch i386" ;; |
508 | x86|x86-*) myconf+=" -arch i386" ;; |
| 498 | alpha|arm|ia64|mips|s390|sparc) myconf+=" -arch $(tc-arch)" ;; |
509 | alpha|arm|ia64|mips|s390) myconf+=" -arch $(tc-arch)" ;; |
| 499 | hppa|sh) myconf+=" -arch generic" ;; |
510 | hppa|sh) myconf+=" -arch generic" ;; |
| 500 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
511 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 501 | esac |
512 | esac |
| 502 | |
513 | |
| 503 | # 4.5: build everything but qt-xmlpatterns w/o exceptions |
|
|
| 504 | # 4.6: exceptions USE flag |
|
|
| 505 | local exceptions="-exceptions" |
|
|
| 506 | case "${PV}" in |
|
|
| 507 | 4.5.*) |
|
|
| 508 | [[ ${PN} == "qt-xmlpatterns" ]] || exceptions="-no-exceptions" |
|
|
| 509 | ;; |
|
|
| 510 | *) |
|
|
| 511 | has exceptions "${IUSE//+}" && exceptions="$(qt_use exceptions)" |
|
|
| 512 | ;; |
|
|
| 513 | esac |
|
|
| 514 | |
|
|
| 515 | # note about -reduce-relocations: |
|
|
| 516 | # That flag seems to introduce major breakage to applications, |
|
|
| 517 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
| 518 | # construct a QApplication before a QPaintDevice" on Solaris |
|
|
| 519 | # -- Daniel Vergien |
|
|
| 520 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
| 521 | |
|
|
| 522 | myconf+=" -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license |
|
|
| 523 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
|
|
| 524 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
|
|
| 525 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
|
|
| 526 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
|
|
| 527 | -demosdir ${QTDEMOSDIR} -silent -fast -opensource |
|
|
| 528 | ${exceptions} |
|
|
| 529 | -nomake examples -nomake demos" |
|
|
| 530 | |
|
|
| 531 | echo "${myconf}" |
514 | echo "${myconf}" |
| 532 | } |
515 | } |
| 533 | |
516 | |
| 534 | # @FUNCTION: prepare_directories |
517 | # @FUNCTION: prepare_directories |
| 535 | # @USAGE: < directories > |
518 | # @USAGE: < directories > |
|
|
519 | # @INTERNAL |
| 536 | # @DESCRIPTION: |
520 | # @DESCRIPTION: |
| 537 | # Generates makefiles for the directories set in $QT4_TARGET_DIRECTORIES |
521 | # Generates Makefiles for the given list of directories. |
| 538 | prepare_directories() { |
522 | prepare_directories() { |
| 539 | for x in "$@"; do |
523 | for x in "$@"; do |
| 540 | pushd "${S}"/${x} >/dev/null |
524 | pushd "${S}"/${x} >/dev/null || die |
| 541 | einfo "Running qmake in: ${x}" |
525 | einfo "Running qmake in: ${x}" |
| 542 | # avoid running over the maximum argument number, bug #299810 |
526 | # avoid running over the maximum argument number, bug #299810 |
| 543 | { |
527 | { |
| 544 | echo "${S}"/mkspecs/common/*.conf |
528 | echo "${S}"/mkspecs/common/*.conf |
| 545 | find "${S}" -name '*.pr[io]' |
529 | find "${S}" -name '*.pr[io]' |
| 546 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
530 | } | xargs sed -i \ |
|
|
531 | -e "s:\$\$\[QT_INSTALL_LIBS\]:${QTLIBDIR}:g" \ |
|
|
532 | -e "s:\$\$\[QT_INSTALL_PLUGINS\]:${QTPLUGINDIR}:g" \ |
|
|
533 | || die |
| 547 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
534 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 548 | popd >/dev/null |
535 | popd >/dev/null || die |
| 549 | done |
536 | done |
| 550 | } |
537 | } |
| 551 | |
538 | |
| 552 | |
539 | |
| 553 | # @FUNCTION: build_directories |
540 | # @FUNCTION: build_directories |
| 554 | # @USAGE: < directories > |
541 | # @USAGE: < directories > |
|
|
542 | # @INTERNAL |
| 555 | # @DESCRIPTION: |
543 | # @DESCRIPTION: |
| 556 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
544 | # Compiles the code in the given list of directories. |
| 557 | build_directories() { |
545 | build_directories() { |
| 558 | for x in "$@"; do |
546 | for x in "$@"; do |
| 559 | pushd "${S}"/${x} >/dev/null |
547 | pushd "${S}"/${x} >/dev/null || die |
| 560 | emake CC="$(tc-getCC)" \ |
548 | emake CC="$(tc-getCC)" \ |
| 561 | CXX="$(tc-getCXX)" \ |
549 | CXX="$(tc-getCXX)" \ |
| 562 | LINK="$(tc-getCXX)" || die "emake failed" |
550 | LINK="$(tc-getCXX)" || die "emake failed" |
| 563 | popd >/dev/null |
551 | popd >/dev/null || die |
| 564 | done |
552 | done |
| 565 | } |
553 | } |
| 566 | |
554 | |
| 567 | # @FUNCTION: install_directories |
555 | # @FUNCTION: install_directories |
| 568 | # @USAGE: < directories > |
556 | # @USAGE: < directories > |
|
|
557 | # @INTERNAL |
| 569 | # @DESCRIPTION: |
558 | # @DESCRIPTION: |
| 570 | # run emake install in the given directories, which are separated by spaces |
559 | # Runs emake install in the given directories, which are separated by spaces. |
| 571 | install_directories() { |
560 | install_directories() { |
| 572 | for x in "$@"; do |
561 | for x in "$@"; do |
| 573 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
562 | pushd "${S}"/${x} >/dev/null || die |
| 574 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
563 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| 575 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
564 | popd >/dev/null || die |
| 576 | done |
565 | done |
| 577 | } |
566 | } |
| 578 | |
567 | |
| 579 | # @ECLASS-VARIABLE: QCONFIG_ADD |
568 | # @ECLASS-VARIABLE: QCONFIG_ADD |
| 580 | # @DESCRIPTION: |
569 | # @DESCRIPTION: |
| … | |
… | |
| 590 | # @DESCRIPTION: |
579 | # @DESCRIPTION: |
| 591 | # List variables that should be defined at the top of QtCore/qconfig.h |
580 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 592 | : ${QCONFIG_DEFINE:=} |
581 | : ${QCONFIG_DEFINE:=} |
| 593 | |
582 | |
| 594 | # @FUNCTION: install_qconfigs |
583 | # @FUNCTION: install_qconfigs |
|
|
584 | # @INTERNAL |
| 595 | # @DESCRIPTION: |
585 | # @DESCRIPTION: |
| 596 | # Install gentoo-specific mkspecs configurations |
586 | # Install gentoo-specific mkspecs configurations. |
| 597 | install_qconfigs() { |
587 | install_qconfigs() { |
| 598 | local x |
588 | local x |
| 599 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
589 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 600 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
590 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 601 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
591 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 612 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
602 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 613 | fi |
603 | fi |
| 614 | } |
604 | } |
| 615 | |
605 | |
| 616 | # @FUNCTION: generate_qconfigs |
606 | # @FUNCTION: generate_qconfigs |
|
|
607 | # @INTERNAL |
| 617 | # @DESCRIPTION: |
608 | # @DESCRIPTION: |
| 618 | # Generates gentoo-specific configurations |
609 | # Generates gentoo-specific qconfig.{h,pri}. |
| 619 | generate_qconfigs() { |
610 | generate_qconfigs() { |
| 620 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
611 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 621 | local x qconfig_add qconfig_remove qconfig_new |
612 | local x qconfig_add qconfig_remove qconfig_new |
| 622 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
613 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 623 | [[ -f ${x} ]] || continue |
614 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 672 | fi |
663 | fi |
| 673 | } |
664 | } |
| 674 | |
665 | |
| 675 | # @FUNCTION: qt4-build_pkg_postrm |
666 | # @FUNCTION: qt4-build_pkg_postrm |
| 676 | # @DESCRIPTION: |
667 | # @DESCRIPTION: |
| 677 | # Generate configurations when the package is completely removed |
668 | # Regenerate configuration when the package is completely removed. |
| 678 | qt4-build_pkg_postrm() { |
669 | qt4-build_pkg_postrm() { |
| 679 | generate_qconfigs |
670 | generate_qconfigs |
| 680 | } |
671 | } |
| 681 | |
672 | |
| 682 | # @FUNCTION: qt4-build_pkg_postinst |
673 | # @FUNCTION: qt4-build_pkg_postinst |
| 683 | # @DESCRIPTION: |
674 | # @DESCRIPTION: |
| 684 | # Generate configuration, plus throws a message about possible |
675 | # Regenerate configuration, plus throw a message about possible |
| 685 | # breakages and proposed solutions. |
676 | # breakages and proposed solutions. |
| 686 | qt4-build_pkg_postinst() { |
677 | qt4-build_pkg_postinst() { |
| 687 | generate_qconfigs |
678 | generate_qconfigs |
| 688 | } |
679 | } |
| 689 | |
680 | |
| 690 | # @FUNCTION: skip_qmake_build_patch |
681 | # @FUNCTION: skip_qmake_build |
|
|
682 | # @INTERNAL |
| 691 | # @DESCRIPTION: |
683 | # @DESCRIPTION: |
| 692 | # Don't need to build qmake, as it's already installed from qt-core |
684 | # Patches configure to skip qmake compilation, as it's already installed by qt-core. |
| 693 | skip_qmake_build_patch() { |
685 | skip_qmake_build() { |
| 694 | # Don't need to build qmake, as it's already installed from qt-core |
|
|
| 695 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "sed failed" |
686 | sed -i -e "s:if true:if false:g" "${S}"/configure || die |
| 696 | } |
687 | } |
| 697 | |
688 | |
| 698 | # @FUNCTION: skip_project_generation_patch |
689 | # @FUNCTION: skip_project_generation |
|
|
690 | # @INTERNAL |
| 699 | # @DESCRIPTION: |
691 | # @DESCRIPTION: |
| 700 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
692 | # Exit the script early by throwing in an exit before all of the .pro files are scanned. |
| 701 | skip_project_generation_patch() { |
693 | skip_project_generation() { |
| 702 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
|
|
| 703 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
694 | sed -i -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" "${S}"/configure || die |
| 704 | -i "${S}"/configure || die "sed failed" |
|
|
| 705 | } |
695 | } |
| 706 | |
696 | |
| 707 | # @FUNCTION: symlink_binaries_to_buildtree |
697 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
698 | # @INTERNAL |
| 708 | # @DESCRIPTION: |
699 | # @DESCRIPTION: |
| 709 | # Symlink generated binaries to buildtree so they can be used during compilation |
700 | # Symlinks generated binaries to buildtree, so they can be used during compilation time. |
| 710 | # time |
|
|
| 711 | symlink_binaries_to_buildtree() { |
701 | symlink_binaries_to_buildtree() { |
| 712 | for bin in qmake moc uic rcc; do |
702 | for bin in qmake moc uic rcc; do |
| 713 | ln -s ${QTBINDIR}/${bin} "${S}"/bin/ || die "symlinking ${bin} to ${S}/bin failed" |
703 | ln -s "${QTBINDIR}"/${bin} "${S}"/bin/ || die "symlinking ${bin} to ${S}/bin failed" |
| 714 | done |
704 | done |
| 715 | } |
705 | } |
| 716 | |
706 | |
| 717 | # @FUNCTION: fix_library_files |
707 | # @FUNCTION: fix_library_files |
|
|
708 | # @INTERNAL |
| 718 | # @DESCRIPTION: |
709 | # @DESCRIPTION: |
| 719 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
710 | # Fixes the paths in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
| 720 | # moves the *.pc-files into the pkgconfig directory |
711 | # moves the *.pc files into the pkgconfig directory. |
| 721 | fix_library_files() { |
712 | fix_library_files() { |
|
|
713 | local libfile |
| 722 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
714 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 723 | if [[ -e ${libfile} ]]; then |
715 | if [[ -e ${libfile} ]]; then |
| 724 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "sed on ${libfile} failed" |
716 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "sed on ${libfile} failed" |
| 725 | fi |
717 | fi |
| 726 | done |
718 | done |
| 727 | |
719 | |
| 728 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
720 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations |
| 729 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
721 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 730 | if [[ -e ${libfile} ]]; then |
722 | if [[ -e ${libfile} ]]; then |
| 731 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "sed failed" |
723 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "sed on ${libfile} failed" |
| 732 | |
724 | |
| 733 | # Move .pc files into the pkgconfig directory |
725 | # Move .pc files into the pkgconfig directory |
| 734 | dodir ${QTPCDIR#${EPREFIX}} |
726 | dodir ${QTPCDIR#${EPREFIX}} |
| 735 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
727 | mv ${libfile} "${D}"/${QTPCDIR}/ || die "moving ${libfile} to ${D}/${QTPCDIR}/ failed" |
| 736 | || die "moving ${libfile} to ${D}/${QTPCDIR}/ failed" |
|
|
| 737 | fi |
728 | fi |
| 738 | done |
729 | done |
| 739 | |
730 | |
| 740 | # Don't install an empty directory |
731 | # Don't install an empty directory |
| 741 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
732 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| 742 | } |
733 | } |
| 743 | |
734 | |
| 744 | # @FUNCTION: qt_use |
735 | # @FUNCTION: qt_use |
| 745 | # @USAGE: < flag > [ feature ] [ enableval ] |
736 | # @USAGE: < flag > [ feature ] [ enableval ] |
| 746 | # @DESCRIPTION: |
737 | # @DESCRIPTION: |
| 747 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
738 | # This will echo "-${enableval}-${feature}" if <flag> is enabled, or |
| 748 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
739 | # "-no-${feature}" if it's disabled. If [feature] is not specified, <flag> |
| 749 | # will be used for that. If [enableval] is not specified, it omits the |
740 | # will be used for that. If [enableval] is not specified, it omits the |
| 750 | # assignment-part |
741 | # "-${enableval}" part. |
| 751 | qt_use() { |
742 | qt_use() { |
| 752 | local flag=$1 |
743 | use "$1" && echo "${3:+-$3}-${2:-$1}" || echo "-no-${2:-$1}" |
| 753 | local feature=$1 |
|
|
| 754 | local enableval= |
|
|
| 755 | |
|
|
| 756 | [[ -n $2 ]] && feature=$2 |
|
|
| 757 | [[ -n $3 ]] && enableval=-$3 |
|
|
| 758 | |
|
|
| 759 | if use ${flag}; then |
|
|
| 760 | echo "${enableval}-${feature}" |
|
|
| 761 | else |
|
|
| 762 | echo "-no-${feature}" |
|
|
| 763 | fi |
|
|
| 764 | } |
744 | } |
| 765 | |
745 | |
| 766 | # @FUNCTION: qt_mkspecs_dir |
746 | # @FUNCTION: qt_mkspecs_dir |
| 767 | # @RETURN: the specs-directory w/o path |
747 | # @RETURN: the specs-directory w/o path |
| 768 | # @DESCRIPTION: |
748 | # @DESCRIPTION: |
| 769 | # Allows us to define which mkspecs dir we want to use. |
749 | # Allows us to define which mkspecs dir we want to use. |
| 770 | qt_mkspecs_dir() { |
750 | qt_mkspecs_dir() { |
| 771 | # Allows us to define which mkspecs dir we want to use. |
|
|
| 772 | local spec |
751 | local spec= |
| 773 | |
|
|
| 774 | case ${CHOST} in |
752 | case ${CHOST} in |
| 775 | *-freebsd*|*-dragonfly*) |
753 | *-freebsd*|*-dragonfly*) |
| 776 | spec=freebsd ;; |
754 | spec=freebsd ;; |
| 777 | *-openbsd*) |
755 | *-openbsd*) |
| 778 | spec=openbsd ;; |
756 | spec=openbsd ;; |
| … | |
… | |
| 790 | *-solaris*) |
768 | *-solaris*) |
| 791 | spec=solaris ;; |
769 | spec=solaris ;; |
| 792 | *-linux-*|*-linux) |
770 | *-linux-*|*-linux) |
| 793 | spec=linux ;; |
771 | spec=linux ;; |
| 794 | *) |
772 | *) |
| 795 | die "Unknown CHOST, no platform chosen." |
773 | die "Unknown CHOST, no platform chosen" |
| 796 | esac |
774 | esac |
| 797 | |
775 | |
| 798 | CXX=$(tc-getCXX) |
776 | CXX=$(tc-getCXX) |
| 799 | if [[ ${CXX} == *g++* ]]; then |
777 | if [[ ${CXX} == *g++* ]]; then |
| 800 | spec+=-g++ |
778 | spec+=-g++ |
| 801 | elif [[ ${CXX} == *icpc* ]]; then |
779 | elif [[ ${CXX} == *icpc* ]]; then |
| 802 | spec+=-icc |
780 | spec+=-icc |
| 803 | else |
781 | else |
| 804 | die "Unknown compiler '${CXX}'." |
782 | die "Unknown compiler '${CXX}'" |
| 805 | fi |
783 | fi |
| 806 | if [[ -n ${LIBDIR/lib} ]]; then |
784 | if [[ -n ${LIBDIR/lib} ]]; then |
| 807 | spec+=-${LIBDIR/lib} |
785 | spec+=-${LIBDIR/lib} |
| 808 | fi |
786 | fi |
| 809 | |
787 | |
| … | |
… | |
| 819 | |
797 | |
| 820 | echo "${spec}" |
798 | echo "${spec}" |
| 821 | } |
799 | } |
| 822 | |
800 | |
| 823 | # @FUNCTION: qt_assistant_cleanup |
801 | # @FUNCTION: qt_assistant_cleanup |
| 824 | # @RETURN: nothing |
802 | # @INTERNAL |
| 825 | # @DESCRIPTION: |
803 | # @DESCRIPTION: |
| 826 | # Tries to clean up tools.pro for qt-assistant ebuilds |
804 | # Tries to clean up tools.pro for qt-assistant ebuilds. |
| 827 | # Meant to be called in src_prepare |
805 | # Meant to be called in src_prepare(). |
|
|
806 | # Since Qt 4.7.4 this function is a no-op. |
| 828 | qt_assistant_cleanup() { |
807 | qt_assistant_cleanup() { |
|
|
808 | # apply patching to qt-assistant ebuilds only |
|
|
809 | [[ ${PN} != "qt-assistant" ]] && return |
|
|
810 | |
|
|
811 | # no longer needed for 4.7.4 and later |
|
|
812 | version_is_at_least "4.7.4" && return |
|
|
813 | |
| 829 | # different versions (and branches...) may need different handling, |
814 | # different versions (and branches...) may need different handling, |
| 830 | # add a case if you need special handling |
815 | # add a case if you need special handling |
| 831 | case "${MY_PV_EXTRA}" in |
816 | case "${MY_PV_EXTRA}" in |
| 832 | *kde-qt*) |
817 | *kde-qt*) |
| 833 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
818 | sed -e "/^[ \t]*porting/,/^[ \t]*win32.*activeqt$/d" \ |
| … | |
… | |
| 842 | ;; |
827 | ;; |
| 843 | esac |
828 | esac |
| 844 | } |
829 | } |
| 845 | |
830 | |
| 846 | # @FUNCTION: qt_nolibx11 |
831 | # @FUNCTION: qt_nolibx11 |
| 847 | # @RETURN: nothing |
832 | # @INTERNAL |
| 848 | # @DESCRIPTION: |
833 | # @DESCRIPTION: |
| 849 | # Ignore X11 tests for packages that don't need X libraries installed |
834 | # Ignore X11 tests for packages that don't need X libraries installed. |
| 850 | qt_nolibx11() { |
835 | qt_nolibx11() { |
| 851 | einfo "Removing X11 check to allow X-less compilation" |
|
|
| 852 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
836 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
| 853 | die "x11 check sed failed" |
837 | die "x11 check sed failed" |
| 854 | } |
838 | } |
| 855 | |
839 | |
| 856 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |
840 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |