| 1 | # Copyright 1999-2011 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.106 2011/12/21 22:47:35 pesa Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.110 2011/12/26 11:59:19 pesa Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-build.eclass |
5 | # @ECLASS: qt4-build.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Qt herd <qt@gentoo.org> |
7 | # Qt herd <qt@gentoo.org> |
| 8 | # @BLURB: Eclass for Qt4 split ebuilds. |
8 | # @BLURB: Eclass for Qt4 split ebuilds. |
| … | |
… | |
| 66 | |
66 | |
| 67 | S=${WORKDIR}/${MY_P} |
67 | S=${WORKDIR}/${MY_P} |
| 68 | |
68 | |
| 69 | # @FUNCTION: qt4-build_pkg_setup |
69 | # @FUNCTION: qt4-build_pkg_setup |
| 70 | # @DESCRIPTION: |
70 | # @DESCRIPTION: |
| 71 | # Sets up S, MY_P, PATH, and LD_LIBRARY_PATH |
71 | # Sets up PATH and LD_LIBRARY_PATH. |
| 72 | qt4-build_pkg_setup() { |
72 | qt4-build_pkg_setup() { |
| 73 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
73 | [[ ${EAPI} == 2 ]] && use !prefix && EPREFIX= |
| 74 | |
74 | |
| 75 | # Protect users by not allowing downgrades between releases |
75 | # Protect users by not allowing downgrades between releases |
| 76 | # Downgrading revisions within the same release should be allowed |
76 | # Downgrading revisions within the same release should be allowed |
| … | |
… | |
| 123 | fi |
123 | fi |
| 124 | } |
124 | } |
| 125 | |
125 | |
| 126 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
126 | # @ECLASS-VARIABLE: QT4_TARGET_DIRECTORIES |
| 127 | # @DESCRIPTION: |
127 | # @DESCRIPTION: |
| 128 | # Arguments for build_target_directories. Takes the directories, in which the |
128 | # Arguments for build_target_directories. Takes the directories in which the |
| 129 | # code should be compiled. This is a space-separated list |
129 | # code should be compiled. This is a space-separated list. |
| 130 | |
130 | |
| 131 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
131 | # @ECLASS-VARIABLE: QT4_EXTRACT_DIRECTORIES |
| 132 | # @DESCRIPTION: |
132 | # @DESCRIPTION: |
| 133 | # Space separated list including the directories that will be extracted from Qt |
133 | # Space-separated list including the directories that will be extracted from |
| 134 | # tarball |
134 | # Qt tarball. |
| 135 | |
135 | |
| 136 | # @FUNCTION: qt4-build_src_unpack |
136 | # @FUNCTION: qt4-build_src_unpack |
| 137 | # @DESCRIPTION: |
137 | # @DESCRIPTION: |
| 138 | # Unpacks the sources |
138 | # Unpacks the sources. |
| 139 | qt4-build_src_unpack() { |
139 | qt4-build_src_unpack() { |
| 140 | setqtenv |
140 | setqtenv |
| 141 | local unpack_p="${MY_P}" |
|
|
| 142 | case "${PV}" in |
|
|
| 143 | 4.8.0_*) |
|
|
| 144 | unpack_p="qt-everywhere-opensource-src-${PV/_*}" |
|
|
| 145 | ;; |
|
|
| 146 | esac |
|
|
| 147 | local target targets= |
141 | local target targets= |
| 148 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
142 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 149 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
143 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 150 | ${QT4_EXTRACT_DIRECTORIES}; do |
144 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 151 | targets+=" ${unpack_p}/${target}" |
145 | targets+=" ${MY_P}/${target}" |
| 152 | done |
146 | done |
| 153 | |
147 | |
| 154 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
148 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 155 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
149 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
| 156 | case "${PV}" in |
|
|
| 157 | 4.8.0_*) |
|
|
| 158 | mv ${WORKDIR}/qt-everywhere-opensource-src-${PV/_*} \ |
|
|
| 159 | ${WORKDIR}/qt-everywhere-opensource-src-${MY_PV} |
|
|
| 160 | ;; |
|
|
| 161 | esac |
|
|
| 162 | } |
150 | } |
| 163 | |
151 | |
| 164 | # @ECLASS-VARIABLE: PATCHES |
152 | # @ECLASS-VARIABLE: PATCHES |
|
|
153 | # @DEFAULT_UNSET |
| 165 | # @DESCRIPTION: |
154 | # @DESCRIPTION: |
| 166 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
155 | # PATCHES array variable containing all various patches to be applied. |
| 167 | # to specify the full path. This variable is necessary for src_prepare phase. |
156 | # This variable is expected to be defined in global scope of ebuild. |
| 168 | # example: |
157 | # Make sure to specify the full path. This variable is utilised in |
| 169 | # PATCHES="${FILESDIR}"/mypatch.patch |
158 | # src_unpack/src_prepare phase, based on EAPI. |
| 170 | # ${FILESDIR}"/mypatch2.patch" |
|
|
| 171 | # |
159 | # |
|
|
160 | # @CODE |
|
|
161 | # PATCHES=( "${FILESDIR}/mypatch.patch" |
|
|
162 | # "${FILESDIR}/patches_folder/" ) |
|
|
163 | # @CODE |
| 172 | |
164 | |
| 173 | # @FUNCTION: qt4-build_src_prepare |
165 | # @FUNCTION: qt4-build_src_prepare |
| 174 | # @DESCRIPTION: |
166 | # @DESCRIPTION: |
| 175 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
167 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
| 176 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
168 | # the build system in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified in /etc/make.conf. |
| 177 | qt4-build_src_prepare() { |
169 | qt4-build_src_prepare() { |
| 178 | setqtenv |
170 | setqtenv |
| 179 | cd "${S}" |
171 | cd "${S}" |
| 180 | |
|
|
| 181 | # fix qt 4.7 regression that skips -fvisibility=hidden |
|
|
| 182 | if version_is_at_least "4.7.0_beta1"; then |
|
|
| 183 | sed -e "s/^gcc|g++)/*gcc|*g++)/" \ |
|
|
| 184 | -i config.tests/unix/fvisibility.test || |
|
|
| 185 | die "visibility fixing sed failed" |
|
|
| 186 | fi |
|
|
| 187 | |
172 | |
| 188 | if version_is_at_least "4.7"; then |
173 | if version_is_at_least "4.7"; then |
| 189 | # fix libX11 dependency on non X packages |
174 | # fix libX11 dependency on non X packages |
| 190 | local nolibx11_pkgs="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
175 | local nolibx11_pkgs="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
| 191 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
176 | has ${PN} ${nolibx11_pkgs} && qt_nolibx11 |
| … | |
… | |
| 197 | # provide a proper macx-g++-64 |
182 | # provide a proper macx-g++-64 |
| 198 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
183 | use x64-macos && ln -s macx-g++ mkspecs/$(qt_mkspecs_dir) |
| 199 | |
184 | |
| 200 | sed -e '/^CONFIG/s:app_bundle::' \ |
185 | sed -e '/^CONFIG/s:app_bundle::' \ |
| 201 | -e '/^CONFIG/s:plugin_no_soname:plugin_with_soname absolute_library_soname:' \ |
186 | -e '/^CONFIG/s:plugin_no_soname:plugin_with_soname absolute_library_soname:' \ |
| 202 | -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed failed" |
187 | -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 203 | fi |
188 | fi |
| 204 | |
189 | |
| 205 | if [[ ${PN} != qt-core ]]; then |
190 | if [[ ${PN} != qt-core ]]; then |
| 206 | skip_qmake_build |
191 | skip_qmake_build |
| 207 | skip_project_generation |
192 | skip_project_generation |
| … | |
… | |
| 232 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
217 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
| 233 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
218 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 234 | append-cxxflags -fno-stack-protector |
219 | append-cxxflags -fno-stack-protector |
| 235 | # Bug 253127 |
220 | # Bug 253127 |
| 236 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
221 | sed -e "/^QMAKE_CFLAGS\t/ s:$: -fno-stack-protector-all:" \ |
| 237 | -i "${S}"/mkspecs/common/g++.conf || die "sed ${S}/mkspecs/common/g++.conf failed" |
222 | -i mkspecs/common/g++.conf || die |
| 238 | fi |
223 | fi |
| 239 | |
224 | |
| 240 | # Bug 261632 |
225 | # Bug 261632 |
| 241 | if use ppc64; then |
226 | if use ppc64; then |
| 242 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
227 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 243 | append-flags -mminimal-toc |
228 | append-flags -mminimal-toc |
| 244 | fi |
229 | fi |
| 245 | |
230 | |
| 246 | # Bug 282984 && Bug 295530 |
231 | # Respect CC, CXX, {C,CXX,LD}FLAGS in .qmake.cache |
| 247 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=\"$(tc-getCC)\"\nCXX=\"$(tc-getCXX)\"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
232 | sed -e "/^SYSTEM_VARIABLES=/i \ |
| 248 | -i configure || die "sed qmake compilers failed" |
233 | CC='$(tc-getCC)'\n\ |
|
|
234 | CXX='$(tc-getCXX)'\n\ |
|
|
235 | CFLAGS='${CFLAGS}'\n\ |
|
|
236 | CXXFLAGS='${CXXFLAGS}'\n\ |
|
|
237 | LDFLAGS='${LDFLAGS}'\n" \ |
|
|
238 | -i configure || die "sed SYSTEM_VARIABLES failed" |
| 249 | |
239 | |
| 250 | # Bug 321335 |
240 | # Bug 321335 |
| 251 | if version_is_at_least 4.6; then |
|
|
| 252 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
241 | find config.tests/unix -name '*.test' -type f -exec grep -lZ \$MAKE '{}' \; | xargs -0 \ |
| 253 | xargs -0 \ |
|
|
| 254 | sed -e "s:\(\$MAKE\):\1 CC=\"$(tc-getCC)\" CXX=\"$(tc-getCXX)\" LD=\"$(tc-getCXX)\" LINK=\"$(tc-getCXX)\":g" \ |
242 | sed -e "s:\(\$MAKE\):\1 CC='$(tc-getCC)' CXX='$(tc-getCXX)' LINK='$(tc-getCXX)':g" \ |
| 255 | -i || die "sed test compilers failed" |
243 | -i || die "sed test compilers failed" |
| 256 | fi |
|
|
| 257 | |
244 | |
| 258 | # Bug 172219 |
245 | # Bug 172219 |
| 259 | sed -e "s:X11R6/::" \ |
246 | sed -e "s:X11R6/::" -i mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 260 | -i "${S}"/mkspecs/$(qt_mkspecs_dir)/qmake.conf || die "sed ${S}/mkspecs/$(qt_mkspecs_dir)/qmake.conf failed" |
|
|
| 261 | |
247 | |
| 262 | if [[ ${CHOST} == *-darwin* ]]; then |
248 | if [[ ${CHOST} == *-darwin* ]]; then |
| 263 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
249 | # Set FLAGS *and* remove -arch, since our gcc-apple is multilib |
| 264 | # crippled (by design) :/ |
250 | # crippled (by design) :/ |
| 265 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
251 | sed -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ |
| … | |
… | |
| 279 | -e "s:-arch \$i::" \ |
265 | -e "s:-arch \$i::" \ |
| 280 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
266 | -e "/if \[ ! -z \"\$NATIVE_64_ARCH\" \]; then/,/fi/ d" \ |
| 281 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
267 | -e "s:CFG_MAC_XARCH=yes:CFG_MAC_XARCH=no:g" \ |
| 282 | -e "s:-Xarch_x86_64::g" \ |
268 | -e "s:-Xarch_x86_64::g" \ |
| 283 | -e "s:-Xarch_ppc64::g" \ |
269 | -e "s:-Xarch_ppc64::g" \ |
| 284 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
270 | -i configure mkspecs/common/mac-g++.conf || die "sed -arch/-Xarch failed" |
| 285 | |
271 | |
| 286 | # On Snow Leopard don't fall back to 10.5 deployment target. |
272 | # On Snow Leopard don't fall back to 10.5 deployment target. |
| 287 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
273 | if [[ ${CHOST} == *-apple-darwin10 ]] ; then |
| 288 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
274 | sed -e "s:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET.*:QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.6:g" \ |
| 289 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
275 | -e "s:-mmacosx-version-min=10.[0-9]:-mmacosx-version-min=10.6:g" \ |
| 290 | -i configure mkspecs/common/mac-g++.conf || die "sed configure failed" |
276 | -i configure mkspecs/common/mac-g++.conf || die "sed deployment target failed" |
| 291 | fi |
277 | fi |
| 292 | fi |
278 | fi |
| 293 | |
279 | |
| 294 | # this one is needed for all systems with a separate -liconv, apart from |
280 | # this one is needed for all systems with a separate -liconv, apart from |
| 295 | # Darwin, for which the sources already cater for -liconv |
281 | # Darwin, for which the sources already cater for -liconv |
| … | |
… | |
| 392 | done |
378 | done |
| 393 | } |
379 | } |
| 394 | |
380 | |
| 395 | # @FUNCTION: fix_includes |
381 | # @FUNCTION: fix_includes |
| 396 | # @DESCRIPTION: |
382 | # @DESCRIPTION: |
| 397 | # For MacOSX we need to add some symlinks when frameworks are |
383 | # For MacOS X we need to add some symlinks when frameworks are |
| 398 | # being used, to avoid complications with some more or less stupid packages. |
384 | # being used, to avoid complications with some more or less stupid packages. |
| 399 | fix_includes() { |
385 | fix_includes() { |
| 400 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
386 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
| 401 | # Some packages tend to include <Qt/...> |
387 | # Some packages tend to include <Qt/...> |
| 402 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
388 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
| … | |
… | |
| 433 | # remove .la files since we are building only shared Qt libraries |
419 | # remove .la files since we are building only shared Qt libraries |
| 434 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
420 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
| 435 | } |
421 | } |
| 436 | |
422 | |
| 437 | # @FUNCTION: setqtenv |
423 | # @FUNCTION: setqtenv |
|
|
424 | # @INTERNAL |
| 438 | setqtenv() { |
425 | setqtenv() { |
| 439 | # Set up installation directories |
426 | # Set up installation directories |
| 440 | QTBASEDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
| 441 | QTPREFIXDIR=${EPREFIX}/usr |
427 | QTPREFIXDIR=${EPREFIX}/usr |
| 442 | QTBINDIR=${EPREFIX}/usr/bin |
428 | QTBINDIR=${EPREFIX}/usr/bin |
| 443 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
429 | QTLIBDIR=${EPREFIX}/usr/$(get_libdir)/qt4 |
| 444 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
|
|
| 445 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
430 | QTPCDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig |
| 446 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
|
|
| 447 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
431 | QTDOCDIR=${EPREFIX}/usr/share/doc/qt-${PV} |
| 448 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
432 | QTHEADERDIR=${EPREFIX}/usr/include/qt4 |
| 449 | QTPLUGINDIR=${QTLIBDIR}/plugins |
433 | QTPLUGINDIR=${QTLIBDIR}/plugins |
| 450 | QTIMPORTDIR=${QTLIBDIR}/imports |
434 | QTIMPORTDIR=${QTLIBDIR}/imports |
|
|
435 | QTDATADIR=${EPREFIX}/usr/share/qt4 |
|
|
436 | QTTRANSDIR=${QTDATADIR}/translations |
| 451 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
437 | QTSYSCONFDIR=${EPREFIX}/etc/qt4 |
| 452 | QTTRANSDIR=${QTDATADIR}/translations |
|
|
| 453 | QTEXAMPLESDIR=${QTDATADIR}/examples |
438 | QTEXAMPLESDIR=${QTDATADIR}/examples |
| 454 | QTDEMOSDIR=${QTDATADIR}/demos |
439 | QTDEMOSDIR=${QTDATADIR}/demos |
|
|
440 | QMAKE_LIBDIR_QT=${QTLIBDIR} |
| 455 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
441 | QT_INSTALL_PREFIX=${EPREFIX}/usr/$(get_libdir)/qt4 |
|
|
442 | |
| 456 | PLATFORM=$(qt_mkspecs_dir) |
443 | PLATFORM=$(qt_mkspecs_dir) |
| 457 | |
444 | |
| 458 | unset QMAKESPEC |
445 | unset QMAKESPEC |
| 459 | } |
446 | } |
| 460 | |
447 | |
| 461 | # @FUNCTION: standard_configure_options |
448 | # @FUNCTION: standard_configure_options |
|
|
449 | # @INTERNAL |
| 462 | # @DESCRIPTION: |
450 | # @DESCRIPTION: |
| 463 | # Sets up some standard configure options, like libdir (if necessary), whether |
451 | # Sets up some standard configure options, like libdir (if necessary), whether |
| 464 | # debug info is wanted or not. |
452 | # debug info is wanted or not. |
| 465 | standard_configure_options() { |
453 | standard_configure_options() { |
| 466 | local myconf= |
454 | local myconf="-prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
|
|
455 | -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} -plugindir ${QTPLUGINDIR} |
|
|
456 | -importdir ${QTIMPORTDIR} -datadir ${QTDATADIR} -translationdir ${QTTRANSDIR} |
|
|
457 | -sysconfdir ${QTSYSCONFDIR} -examplesdir ${QTEXAMPLESDIR} -demosdir ${QTDEMOSDIR} |
|
|
458 | -opensource -confirm-license -shared -fast -largefile -stl -verbose |
|
|
459 | -platform $(qt_mkspecs_dir) -nomake examples -nomake demos" |
| 467 | |
460 | |
| 468 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
461 | [[ $(get_libdir) != lib ]] && myconf+=" -L${EPREFIX}/usr/$(get_libdir)" |
| 469 | |
462 | |
| 470 | # Disable visibility explicitly if gcc version isn't 4 |
463 | # debug/release |
| 471 | if [[ $(gcc-major-version) -lt 4 ]]; then |
|
|
| 472 | myconf+=" -no-reduce-exports" |
|
|
| 473 | fi |
|
|
| 474 | |
|
|
| 475 | # precompiled headers doesn't work on hardened, where the flag is masked. |
|
|
| 476 | myconf+=" $(qt_use pch)" |
|
|
| 477 | |
|
|
| 478 | if use debug; then |
464 | if use debug; then |
| 479 | myconf+=" -debug" |
465 | myconf+=" -debug" |
| 480 | else |
466 | else |
| 481 | myconf+=" -release" |
467 | myconf+=" -release" |
| 482 | fi |
468 | fi |
| 483 | myconf+=" -no-separate-debug-info" |
469 | myconf+=" -no-separate-debug-info" |
|
|
470 | |
|
|
471 | # exceptions USE flag |
|
|
472 | local exceptions="-exceptions" |
|
|
473 | in_iuse exceptions && exceptions="$(qt_use exceptions)" |
|
|
474 | myconf+=" ${exceptions}" |
|
|
475 | |
|
|
476 | # disable RPATH on Qt >= 4.8 (bug 380415) |
|
|
477 | version_is_at_least 4.8 && myconf+=" -no-rpath" |
|
|
478 | |
|
|
479 | # precompiled headers don't work on hardened, where the flag is masked |
|
|
480 | myconf+=" $(qt_use pch)" |
|
|
481 | |
|
|
482 | # -reduce-relocations |
|
|
483 | # This flag seems to introduce major breakage to applications, |
|
|
484 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
485 | # construct a QApplication before a QPaintDevice" on Solaris. |
|
|
486 | # -- Daniel Vergien |
|
|
487 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
| 484 | |
488 | |
| 485 | use aqua && myconf+=" -no-framework" |
489 | use aqua && myconf+=" -no-framework" |
| 486 | |
490 | |
| 487 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
491 | # ARCH is set on Gentoo. Qt now falls back to generic on an unsupported |
| 488 | # $(tc-arch). Therefore we convert it to supported values. |
492 | # $(tc-arch). Therefore we convert it to supported values. |
| … | |
… | |
| 496 | alpha|arm|ia64|mips|s390) myconf+=" -arch $(tc-arch)" ;; |
500 | alpha|arm|ia64|mips|s390) myconf+=" -arch $(tc-arch)" ;; |
| 497 | hppa|sh) myconf+=" -arch generic" ;; |
501 | hppa|sh) myconf+=" -arch generic" ;; |
| 498 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
502 | *) die "$(tc-arch) is unsupported by this eclass. Please file a bug." ;; |
| 499 | esac |
503 | esac |
| 500 | |
504 | |
| 501 | # exceptions USE flag |
|
|
| 502 | local exceptions="-exceptions" |
|
|
| 503 | in_iuse exceptions && exceptions="$(qt_use exceptions)" |
|
|
| 504 | |
|
|
| 505 | # bug 380415 |
|
|
| 506 | version_is_at_least 4.8 && myconf+=" -no-rpath" |
|
|
| 507 | |
|
|
| 508 | # note about -reduce-relocations: |
|
|
| 509 | # That flag seems to introduce major breakage to applications, |
|
|
| 510 | # mostly to be seen as a core dump with the message "QPixmap: Must |
|
|
| 511 | # construct a QApplication before a QPaintDevice" on Solaris |
|
|
| 512 | # -- Daniel Vergien |
|
|
| 513 | [[ ${CHOST} != *-solaris* ]] && myconf+=" -reduce-relocations" |
|
|
| 514 | |
|
|
| 515 | myconf+=" -platform $(qt_mkspecs_dir) -stl -verbose -largefile -confirm-license |
|
|
| 516 | -prefix ${QTPREFIXDIR} -bindir ${QTBINDIR} -libdir ${QTLIBDIR} |
|
|
| 517 | -datadir ${QTDATADIR} -docdir ${QTDOCDIR} -headerdir ${QTHEADERDIR} |
|
|
| 518 | -plugindir ${QTPLUGINDIR} -sysconfdir ${QTSYSCONFDIR} |
|
|
| 519 | -translationdir ${QTTRANSDIR} -examplesdir ${QTEXAMPLESDIR} |
|
|
| 520 | -demosdir ${QTDEMOSDIR} -importdir ${QTIMPORTDIR} -silent -fast -opensource |
|
|
| 521 | ${exceptions} |
|
|
| 522 | -nomake examples -nomake demos" |
|
|
| 523 | |
|
|
| 524 | echo "${myconf}" |
505 | echo "${myconf}" |
| 525 | } |
506 | } |
| 526 | |
507 | |
| 527 | # @FUNCTION: prepare_directories |
508 | # @FUNCTION: prepare_directories |
| 528 | # @USAGE: < directories > |
509 | # @USAGE: < directories > |
|
|
510 | # @INTERNAL |
| 529 | # @DESCRIPTION: |
511 | # @DESCRIPTION: |
| 530 | # Generates makefiles for the directories set in $QT4_TARGET_DIRECTORIES |
512 | # Generates Makefiles for the given list of directories. |
| 531 | prepare_directories() { |
513 | prepare_directories() { |
| 532 | for x in "$@"; do |
514 | for x in "$@"; do |
| 533 | pushd "${S}"/${x} >/dev/null |
515 | pushd "${S}"/${x} >/dev/null || die |
| 534 | einfo "Running qmake in: ${x}" |
516 | einfo "Running qmake in: ${x}" |
| 535 | # avoid running over the maximum argument number, bug #299810 |
517 | # avoid running over the maximum argument number, bug #299810 |
| 536 | { |
518 | { |
| 537 | echo "${S}"/mkspecs/common/*.conf |
519 | echo "${S}"/mkspecs/common/*.conf |
| 538 | find "${S}" -name '*.pr[io]' |
520 | find "${S}" -name '*.pr[io]' |
| 539 | } | xargs sed -i \ |
521 | } | xargs sed -i \ |
| 540 | -e "s:\$\$\[QT_INSTALL_LIBS\]:${QTLIBDIR}:g" \ |
522 | -e "s:\$\$\[QT_INSTALL_LIBS\]:${QTLIBDIR}:g" \ |
| 541 | -e "s:\$\$\[QT_INSTALL_PLUGINS\]:${QTPLUGINDIR}:g" \ |
523 | -e "s:\$\$\[QT_INSTALL_PLUGINS\]:${QTPLUGINDIR}:g" \ |
| 542 | || die |
524 | || die |
| 543 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
525 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
| 544 | popd >/dev/null |
526 | popd >/dev/null || die |
| 545 | done |
527 | done |
| 546 | } |
528 | } |
| 547 | |
529 | |
| 548 | |
530 | |
| 549 | # @FUNCTION: build_directories |
531 | # @FUNCTION: build_directories |
| 550 | # @USAGE: < directories > |
532 | # @USAGE: < directories > |
|
|
533 | # @INTERNAL |
| 551 | # @DESCRIPTION: |
534 | # @DESCRIPTION: |
| 552 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
535 | # Compiles the code in the given list of directories. |
| 553 | build_directories() { |
536 | build_directories() { |
| 554 | for x in "$@"; do |
537 | for x in "$@"; do |
| 555 | pushd "${S}"/${x} >/dev/null |
538 | pushd "${S}"/${x} >/dev/null || die |
| 556 | emake CC="$(tc-getCC)" \ |
539 | emake CC="$(tc-getCC)" \ |
| 557 | CXX="$(tc-getCXX)" \ |
540 | CXX="$(tc-getCXX)" \ |
| 558 | LINK="$(tc-getCXX)" || die "emake failed" |
541 | LINK="$(tc-getCXX)" || die "emake failed" |
| 559 | popd >/dev/null |
542 | popd >/dev/null || die |
| 560 | done |
543 | done |
| 561 | } |
544 | } |
| 562 | |
545 | |
| 563 | # @FUNCTION: install_directories |
546 | # @FUNCTION: install_directories |
| 564 | # @USAGE: < directories > |
547 | # @USAGE: < directories > |
|
|
548 | # @INTERNAL |
| 565 | # @DESCRIPTION: |
549 | # @DESCRIPTION: |
| 566 | # run emake install in the given directories, which are separated by spaces |
550 | # Runs emake install in the given directories, which are separated by spaces. |
| 567 | install_directories() { |
551 | install_directories() { |
| 568 | for x in "$@"; do |
552 | for x in "$@"; do |
| 569 | pushd "${S}"/${x} >/dev/null || die "Can't pushd ${S}/${x}" |
553 | pushd "${S}"/${x} >/dev/null || die |
| 570 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
554 | emake INSTALL_ROOT="${D}" install || die "emake install failed" |
| 571 | popd >/dev/null || die "Can't popd from ${S}/${x}" |
555 | popd >/dev/null || die |
| 572 | done |
556 | done |
| 573 | } |
557 | } |
| 574 | |
558 | |
| 575 | # @ECLASS-VARIABLE: QCONFIG_ADD |
559 | # @ECLASS-VARIABLE: QCONFIG_ADD |
| 576 | # @DESCRIPTION: |
560 | # @DESCRIPTION: |
| … | |
… | |
| 586 | # @DESCRIPTION: |
570 | # @DESCRIPTION: |
| 587 | # List variables that should be defined at the top of QtCore/qconfig.h |
571 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 588 | : ${QCONFIG_DEFINE:=} |
572 | : ${QCONFIG_DEFINE:=} |
| 589 | |
573 | |
| 590 | # @FUNCTION: install_qconfigs |
574 | # @FUNCTION: install_qconfigs |
|
|
575 | # @INTERNAL |
| 591 | # @DESCRIPTION: |
576 | # @DESCRIPTION: |
| 592 | # Install gentoo-specific mkspecs configurations |
577 | # Install gentoo-specific mkspecs configurations. |
| 593 | install_qconfigs() { |
578 | install_qconfigs() { |
| 594 | local x |
579 | local x |
| 595 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
580 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 596 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
581 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 597 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
582 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 608 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
593 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 609 | fi |
594 | fi |
| 610 | } |
595 | } |
| 611 | |
596 | |
| 612 | # @FUNCTION: generate_qconfigs |
597 | # @FUNCTION: generate_qconfigs |
|
|
598 | # @INTERNAL |
| 613 | # @DESCRIPTION: |
599 | # @DESCRIPTION: |
| 614 | # Generates gentoo-specific configurations |
600 | # Generates gentoo-specific qconfig.{h,pri}. |
| 615 | generate_qconfigs() { |
601 | generate_qconfigs() { |
| 616 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
602 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 617 | local x qconfig_add qconfig_remove qconfig_new |
603 | local x qconfig_add qconfig_remove qconfig_new |
| 618 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
604 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 619 | [[ -f ${x} ]] || continue |
605 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 668 | fi |
654 | fi |
| 669 | } |
655 | } |
| 670 | |
656 | |
| 671 | # @FUNCTION: qt4-build_pkg_postrm |
657 | # @FUNCTION: qt4-build_pkg_postrm |
| 672 | # @DESCRIPTION: |
658 | # @DESCRIPTION: |
| 673 | # Generate configurations when the package is completely removed |
659 | # Regenerate configuration when the package is completely removed. |
| 674 | qt4-build_pkg_postrm() { |
660 | qt4-build_pkg_postrm() { |
| 675 | generate_qconfigs |
661 | generate_qconfigs |
| 676 | } |
662 | } |
| 677 | |
663 | |
| 678 | # @FUNCTION: qt4-build_pkg_postinst |
664 | # @FUNCTION: qt4-build_pkg_postinst |
| 679 | # @DESCRIPTION: |
665 | # @DESCRIPTION: |
| 680 | # Generate configuration, plus throws a message about possible |
666 | # Regenerate configuration, plus throw a message about possible |
| 681 | # breakages and proposed solutions. |
667 | # breakages and proposed solutions. |
| 682 | qt4-build_pkg_postinst() { |
668 | qt4-build_pkg_postinst() { |
| 683 | generate_qconfigs |
669 | generate_qconfigs |
| 684 | } |
670 | } |
| 685 | |
671 | |
| 686 | # @FUNCTION: skip_qmake_build |
672 | # @FUNCTION: skip_qmake_build |
|
|
673 | # @INTERNAL |
| 687 | # @DESCRIPTION: |
674 | # @DESCRIPTION: |
| 688 | # Don't need to build qmake, as it's already installed from qt-core |
675 | # Patches configure to skip qmake compilation, as it's already installed by qt-core. |
| 689 | skip_qmake_build() { |
676 | skip_qmake_build() { |
| 690 | # Don't need to build qmake, as it's already installed from qt-core |
|
|
| 691 | sed -i -e "s:if true:if false:g" "${S}"/configure || die "sed failed" |
677 | sed -i -e "s:if true:if false:g" "${S}"/configure || die |
| 692 | } |
678 | } |
| 693 | |
679 | |
| 694 | # @FUNCTION: skip_project_generation |
680 | # @FUNCTION: skip_project_generation |
|
|
681 | # @INTERNAL |
| 695 | # @DESCRIPTION: |
682 | # @DESCRIPTION: |
| 696 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
683 | # Exit the script early by throwing in an exit before all of the .pro files are scanned. |
| 697 | skip_project_generation() { |
684 | skip_project_generation() { |
| 698 | # Exit the script early by throwing in an exit before all of the .pro files are scanned |
|
|
| 699 | sed -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" \ |
685 | sed -i -e "s:echo \"Finding:exit 0\n\necho \"Finding:g" "${S}"/configure || die |
| 700 | -i "${S}"/configure || die "sed failed" |
|
|
| 701 | } |
686 | } |
| 702 | |
687 | |
| 703 | # @FUNCTION: symlink_binaries_to_buildtree |
688 | # @FUNCTION: symlink_binaries_to_buildtree |
|
|
689 | # @INTERNAL |
| 704 | # @DESCRIPTION: |
690 | # @DESCRIPTION: |
| 705 | # Symlink generated binaries to buildtree so they can be used during compilation |
691 | # Symlinks generated binaries to buildtree, so they can be used during compilation time. |
| 706 | # time |
|
|
| 707 | symlink_binaries_to_buildtree() { |
692 | symlink_binaries_to_buildtree() { |
| 708 | for bin in qmake moc uic rcc; do |
693 | for bin in qmake moc uic rcc; do |
| 709 | ln -s "${QTBINDIR}"/${bin} "${S}"/bin/ || die "symlinking ${bin} to ${S}/bin failed" |
694 | ln -s "${QTBINDIR}"/${bin} "${S}"/bin/ || die "symlinking ${bin} to ${S}/bin failed" |
| 710 | done |
695 | done |
| 711 | } |
696 | } |
| 712 | |
697 | |
| 713 | # @FUNCTION: fix_library_files |
698 | # @FUNCTION: fix_library_files |
|
|
699 | # @INTERNAL |
| 714 | # @DESCRIPTION: |
700 | # @DESCRIPTION: |
| 715 | # Fixes the pathes in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
701 | # Fixes the paths in *.la, *.prl, *.pc, as they are wrong due to sandbox and |
| 716 | # moves the *.pc-files into the pkgconfig directory |
702 | # moves the *.pc files into the pkgconfig directory. |
| 717 | fix_library_files() { |
703 | fix_library_files() { |
|
|
704 | local libfile |
| 718 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
705 | for libfile in "${D}"/${QTLIBDIR}/{*.la,*.prl,pkgconfig/*.pc}; do |
| 719 | if [[ -e ${libfile} ]]; then |
706 | if [[ -e ${libfile} ]]; then |
| 720 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "sed on ${libfile} failed" |
707 | sed -i -e "s:${S}/lib:${QTLIBDIR}:g" ${libfile} || die "sed on ${libfile} failed" |
| 721 | fi |
708 | fi |
| 722 | done |
709 | done |
| 723 | |
710 | |
| 724 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations. Fix: |
711 | # pkgconfig files refer to WORKDIR/bin as the moc and uic locations |
| 725 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
712 | for libfile in "${D}"/${QTLIBDIR}/pkgconfig/*.pc; do |
| 726 | if [[ -e ${libfile} ]]; then |
713 | if [[ -e ${libfile} ]]; then |
| 727 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "sed failed" |
714 | sed -i -e "s:${S}/bin:${QTBINDIR}:g" ${libfile} || die "sed on ${libfile} failed" |
| 728 | |
715 | |
| 729 | # Move .pc files into the pkgconfig directory |
716 | # Move .pc files into the pkgconfig directory |
| 730 | dodir ${QTPCDIR#${EPREFIX}} |
717 | dodir ${QTPCDIR#${EPREFIX}} |
| 731 | mv ${libfile} "${D}"/${QTPCDIR}/ \ |
718 | mv ${libfile} "${D}"/${QTPCDIR}/ || die "moving ${libfile} to ${D}/${QTPCDIR}/ failed" |
| 732 | || die "moving ${libfile} to ${D}/${QTPCDIR}/ failed" |
|
|
| 733 | fi |
719 | fi |
| 734 | done |
720 | done |
| 735 | |
721 | |
| 736 | # Don't install an empty directory |
722 | # Don't install an empty directory |
| 737 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
723 | rmdir "${D}"/${QTLIBDIR}/pkgconfig |
| … | |
… | |
| 741 | # @USAGE: < flag > [ feature ] [ enableval ] |
727 | # @USAGE: < flag > [ feature ] [ enableval ] |
| 742 | # @DESCRIPTION: |
728 | # @DESCRIPTION: |
| 743 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
729 | # This will echo "${enableval}-${feature}" if <flag> is enabled, or |
| 744 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
730 | # "-no-${feature} if the flag is disabled. If [feature] is not specified <flag> |
| 745 | # will be used for that. If [enableval] is not specified, it omits the |
731 | # will be used for that. If [enableval] is not specified, it omits the |
| 746 | # assignment-part |
732 | # assignment part. |
| 747 | qt_use() { |
733 | qt_use() { |
| 748 | local flag=$1 |
734 | local flag=$1 |
| 749 | local feature=$1 |
735 | local feature=$1 |
| 750 | local enableval= |
736 | local enableval= |
| 751 | |
737 | |
| … | |
… | |
| 762 | # @FUNCTION: qt_mkspecs_dir |
748 | # @FUNCTION: qt_mkspecs_dir |
| 763 | # @RETURN: the specs-directory w/o path |
749 | # @RETURN: the specs-directory w/o path |
| 764 | # @DESCRIPTION: |
750 | # @DESCRIPTION: |
| 765 | # Allows us to define which mkspecs dir we want to use. |
751 | # Allows us to define which mkspecs dir we want to use. |
| 766 | qt_mkspecs_dir() { |
752 | qt_mkspecs_dir() { |
| 767 | # Allows us to define which mkspecs dir we want to use. |
|
|
| 768 | local spec |
753 | local spec= |
| 769 | |
|
|
| 770 | case ${CHOST} in |
754 | case ${CHOST} in |
| 771 | *-freebsd*|*-dragonfly*) |
755 | *-freebsd*|*-dragonfly*) |
| 772 | spec=freebsd ;; |
756 | spec=freebsd ;; |
| 773 | *-openbsd*) |
757 | *-openbsd*) |
| 774 | spec=openbsd ;; |
758 | spec=openbsd ;; |
| … | |
… | |
| 815 | |
799 | |
| 816 | echo "${spec}" |
800 | echo "${spec}" |
| 817 | } |
801 | } |
| 818 | |
802 | |
| 819 | # @FUNCTION: qt_assistant_cleanup |
803 | # @FUNCTION: qt_assistant_cleanup |
| 820 | # @RETURN: nothing |
804 | # @INTERNAL |
| 821 | # @DESCRIPTION: |
805 | # @DESCRIPTION: |
| 822 | # Tries to clean up tools.pro for qt-assistant ebuilds. |
806 | # Tries to clean up tools.pro for qt-assistant ebuilds. |
| 823 | # Meant to be called in src_prepare(). |
807 | # Meant to be called in src_prepare(). |
| 824 | # Since Qt 4.7.4 this function is a no-op. |
808 | # Since Qt 4.7.4 this function is a no-op. |
| 825 | qt_assistant_cleanup() { |
809 | qt_assistant_cleanup() { |
| … | |
… | |
| 845 | ;; |
829 | ;; |
| 846 | esac |
830 | esac |
| 847 | } |
831 | } |
| 848 | |
832 | |
| 849 | # @FUNCTION: qt_nolibx11 |
833 | # @FUNCTION: qt_nolibx11 |
| 850 | # @RETURN: nothing |
834 | # @INTERNAL |
| 851 | # @DESCRIPTION: |
835 | # @DESCRIPTION: |
| 852 | # Ignore X11 tests for packages that don't need X libraries installed |
836 | # Ignore X11 tests for packages that don't need X libraries installed. |
| 853 | qt_nolibx11() { |
837 | qt_nolibx11() { |
| 854 | einfo "Removing X11 check to allow X-less compilation" |
|
|
| 855 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
838 | sed -i "/unixtests\/compile.test.*config.tests\/x11\/xlib/,/fi$/d" "${S}"/configure || |
| 856 | die "x11 check sed failed" |
839 | die "x11 check sed failed" |
| 857 | } |
840 | } |
| 858 | |
841 | |
| 859 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |
842 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |