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