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