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 77C83139694 for ; Fri, 24 Mar 2017 13:39:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 489F721C06A; Fri, 24 Mar 2017 13:39:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 20A0721C054 for ; Fri, 24 Mar 2017 13:39:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D064F341662 for ; Fri, 24 Mar 2017 13:39:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70E1A735D for ; Fri, 24 Mar 2017 13:39:01 +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: <1490362713.204536209d0d39d4ab6737d5f8a5a2dba9e10e87.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/umbrello/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/umbrello/umbrello-17.03.80.ebuild kde-apps/umbrello/umbrello-17.04.49.9999.ebuild kde-apps/umbrello/umbrello-9999.ebuild X-VCS-Directories: kde-apps/umbrello/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 204536209d0d39d4ab6737d5f8a5a2dba9e10e87 X-VCS-Branch: master Date: Fri, 24 Mar 2017 13:39:01 +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: def4a777-902e-473c-a1bd-68b63ee5ccc9 X-Archives-Hash: c51f52609edd4688966049e7806b2ca7 commit: 204536209d0d39d4ab6737d5f8a5a2dba9e10e87 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Mar 24 13:38:33 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Mar 24 13:38:33 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=20453620 kde-apps/umbrello: Avoid cmake warning Package-Manager: Portage-2.3.3, Repoman-2.3.1 kde-apps/umbrello/umbrello-17.03.80.ebuild | 2 +- kde-apps/umbrello/umbrello-17.04.49.9999.ebuild | 2 +- kde-apps/umbrello/umbrello-9999.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kde-apps/umbrello/umbrello-17.03.80.ebuild b/kde-apps/umbrello/umbrello-17.03.80.ebuild index 055398c78d..264a151501 100644 --- a/kde-apps/umbrello/umbrello-17.03.80.ebuild +++ b/kde-apps/umbrello/umbrello-17.03.80.ebuild @@ -50,9 +50,9 @@ src_prepare() { src_configure() { local mycmakeargs=( -DBUILD_KF5=ON - -DCMAKE_DISABLE_FIND_PACKAGE_LLVM=ON -DBUILD_unittests=$(usex test) ) + use test && mycmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_LLVM=ON ) kde5_src_configure } diff --git a/kde-apps/umbrello/umbrello-17.04.49.9999.ebuild b/kde-apps/umbrello/umbrello-17.04.49.9999.ebuild index 881b0b5986..885c0a44da 100644 --- a/kde-apps/umbrello/umbrello-17.04.49.9999.ebuild +++ b/kde-apps/umbrello/umbrello-17.04.49.9999.ebuild @@ -45,9 +45,9 @@ RDEPEND="${DEPEND}" src_configure() { local mycmakeargs=( -DBUILD_KF5=ON - -DCMAKE_DISABLE_FIND_PACKAGE_LLVM=ON -DBUILD_unittests=$(usex test) ) + use test && mycmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_LLVM=ON ) kde5_src_configure } diff --git a/kde-apps/umbrello/umbrello-9999.ebuild b/kde-apps/umbrello/umbrello-9999.ebuild index 881b0b5986..885c0a44da 100644 --- a/kde-apps/umbrello/umbrello-9999.ebuild +++ b/kde-apps/umbrello/umbrello-9999.ebuild @@ -45,9 +45,9 @@ RDEPEND="${DEPEND}" src_configure() { local mycmakeargs=( -DBUILD_KF5=ON - -DCMAKE_DISABLE_FIND_PACKAGE_LLVM=ON -DBUILD_unittests=$(usex test) ) + use test && mycmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_LLVM=ON ) kde5_src_configure }