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 E8F2D1392EF for ; Mon, 7 Jul 2014 21:02:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B134BE0817; Mon, 7 Jul 2014 21:02:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43C68E0817 for ; Mon, 7 Jul 2014 21:02:40 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EE67533F894 for ; Mon, 7 Jul 2014 21:02:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 3408518011 for ; Mon, 7 Jul 2014 21:02:37 +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: <1404766900.ab5c7bec5a9dc95306e571dd48e73f25bf431452.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt4-build-multilib.eclass eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: ab5c7bec5a9dc95306e571dd48e73f25bf431452 X-VCS-Branch: master Date: Mon, 7 Jul 2014 21:02:37 +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: 4f9bdac7-3410-4d41-8866-e4102a3ec8fe X-Archives-Hash: 9f504fffe3b3d3fe73724fc1de004046 commit: ab5c7bec5a9dc95306e571dd48e73f25bf431452 Author: Davide Pesavento gentoo org> AuthorDate: Mon Jul 7 21:01:40 2014 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Mon Jul 7 21:01:40 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=ab5c7bec [eclass] Add RDEPEND on qtchooser. --- eclass/qt4-build-multilib.eclass | 3 +++ eclass/qt5-build.eclass | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass index 71ae1b3..c685334 100644 --- a/eclass/qt4-build-multilib.eclass +++ b/eclass/qt4-build-multilib.eclass @@ -50,6 +50,9 @@ DEPEND=" dev-lang/perl virtual/pkgconfig[${MULTILIB_USEDEP}] " +RDEPEND=" + dev-qt/qtchooser +" EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 99ba8df..4b510ed 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -65,7 +65,7 @@ EGIT_REPO_URI=( IUSE="debug test" DEPEND=" - >=dev-lang/perl-5.14 + dev-lang/perl virtual/pkgconfig " if [[ ${PN} != qttest ]]; then @@ -75,6 +75,9 @@ if [[ ${PN} != qttest ]]; then DEPEND+=" test? ( >=dev-qt/qttest-${PV}:5[debug=] )" fi fi +RDEPEND=" + dev-qt/qtchooser +" EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postinst pkg_postrm