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