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 00347138334 for ; Sat, 30 Jun 2018 21:00:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CDC20E08CE; Sat, 30 Jun 2018 21:00:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A4403E08CE for ; Sat, 30 Jun 2018 21:00:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 50A28335C8C for ; Sat, 30 Jun 2018 21:00:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2378A2C8 for ; Sat, 30 Jun 2018 21:00:04 +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: <1530392257.6f20beb9eeb4fa249078b98262c6aaac69546549.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: app-office/kexi/ X-VCS-Repository: proj/kde X-VCS-Files: app-office/kexi/kexi-9999.ebuild X-VCS-Directories: app-office/kexi/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6f20beb9eeb4fa249078b98262c6aaac69546549 X-VCS-Branch: master Date: Sat, 30 Jun 2018 21:00:04 +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: 6fdcae12-1a09-49b0-b945-d0c451ea82ea X-Archives-Hash: 5fd6674f486912f20bf658ceffd931ee commit: 6f20beb9eeb4fa249078b98262c6aaac69546549 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 30 20:08:51 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 30 20:57:37 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=6f20beb9 app-office/kexi: Fix cmake warning Closes: https://bugs.gentoo.org/659644 Package-Manager: Portage-2.3.41, Repoman-2.3.9 app-office/kexi/kexi-9999.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-office/kexi/kexi-9999.ebuild b/app-office/kexi/kexi-9999.ebuild index 2a8bea7335..a524f44ca2 100644 --- a/app-office/kexi/kexi-9999.ebuild +++ b/app-office/kexi/kexi-9999.ebuild @@ -73,7 +73,6 @@ src_prepare() { src_configure() { local mycmakeargs=( -DKEXI_MIGRATEMANAGER_DEBUG=$(usex debug) - -DKEXI_SCRIPTING_DEBUG=$(usex debug) -DKEXI_AUTORISE_TABBED_TOOLBAR=$(usex experimental) -DKEXI_SCRIPTS_SUPPORT=$(usex experimental) $(cmake-utils_use_find_package marble KexiMarble) @@ -81,5 +80,7 @@ src_configure() { $(cmake-utils_use_find_package mysql MySQL) $(cmake-utils_use_find_package postgres PostgreSQL) ) + use experimental && mycmakeargs+=( -DKEXI_SCRIPTING_DEBUG=$(usex debug) ) + kde5_src_configure }