summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-06-30 22:08:51 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-06-30 22:47:31 +0200
commit7504f685666d460181bc5f7c782858a7b65ab1b5 (patch)
tree890196e3661fd11d61e8275b7cc6d7bc5058bec6 /app-office
parentsys-auth/elogind: Drop 236.1 (diff)
downloadgentoo-7504f685666d460181bc5f7c782858a7b65ab1b5.tar.gz
gentoo-7504f685666d460181bc5f7c782858a7b65ab1b5.tar.bz2
gentoo-7504f685666d460181bc5f7c782858a7b65ab1b5.zip
app-office/kexi: Fix cmake warning
Closes: https://bugs.gentoo.org/659644 Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'app-office')
-rw-r--r--app-office/kexi/kexi-3.1.0.ebuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/app-office/kexi/kexi-3.1.0.ebuild b/app-office/kexi/kexi-3.1.0.ebuild
index 8074480ced66..16241347eb89 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
}