Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/kexi/
Date: Sat, 30 Jun 2018 20:48:05
Message-Id: 1530391651.7504f685666d460181bc5f7c782858a7b65ab1b5.asturm@gentoo
1 commit: 7504f685666d460181bc5f7c782858a7b65ab1b5
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 30 20:08:51 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 30 20:47:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7504f685
7
8 app-office/kexi: Fix cmake warning
9
10 Closes: https://bugs.gentoo.org/659644
11 Package-Manager: Portage-2.3.41, Repoman-2.3.9
12
13 app-office/kexi/kexi-3.1.0.ebuild | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16 diff --git a/app-office/kexi/kexi-3.1.0.ebuild b/app-office/kexi/kexi-3.1.0.ebuild
17 index 8074480ced6..16241347eb8 100644
18 --- a/app-office/kexi/kexi-3.1.0.ebuild
19 +++ b/app-office/kexi/kexi-3.1.0.ebuild
20 @@ -76,7 +76,6 @@ src_prepare() {
21 src_configure() {
22 local mycmakeargs=(
23 -DKEXI_MIGRATEMANAGER_DEBUG=$(usex debug)
24 - -DKEXI_SCRIPTING_DEBUG=$(usex debug)
25 -DKEXI_AUTORISE_TABBED_TOOLBAR=$(usex experimental)
26 -DKEXI_SCRIPTS_SUPPORT=$(usex experimental)
27 $(cmake-utils_use_find_package marble KexiMarble)
28 @@ -84,5 +83,7 @@ src_configure() {
29 $(cmake-utils_use_find_package mysql MySQL)
30 $(cmake-utils_use_find_package postgres PostgreSQL)
31 )
32 + use experimental && mycmakeargs+=( -DKEXI_SCRIPTING_DEBUG=$(usex debug) )
33 +
34 kde5_src_configure
35 }