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 30E57138334 for ; Sat, 30 Jun 2018 20:48:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2F73E08E5; Sat, 30 Jun 2018 20:48:02 +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 60206E08E5 for ; Sat, 30 Jun 2018 20:48:02 +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 D5413335C99 for ; Sat, 30 Jun 2018 20:48:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77041358 for ; Sat, 30 Jun 2018 20:47:57 +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: <1530391651.7504f685666d460181bc5f7c782858a7b65ab1b5.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/kexi/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/kexi/kexi-3.1.0.ebuild X-VCS-Directories: app-office/kexi/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7504f685666d460181bc5f7c782858a7b65ab1b5 X-VCS-Branch: master Date: Sat, 30 Jun 2018 20:47:57 +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: 9668fb78-5e02-4560-9539-4b3ae2f79182 X-Archives-Hash: ee7e87534777c21aa4e5ca9750bcee83 commit: 7504f685666d460181bc5f7c782858a7b65ab1b5 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 30 20:08:51 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 30 20:47:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7504f685 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-3.1.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-office/kexi/kexi-3.1.0.ebuild b/app-office/kexi/kexi-3.1.0.ebuild index 8074480ced6..16241347eb8 100644 --- a/app-office/kexi/kexi-3.1.0.ebuild +++ b/app-office/kexi/kexi-3.1.0.ebuild @@ -76,7 +76,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) @@ -84,5 +83,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 }