From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A886E1381F3 for ; Wed, 23 Oct 2013 00:34:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44D15E0A63; Wed, 23 Oct 2013 00:34:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CCCACE0A63 for ; Wed, 23 Oct 2013 00:34:57 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E7BF733EFFD for ; Wed, 23 Oct 2013 00:34:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 72B00E5308 for ; Wed, 23 Oct 2013 00:34:54 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1382485805.ced1ddd540fd0444d2cef4e67c91ae3aec521b9d.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: ced1ddd540fd0444d2cef4e67c91ae3aec521b9d X-VCS-Branch: master Date: Wed, 23 Oct 2013 00:34:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1735b656-ac24-4f58-820c-4b8b155ffd87 X-Archives-Hash: ad1c6fefe0531fac40eebcd916c0414d commit: ced1ddd540fd0444d2cef4e67c91ae3aec521b9d Author: Davide Pesavento gmail com> AuthorDate: Tue Oct 22 23:50:05 2013 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Tue Oct 22 23:50:05 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=ced1ddd5 [qt5-build.eclass] Improve eclass doc slightly. --- eclass/qt5-build.eclass | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 97fbc52..2ba8621 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -110,16 +110,19 @@ EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_ : ${QT5_VERBOSE_BUILD:=true} # @ECLASS-VARIABLE: QCONFIG_ADD +# @DEFAULT_UNSET # @DESCRIPTION: -# List of options that need to be added to QT_CONFIG in qconfig.pri +# Array of options that must be added to QT_CONFIG in qconfig.pri # @ECLASS-VARIABLE: QCONFIG_REMOVE +# @DEFAULT_UNSET # @DESCRIPTION: -# List of options that need to be removed from QT_CONFIG in qconfig.pri +# Array of options that must be removed from QT_CONFIG in qconfig.pri # @ECLASS-VARIABLE: QCONFIG_DEFINE +# @DEFAULT_UNSET # @DESCRIPTION: -# List of variables that should be defined at the top of QtCore/qconfig.h +# Array of macros that must be defined in QtCore/qconfig.h # @FUNCTION: qt5-build_pkg_setup # @DESCRIPTION: @@ -139,18 +142,20 @@ qt5-build_pkg_setup() { # Unpacks the sources. qt5-build_src_unpack() { if ! version_is_at_least 4.4 $(gcc-version); then + ewarn ewarn "Using a GCC version lower than 4.4 is not supported." + ewarn fi if [[ ${PN} == "qtwebkit" ]]; then eshopts_push -s extglob if is-flagq '-g?(gdb)?([1-9])'; then - echo + ewarn ewarn "You have enabled debug info (probably have -g or -ggdb in your CFLAGS/CXXFLAGS)." ewarn "You may experience really long compilation times and/or increased memory usage." ewarn "If compilation fails, please try removing -g/-ggdb before reporting a bug." ewarn "For more info check out https://bugs.gentoo.org/307861" - echo + ewarn fi eshopts_pop fi