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