| 1 | # Copyright 1999-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.81 2010/08/14 18:00:38 hwoarang Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.96 2011/10/30 14:21:14 hwoarang 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 | # Ben de Groot <yngwin@gentoo.org>, |
| 8 | # Markos Chandras <hwoarang@gentoo.org>, |
8 | # Markos Chandras <hwoarang@gentoo.org>, |
| … | |
… | |
| 15 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
15 | inherit base eutils multilib toolchain-funcs flag-o-matic versionator |
| 16 | |
16 | |
| 17 | MY_PV=${PV/_/-} |
17 | MY_PV=${PV/_/-} |
| 18 | if version_is_at_least 4.5.99999999; then |
18 | if version_is_at_least 4.5.99999999; then |
| 19 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
19 | MY_P=qt-everywhere-opensource-src-${MY_PV} |
| 20 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && IUSE="+exceptions" |
20 | [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && |
|
|
21 | [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && |
|
|
22 | IUSE="+exceptions" |
| 21 | else |
23 | else |
| 22 | MY_P=qt-x11-opensource-src-${MY_PV} |
24 | MY_P=qt-x11-opensource-src-${MY_PV} |
|
|
25 | fi |
|
|
26 | |
|
|
27 | if version_is_at_least 4.7.99999999; then |
|
|
28 | IUSE+=" c++0x qpa" |
| 23 | fi |
29 | fi |
| 24 | |
30 | |
| 25 | HOMEPAGE="http://qt.nokia.com/" |
31 | HOMEPAGE="http://qt.nokia.com/" |
| 26 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
32 | SRC_URI="http://get.qt.nokia.com/qt/source/${MY_P}.tar.gz" |
| 27 | |
33 | |
| … | |
… | |
| 133 | # @FUNCTION: qt4-build_src_unpack |
139 | # @FUNCTION: qt4-build_src_unpack |
| 134 | # @DESCRIPTION: |
140 | # @DESCRIPTION: |
| 135 | # Unpacks the sources |
141 | # Unpacks the sources |
| 136 | qt4-build_src_unpack() { |
142 | qt4-build_src_unpack() { |
| 137 | setqtenv |
143 | setqtenv |
|
|
144 | local unpack_p="${MY_P}" |
|
|
145 | case "${PV}" in |
|
|
146 | 4.8.0_*) |
|
|
147 | unpack_p="qt-everywhere-opensource-src-${PV/_*}" |
|
|
148 | ;; |
|
|
149 | esac |
| 138 | local target targets= |
150 | local target targets= |
| 139 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
151 | for target in configure LICENSE.GPL3 LICENSE.LGPL projects.pro \ |
| 140 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
152 | src/{qbase,qt_targets,qt_install}.pri bin config.tests mkspecs qmake \ |
| 141 | ${QT4_EXTRACT_DIRECTORIES}; do |
153 | ${QT4_EXTRACT_DIRECTORIES}; do |
| 142 | targets+=" ${MY_P}/${target}" |
154 | targets+=" ${unpack_p}/${target}" |
| 143 | done |
155 | done |
| 144 | |
156 | |
| 145 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
157 | echo tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} |
| 146 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
158 | tar xzf "${DISTDIR}"/${MY_P}.tar.gz ${targets} || die |
|
|
159 | case "${PV}" in |
|
|
160 | 4.8.0_*) |
|
|
161 | mv ${WORKDIR}/qt-everywhere-opensource-src-${PV/_*} \ |
|
|
162 | ${WORKDIR}/qt-everywhere-opensource-src-${MY_PV} |
|
|
163 | ;; |
|
|
164 | esac |
| 147 | } |
165 | } |
| 148 | |
166 | |
| 149 | # @ECLASS-VARIABLE: PATCHES |
167 | # @ECLASS-VARIABLE: PATCHES |
| 150 | # @DESCRIPTION: |
168 | # @DESCRIPTION: |
| 151 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
169 | # In case you have patches to apply, specify them in PATCHES variable. Make sure |
| … | |
… | |
| 160 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
178 | # Prepare the sources before the configure phase. Strip CFLAGS if necessary, and fix |
| 161 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
179 | # source files in order to respect CFLAGS/CXXFLAGS/LDFLAGS specified on /etc/make.conf. |
| 162 | qt4-build_src_prepare() { |
180 | qt4-build_src_prepare() { |
| 163 | setqtenv |
181 | setqtenv |
| 164 | cd "${S}" |
182 | cd "${S}" |
| 165 | |
183 | |
| 166 | # fix qt 4.7 regression that skips -fvisibility=hidden |
184 | # fix qt 4.7 regression that skips -fvisibility=hidden |
| 167 | if version_is_at_least "4.7.0_beta1"; then |
185 | if version_is_at_least "4.7.0_beta1"; then |
| 168 | sed -e "s/^gcc|g++)/*gcc|*g++)/" \ |
186 | sed -e "s/^gcc|g++)/*gcc|*g++)/" \ |
| 169 | -i config.tests/unix/fvisibility.test || |
187 | -i config.tests/unix/fvisibility.test || |
| 170 | die "visibility fixing sed failed" |
188 | die "visibility fixing sed failed" |
| 171 | fi |
189 | fi |
| 172 | # fix libx11 dependency on non X packages |
190 | # fix libx11 dependency on non X packages |
| 173 | if version_is_at_least "4.7.0_beta2"; then |
191 | if version_is_at_least "4.7.0_beta2"; then |
| 174 | local NOLIBX11PKG="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
192 | local NOLIBX11PKG="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" |
| 175 | hasq ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
193 | has ${PN} ${NOLIBX11PKG} && qt_nolibx11 |
| 176 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
194 | [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup |
| 177 | fi |
195 | fi |
| 178 | |
196 | |
| 179 | if use aqua; then |
197 | if use aqua; then |
| 180 | # provide a proper macx-g++-64 |
198 | # provide a proper macx-g++-64 |
| … | |
… | |
| 193 | |
211 | |
| 194 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
212 | if [[ ${CHOST} == *86*-apple-darwin* ]] ; then |
| 195 | # qmake bus errors with -O2 but -O3 works |
213 | # qmake bus errors with -O2 but -O3 works |
| 196 | replace-flags -O2 -O3 |
214 | replace-flags -O2 -O3 |
| 197 | fi |
215 | fi |
| 198 | |
216 | |
| 199 | if [[ ${CHOST} == arm* ]] ; then |
|
|
| 200 | # Fails on arm with -Os, bug 331641 |
|
|
| 201 | # This can be removed once qt-4.7 is stable or the bug on gcc is fixed |
|
|
| 202 | replace-flags -Os -O2 |
|
|
| 203 | fi |
|
|
| 204 | |
|
|
| 205 | # Bug 178652 |
217 | # Bug 178652 |
| 206 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
218 | if [[ $(gcc-major-version) == 3 ]] && use amd64; then |
| 207 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
219 | ewarn "Appending -fno-gcse to CFLAGS/CXXFLAGS" |
| 208 | append-flags -fno-gcse |
220 | append-flags -fno-gcse |
| 209 | fi |
221 | fi |
| 210 | |
222 | |
|
|
223 | if has c++0x ${IUSE//+} && use c++0x; then |
|
|
224 | ewarn "You are about to build Qt4 using the C++11 standard. Even though" |
|
|
225 | ewarn "this is an official standard, some of the reverse dependencies" |
|
|
226 | ewarn "may fail to compile or link againt the Qt4 libraries. Before" |
|
|
227 | ewarn "reporting a bug, make sure your bug is reproducible with c++0x" |
|
|
228 | ewarn "disabled." |
|
|
229 | append-flags -std=c++0x |
|
|
230 | fi |
| 211 | # Unsupported old gcc versions - hardened needs this :( |
231 | # Unsupported old gcc versions - hardened needs this :( |
| 212 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
232 | if [[ $(gcc-major-version) -lt 4 ]] ; then |
| 213 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
233 | ewarn "Appending -fno-stack-protector to CXXFLAGS" |
| 214 | append-cxxflags -fno-stack-protector |
234 | append-cxxflags -fno-stack-protector |
| 215 | # Bug 253127 |
235 | # Bug 253127 |
| … | |
… | |
| 222 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
242 | ewarn "Appending -mminimal-toc to CFLAGS/CXXFLAGS" |
| 223 | append-flags -mminimal-toc |
243 | append-flags -mminimal-toc |
| 224 | fi |
244 | fi |
| 225 | |
245 | |
| 226 | # Bug 282984 && Bug 295530 |
246 | # Bug 282984 && Bug 295530 |
| 227 | sed -e "s:\(^SYSTEM_VARIABLES\):CC="$(tc-getCC)"\nCXX="$(tc-getCXX)"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
247 | sed -e "s:\(^SYSTEM_VARIABLES\):CC=\"$(tc-getCC)\"\nCXX=\"$(tc-getCXX)\"\nCFLAGS=\"${CFLAGS}\"\nCXXFLAGS=\"${CXXFLAGS}\"\nLDFLAGS=\"${LDFLAGS}\"\n\1:" \ |
| 228 | -i configure || die "sed qmake compilers failed" |
248 | -i configure || die "sed qmake compilers failed" |
| 229 | # bug 321335 |
249 | # bug 321335 |
| 230 | if version_is_at_least 4.6; then |
250 | if version_is_at_least 4.6; then |
| 231 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
251 | find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ |
| 232 | xargs -0 \ |
252 | xargs -0 \ |
| 233 | sed -e "s:\(\$MAKE\):\1 CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getCXX)" "LINK=$(tc-getCXX)":g" \ |
253 | sed -e "s:\(\$MAKE\):\1 CC=\"$(tc-getCC)\" CXX=\"$(tc-getCXX)\" LD=\"$(tc-getCXX)\" LINK=\"$(tc-getCXX)\":g" \ |
| 234 | -i || die "sed test compilers failed" |
254 | -i || die "sed test compilers failed" |
| 235 | fi |
255 | fi |
| 236 | |
256 | |
| 237 | # Bug 172219 |
257 | # Bug 172219 |
| 238 | sed -e "s:X11R6/::" \ |
258 | sed -e "s:X11R6/::" \ |
| … | |
… | |
| 287 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
307 | sed -i -e '/PLATFORM=solaris-cc/s/cc/g++/' configure || die |
| 288 | # don't flirt with non-Prefix stuff, we're quite possessive |
308 | # don't flirt with non-Prefix stuff, we're quite possessive |
| 289 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
309 | sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ |
| 290 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
310 | mkspecs/$(qt_mkspecs_dir)/qmake.conf || die |
| 291 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
311 | # strip predefined CFLAGS from qmake ( bug #312689 ) |
| 292 | sed -i '/^QMAKE_CFLAGS_\(RELEASE\|DEBUG\)/s:+=.*:+=:' mkspecs/common/g++.conf |
312 | sed -i '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf |
| 293 | |
313 | |
| 294 | base_src_prepare |
314 | base_src_prepare |
| 295 | } |
315 | } |
| 296 | |
316 | |
| 297 | # @FUNCTION: qt4-build_src_configure |
317 | # @FUNCTION: qt4-build_src_configure |
| … | |
… | |
| 310 | # use -I, -L and -l from configure |
330 | # use -I, -L and -l from configure |
| 311 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
331 | local glibflags="$(pkg-config --cflags --libs glib-2.0 gthread-2.0)" |
| 312 | # avoid the -pthread argument |
332 | # avoid the -pthread argument |
| 313 | myconf+=" ${glibflags//-pthread}" |
333 | myconf+=" ${glibflags//-pthread}" |
| 314 | unset glibflags |
334 | unset glibflags |
|
|
335 | fi |
|
|
336 | |
|
|
337 | if has qpa ${IUSE//+} && use qpa; then |
|
|
338 | ewarn |
|
|
339 | ewarn "The qpa useflag enables the Qt Platform Abstraction, formely" |
|
|
340 | ewarn "known as Qt Lighthouse. If you are not sure what that is, then" |
|
|
341 | ewarn "disable it before reporting any bugs related to this useflag." |
|
|
342 | ewarn |
|
|
343 | myconf+=" -qpa" |
| 315 | fi |
344 | fi |
| 316 | |
345 | |
| 317 | if use aqua ; then |
346 | if use aqua ; then |
| 318 | # On (snow) leopard use the new (frameworked) cocoa code. |
347 | # On (snow) leopard use the new (frameworked) cocoa code. |
| 319 | if [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
348 | if [[ ${CHOST##*-darwin} -ge 9 ]] ; then |
| … | |
… | |
| 335 | # freetype2 include dir is non-standard, thus include it on configure |
364 | # freetype2 include dir is non-standard, thus include it on configure |
| 336 | # use -I from configure |
365 | # use -I from configure |
| 337 | myconf+=" $(pkg-config --cflags freetype2)" |
366 | myconf+=" $(pkg-config --cflags freetype2)" |
| 338 | fi |
367 | fi |
| 339 | |
368 | |
|
|
369 | # Disable SSE4.x, since auto-detection is currently broken |
|
|
370 | # Upstream bug http://bugreports.qt.nokia.com/browse/QTBUG-13623 |
|
|
371 | [[ ${PV} == "4.7.1" ]] && myconf+=" -no-sse4.1 -no-sse4.2" |
|
|
372 | |
| 340 | echo ./configure ${myconf} |
373 | echo ./configure ${myconf} |
| 341 | ./configure ${myconf} || die "./configure failed" |
374 | ./configure ${myconf} || die "./configure failed" |
| 342 | myconf="" |
375 | myconf="" |
|
|
376 | |
|
|
377 | prepare_directories ${QT4_TARGET_DIRECTORIES} |
| 343 | } |
378 | } |
| 344 | |
379 | |
| 345 | # @FUNCTION: qt4-build_src_compile |
380 | # @FUNCTION: qt4-build_src_compile |
|
|
381 | # @DESCRIPTION: |
| 346 | # @DESCRIPTION: Actual compile phase |
382 | # Actual compile phase |
| 347 | qt4-build_src_compile() { |
383 | qt4-build_src_compile() { |
| 348 | setqtenv |
384 | setqtenv |
| 349 | |
385 | |
| 350 | build_directories ${QT4_TARGET_DIRECTORIES} |
386 | build_directories ${QT4_TARGET_DIRECTORIES} |
| 351 | } |
387 | } |
| … | |
… | |
| 394 | install_directories ${QT4_TARGET_DIRECTORIES} |
430 | install_directories ${QT4_TARGET_DIRECTORIES} |
| 395 | install_qconfigs |
431 | install_qconfigs |
| 396 | fix_library_files |
432 | fix_library_files |
| 397 | fix_includes |
433 | fix_includes |
| 398 | # remove .la files since we are building only shared Qt libraries |
434 | # remove .la files since we are building only shared Qt libraries |
| 399 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
435 | find "${D}"${QTLIBDIR} -name "*.la" -print0 | xargs -0 rm |
| 400 | } |
436 | } |
| 401 | |
437 | |
| 402 | # @FUNCTION: setqtenv |
438 | # @FUNCTION: setqtenv |
| 403 | setqtenv() { |
439 | setqtenv() { |
| 404 | # Set up installation directories |
440 | # Set up installation directories |
| … | |
… | |
| 491 | -nomake examples -nomake demos" |
527 | -nomake examples -nomake demos" |
| 492 | |
528 | |
| 493 | echo "${myconf}" |
529 | echo "${myconf}" |
| 494 | } |
530 | } |
| 495 | |
531 | |
| 496 | # @FUNCTION: build_directories |
532 | # @FUNCTION: prepare_directories |
| 497 | # @USAGE: < directories > |
533 | # @USAGE: < directories > |
| 498 | # @DESCRIPTION: |
534 | # @DESCRIPTION: |
| 499 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
535 | # Generates makefiles for the directories set in $QT4_TARGET_DIRECTORIES |
| 500 | build_directories() { |
536 | prepare_directories() { |
| 501 | for x in "$@"; do |
537 | for x in "$@"; do |
| 502 | pushd "${S}"/${x} >/dev/null |
538 | pushd "${S}"/${x} >/dev/null |
|
|
539 | einfo "running qmake in: $x" |
| 503 | # avoid running over the maximum argument number, bug #299810 |
540 | # avoid running over the maximum argument number, bug #299810 |
| 504 | { |
541 | { |
| 505 | echo "${S}"/mkspecs/common/*.conf |
542 | echo "${S}"/mkspecs/common/*.conf |
| 506 | find "${S}" -name '*.pr[io]' |
543 | find "${S}" -name '*.pr[io]' |
| 507 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
544 | } | xargs sed -i -e "s:\$\$\[QT_INSTALL_LIBS\]:${EPREFIX}/usr/$(get_libdir)/qt4:g" || die |
| 508 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
545 | "${S}"/bin/qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" || die "qmake failed" |
|
|
546 | popd >/dev/null |
|
|
547 | done |
|
|
548 | } |
|
|
549 | |
|
|
550 | |
|
|
551 | # @FUNCTION: build_directories |
|
|
552 | # @USAGE: < directories > |
|
|
553 | # @DESCRIPTION: |
|
|
554 | # Compiles the code in $QT4_TARGET_DIRECTORIES |
|
|
555 | build_directories() { |
|
|
556 | for x in "$@"; do |
|
|
557 | pushd "${S}"/${x} >/dev/null |
| 509 | emake CC="$(tc-getCC)" \ |
558 | emake CC="$(tc-getCC)" \ |
| 510 | CXX="$(tc-getCXX)" \ |
559 | CXX="$(tc-getCXX)" \ |
| 511 | LINK="$(tc-getCXX)" || die "emake failed" |
560 | LINK="$(tc-getCXX)" || die "emake failed" |
| 512 | popd >/dev/null |
561 | popd >/dev/null |
| 513 | done |
562 | done |
| … | |
… | |
| 539 | # @DESCRIPTION: |
588 | # @DESCRIPTION: |
| 540 | # List variables that should be defined at the top of QtCore/qconfig.h |
589 | # List variables that should be defined at the top of QtCore/qconfig.h |
| 541 | : ${QCONFIG_DEFINE:=} |
590 | : ${QCONFIG_DEFINE:=} |
| 542 | |
591 | |
| 543 | # @FUNCTION: install_qconfigs |
592 | # @FUNCTION: install_qconfigs |
|
|
593 | # @DESCRIPTION: |
| 544 | # @DESCRIPTION: Install gentoo-specific mkspecs configurations |
594 | # Install gentoo-specific mkspecs configurations |
| 545 | install_qconfigs() { |
595 | install_qconfigs() { |
| 546 | local x |
596 | local x |
| 547 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
597 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} ]]; then |
| 548 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
598 | for x in QCONFIG_ADD QCONFIG_REMOVE; do |
| 549 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
599 | [[ -n ${!x} ]] && echo ${x}=${!x} >> "${T}"/${PN}-qconfig.pri |
| … | |
… | |
| 560 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
610 | doins "${T}"/gentoo-${PN}-qconfig.h || die "installing ${PN}-qconfig.h failed" |
| 561 | fi |
611 | fi |
| 562 | } |
612 | } |
| 563 | |
613 | |
| 564 | # @FUNCTION: generate_qconfigs |
614 | # @FUNCTION: generate_qconfigs |
|
|
615 | # @DESCRIPTION: |
| 565 | # @DESCRIPTION: Generates gentoo-specific configurations |
616 | # Generates gentoo-specific configurations |
| 566 | generate_qconfigs() { |
617 | generate_qconfigs() { |
| 567 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
618 | if [[ -n ${QCONFIG_ADD} || -n ${QCONFIG_REMOVE} || -n ${QCONFIG_DEFINE} || ${CATEGORY}/${PN} == x11-libs/qt-core ]]; then |
| 568 | local x qconfig_add qconfig_remove qconfig_new |
619 | local x qconfig_add qconfig_remove qconfig_new |
| 569 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
620 | for x in "${ROOT}${QTDATADIR}"/mkspecs/gentoo/*-qconfig.pri; do |
| 570 | [[ -f ${x} ]] || continue |
621 | [[ -f ${x} ]] || continue |
| … | |
… | |
| 584 | |
635 | |
| 585 | # generate list of QT_CONFIG entries from the existing list |
636 | # generate list of QT_CONFIG entries from the existing list |
| 586 | # including qconfig_add and excluding qconfig_remove |
637 | # including qconfig_add and excluding qconfig_remove |
| 587 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
638 | for x in $(sed -n 's/^QT_CONFIG +=//p' \ |
| 588 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
639 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do |
| 589 | hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
640 | has ${x} ${qconfig_remove} || qconfig_new+=" ${x}" |
| 590 | done |
641 | done |
| 591 | |
642 | |
| 592 | # replace the existing QT_CONFIG list with qconfig_new |
643 | # replace the existing QT_CONFIG list with qconfig_new |
| 593 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
644 | if ! sed -i -e "s/QT_CONFIG +=.*/QT_CONFIG += ${qconfig_new}/" \ |
| 594 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
645 | "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri; then |
| … | |
… | |
| 618 | fi |
669 | fi |
| 619 | fi |
670 | fi |
| 620 | } |
671 | } |
| 621 | |
672 | |
| 622 | # @FUNCTION: qt4-build_pkg_postrm |
673 | # @FUNCTION: qt4-build_pkg_postrm |
|
|
674 | # @DESCRIPTION: |
| 623 | # @DESCRIPTION: Generate configurations when the package is completely removed |
675 | # Generate configurations when the package is completely removed |
| 624 | qt4-build_pkg_postrm() { |
676 | qt4-build_pkg_postrm() { |
| 625 | generate_qconfigs |
677 | generate_qconfigs |
| 626 | } |
678 | } |
| 627 | |
679 | |
| 628 | # @FUNCTION: qt4-build_pkg_postinst |
680 | # @FUNCTION: qt4-build_pkg_postinst |
|
|
681 | # @DESCRIPTION: |
| 629 | # @DESCRIPTION: Generate configuration, plus throws a message about possible |
682 | # Generate configuration, plus throws a message about possible |
| 630 | # breakages and proposed solutions. |
683 | # breakages and proposed solutions. |
| 631 | qt4-build_pkg_postinst() { |
684 | qt4-build_pkg_postinst() { |
| 632 | generate_qconfigs |
685 | generate_qconfigs |
| 633 | } |
686 | } |
| 634 | |
687 | |