diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-08-11 08:45:51 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-08-11 10:19:24 +0200 |
commit | fdc8519bb5ca806bca4fe9b0af16f528ff66b73e (patch) | |
tree | c3fc9501c0b96fde0671ed01eb894f4e5b4610c5 /kde-apps | |
parent | app-office/ledger: Drop elisp-common, make reference in pkg_postinst (diff) | |
download | gentoo-fdc8519bb5ca806bca4fe9b0af16f528ff66b73e.tar.gz gentoo-fdc8519bb5ca806bca4fe9b0af16f528ff66b73e.tar.bz2 gentoo-fdc8519bb5ca806bca4fe9b0af16f528ff66b73e.zip |
kde-apps/palapeli: Fix missing header with Frameworks 5.61
Reported-by: <klaus818@googlemail.com>
Closes: https://bugs.gentoo.org/691924
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps')
-rw-r--r-- | kde-apps/palapeli/files/palapeli-19.04.3-missing-header.patch | 24 | ||||
-rw-r--r-- | kde-apps/palapeli/palapeli-19.04.3.ebuild | 2 |
2 files changed, 26 insertions, 0 deletions
diff --git a/kde-apps/palapeli/files/palapeli-19.04.3-missing-header.patch b/kde-apps/palapeli/files/palapeli-19.04.3-missing-header.patch new file mode 100644 index 000000000000..23f9b0d73283 --- /dev/null +++ b/kde-apps/palapeli/files/palapeli-19.04.3-missing-header.patch @@ -0,0 +1,24 @@ +From 017a6325de82f3872b36ddb35052e1845fb97ff8 Mon Sep 17 00:00:00 2001 +From: Luca Beltrame <lbeltrame@kde.org> +Date: Fri, 19 Jul 2019 07:31:17 +0200 +Subject: Include QMap header explicitly + +Seems no longer included transitively in Qt 5.13. +--- + src/engine/gameplay.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/engine/gameplay.h b/src/engine/gameplay.h +index a759f8f..af18373 100644 +--- a/src/engine/gameplay.h ++++ b/src/engine/gameplay.h +@@ -26,6 +26,7 @@ class QStackedWidget; + + #include "../window/mainwindow.h" + ++#include <QMap> + #include <QTime> // IDW test. + + namespace Palapeli +-- +cgit v1.1 diff --git a/kde-apps/palapeli/palapeli-19.04.3.ebuild b/kde-apps/palapeli/palapeli-19.04.3.ebuild index f4a1faf99286..a96a015e4b0d 100644 --- a/kde-apps/palapeli/palapeli-19.04.3.ebuild +++ b/kde-apps/palapeli/palapeli-19.04.3.ebuild @@ -33,3 +33,5 @@ RDEPEND=" DEPEND="${RDEPEND} $(add_qt_dep qtconcurrent) " + +PATCHES=( "${FILESDIR}/${P}-missing-header.patch" ) |