From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3B4131396D9 for ; Mon, 23 Oct 2017 23:58:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70CD12BC011; Mon, 23 Oct 2017 23:58:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4CDCA2BC011 for ; Mon, 23 Oct 2017 23:58:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F38433BF51 for ; Mon, 23 Oct 2017 23:58:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5558316 for ; Mon, 23 Oct 2017 23:58:52 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1508803021.ca9772eb0e7bc9ef7a60408a9edeeee54a7ac955.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kdevelop-php/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kdevelop-php/kdevelop-php-5.1.2.ebuild X-VCS-Directories: dev-util/kdevelop-php/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ca9772eb0e7bc9ef7a60408a9edeeee54a7ac955 X-VCS-Branch: master Date: Mon, 23 Oct 2017 23:58:52 +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: b2a40df8-99b7-4919-aac4-5a4554c6f970 X-Archives-Hash: 580d61226611167b1c061d013850264e commit: ca9772eb0e7bc9ef7a60408a9edeeee54a7ac955 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Oct 23 23:54:56 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Oct 23 23:57:01 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca9772eb dev-util/kdevelop-php: Fix build with test enabled, bug #635164 Unfortunately, kdevplatform[test] installs headers that we need here. Package-Manager: Portage-2.3.12, Repoman-2.3.3 dev-util/kdevelop-php/kdevelop-php-5.1.2.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-util/kdevelop-php/kdevelop-php-5.1.2.ebuild b/dev-util/kdevelop-php/kdevelop-php-5.1.2.ebuild index 9e4b2a9d9d0..b2e792507c4 100644 --- a/dev-util/kdevelop-php/kdevelop-php-5.1.2.ebuild +++ b/dev-util/kdevelop-php/kdevelop-php-5.1.2.ebuild @@ -17,7 +17,7 @@ LICENSE="GPL-2 LGPL-2" IUSE="" [[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="~amd64 ~x86" -DEPEND=" +COMMON_DEPEND=" $(add_frameworks_dep karchive) $(add_frameworks_dep kcmutils) $(add_frameworks_dep kconfig) @@ -36,7 +36,10 @@ DEPEND=" dev-util/kdevelop-pg-qt:5 >=dev-util/kdevplatform-${PV}:${SLOT} " -RDEPEND="${DEPEND} +RDEPEND="${COMMON_DEPEND} !dev-util/kdevelop-php-docs dev-util/kdevelop:5 " +DEPEND="${COMMON_DEPEND} + test? ( >=dev-util/kdevplatform-${PV}:${SLOT}[test] ) +"