From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/skrooge/, app-office/skrooge/files/
Date: Wed, 5 Sep 2018 07:21:25 +0000 (UTC) [thread overview]
Message-ID: <1536132070.fcfa3986fd61784b200a8098919ca80eb98743b3.asturm@gentoo> (raw)
commit: fcfa3986fd61784b200a8098919ca80eb98743b3
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 5 07:19:19 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Sep 5 07:21:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcfa3986
app-office/skrooge: Fix build with USE=-designer
Closes: https://bugs.gentoo.org/665042
Package-Manager: Portage-2.3.49, Repoman-2.3.10
.../files/skrooge-2.14.0-designer-optional.patch | 100 +++++++++++++++++++++
app-office/skrooge/skrooge-2.14.0.ebuild | 2 +
2 files changed, 102 insertions(+)
diff --git a/app-office/skrooge/files/skrooge-2.14.0-designer-optional.patch b/app-office/skrooge/files/skrooge-2.14.0-designer-optional.patch
new file mode 100644
index 00000000000..e34e80b78af
--- /dev/null
+++ b/app-office/skrooge/files/skrooge-2.14.0-designer-optional.patch
@@ -0,0 +1,100 @@
+From b83f0a0d1171fab0d839de23b97e0ffe3aae4d3e Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner <asturm@gentoo.org>
+Date: Wed, 5 Sep 2018 08:46:09 +0200
+Subject: [PATCH] Fix build with SKG_DESIGNER=OFF
+
+Summary: cmake was adding designerplugin code to build with SKG_DESIGNER=OFF.
+
+Reviewers: #skrooge
+
+Differential Revision: https://phabricator.kde.org/D15282
+---
+ skgbankgui/CMakeLists.txt | 12 +++++++----
+ skgbasegui/CMakeLists.txt | 44 +++++++++++++++++++++------------------
+ 2 files changed, 32 insertions(+), 24 deletions(-)
+
+diff --git a/skgbankgui/CMakeLists.txt b/skgbankgui/CMakeLists.txt
+index 9bb197f3d..17c7c6ca2 100644
+--- a/skgbankgui/CMakeLists.txt
++++ b/skgbankgui/CMakeLists.txt
+@@ -26,12 +26,16 @@ SET(skgbankgui_SRCS
+ skgpredicatcreator.cpp
+ skgquerydelegate.cpp
+ skgunitcombobox.cpp
++)
+
+- skgquerycreatordesignerplugin.cpp
+- skgbkwidgetcollectiondesignerplugin.cpp
+- skgpredicatcreatordesignerplugin.cpp
+- skgunitcomboboxdesignerplugin.cpp
++IF(SKG_DESIGNER)
++ SET(skgbankgui_SRCS ${skgbankgui_SRCS}
++ skgquerycreatordesignerplugin.cpp
++ skgbkwidgetcollectiondesignerplugin.cpp
++ skgpredicatcreatordesignerplugin.cpp
++ skgunitcomboboxdesignerplugin.cpp
+ )
++ENDIF()
+
+ SET(LIBS Qt5::Xml skgbankmodeler skgbasemodeler skgbasegui)
+ IF(SKG_DESIGNER)
+diff --git a/skgbasegui/CMakeLists.txt b/skgbasegui/CMakeLists.txt
+index 112efe267..81b0bf8de 100644
+--- a/skgbasegui/CMakeLists.txt
++++ b/skgbasegui/CMakeLists.txt
+@@ -63,28 +63,32 @@ SET(skgbasegui_SRCS
+ skgshow.cpp
+ skgwidgetselector.cpp
+ skgsimpleperiodedit.cpp
+-
+- skgwidgetcollectiondesignerplugin.cpp
+- skgtabwidgetdesignerplugin.cpp
+- skgtablewidgetdesignerplugin.cpp
+- skgtableviewdesignerplugin.cpp
+- skgfilteredtableviewdesignerplugin.cpp
+- skgtreeviewdesignerplugin.cpp
+- skgcomboboxdesignerplugin.cpp
+- skgcolorbuttondesignerplugin.cpp
+- skgwidgetselectordesignerplugin.cpp
+- skgwebviewdesignerplugin.cpp
+- skgzoomselectordesignerplugin.cpp
+- skgcalculatoreditdesignerplugin.cpp
+- skggraphicsviewdesignerplugin.cpp
+- skgshowdesignerplugin.cpp
+- skgtablewithgraphdesignerplugin.cpp
+- skgdateeditdesignerplugin.cpp
+- skgprogressbardesignerplugin.cpp
+- skgperiodeditdesignerplugin.cpp
+- skgsimpleperiodeditdesignerplugin.cpp
+ )
+
++IF(SKG_DESIGNER)
++ SET(skgbasegui_SRCS ${skgbasegui_SRCS}
++ skgwidgetcollectiondesignerplugin.cpp
++ skgtabwidgetdesignerplugin.cpp
++ skgtablewidgetdesignerplugin.cpp
++ skgtableviewdesignerplugin.cpp
++ skgfilteredtableviewdesignerplugin.cpp
++ skgtreeviewdesignerplugin.cpp
++ skgcomboboxdesignerplugin.cpp
++ skgcolorbuttondesignerplugin.cpp
++ skgwidgetselectordesignerplugin.cpp
++ skgwebviewdesignerplugin.cpp
++ skgzoomselectordesignerplugin.cpp
++ skgcalculatoreditdesignerplugin.cpp
++ skggraphicsviewdesignerplugin.cpp
++ skgshowdesignerplugin.cpp
++ skgtablewithgraphdesignerplugin.cpp
++ skgdateeditdesignerplugin.cpp
++ skgprogressbardesignerplugin.cpp
++ skgperiodeditdesignerplugin.cpp
++ skgsimpleperiodeditdesignerplugin.cpp
++ )
++ENDIF()
++
+ SET(LIBS KF5::Parts KF5::KIOFileWidgets KF5::NotifyConfig KF5::Notifications Qt5::QuickWidgets Qt5::PrintSupport Qt5::Svg skgbasemodeler)
+ IF(SKG_DESIGNER)
+ SET(LIBS ${LIBS} Qt5::Designer)
+--
+2.18.0
+
diff --git a/app-office/skrooge/skrooge-2.14.0.ebuild b/app-office/skrooge/skrooge-2.14.0.ebuild
index f5110fcfb09..69bfd2e405c 100644
--- a/app-office/skrooge/skrooge-2.14.0.ebuild
+++ b/app-office/skrooge/skrooge-2.14.0.ebuild
@@ -76,6 +76,8 @@ REQUIRED_USE="test? ( designer )"
# hangs + installs files
RESTRICT+=" test"
+PATCHES=( "${FILESDIR}/${P}-designer-optional.patch" )
+
src_configure() {
local mycmakeargs=(
-DSKG_BUILD_TEST=$(usex test)
next reply other threads:[~2018-09-05 7:21 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-05 7:21 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-02-12 15:21 [gentoo-commits] repo/gentoo:master commit in: app-office/skrooge/, app-office/skrooge/files/ Andreas Sturmlechner
2019-01-27 17:20 Andreas Sturmlechner
2019-01-24 22:26 Andreas Sturmlechner
2018-12-13 23:04 Andreas Sturmlechner
2018-04-17 22:17 Andreas Sturmlechner
2016-10-09 16:04 Michael Palimaka
2016-08-05 17:24 Michael Palimaka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1536132070.fcfa3986fd61784b200a8098919ca80eb98743b3.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox