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