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 E5CFF138010 for ; Sat, 6 Oct 2012 02:04:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DE3AE0026; Sat, 6 Oct 2012 02:04:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CA8A4E0026 for ; Sat, 6 Oct 2012 02:04:39 +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 3DE0933D781 for ; Sat, 6 Oct 2012 02:04:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id AE8A2E5436 for ; Sat, 6 Oct 2012 02:04:36 +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: <1349489011.962b35381c49c2f83f108e54b1dfd5ca4c08243f.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: 962b35381c49c2f83f108e54b1dfd5ca4c08243f X-VCS-Branch: master Date: Sat, 6 Oct 2012 02:04:36 +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: 461f1a62-9f6f-4d98-a001-faf0751b9e4e X-Archives-Hash: e09cd38cd7c52586075460419279ddff commit: 962b35381c49c2f83f108e54b1dfd5ca4c08243f Author: Davide Pesavento gmail com> AuthorDate: Sat Oct 6 02:03:31 2012 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sat Oct 6 02:03:31 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=962b3538 [qt5-build.eclass] qt-core now installs an env.d file for custom LDPATH. --- eclass/qt5-build.eclass | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 943e52c..f18a37d 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -272,6 +272,7 @@ qt5-build_src_install() { if [[ ${PN} == "qt-core" ]]; then pushd "${QT5_BUILD_DIR}" > /dev/null || die + einfo "Running emake INSTALL_ROOT=${D} install_{mkspecs,qmake,syncqt}" emake INSTALL_ROOT="${D}" install_{mkspecs,qmake,syncqt} popd > /dev/null || die @@ -284,6 +285,12 @@ qt5-build_src_install() { "${D}${QTHEADERDIR}"/QtCore/qconfig.h \ "${D}${QTHEADERDIR}"/Qt/qconfig.h \ || die "sed qconfig.h failed" + + # install env.d file for custom LDPATH + cat <<-EOF > "${T}"/55qt5 + LDPATH="${QTLIBDIR}" + EOF + doenvd "${T}"/55qt5 fi qt5_install_module_qconfigs