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