Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kwallet/files/, kde-frameworks/kwallet/
Date: Wed, 28 Sep 2016 09:50:01
Message-Id: 1475056185.a6d4f3a58e776ceb93484ce8122419f2eb57998a.kensington@gentoo
1 commit: a6d4f3a58e776ceb93484ce8122419f2eb57998a
2 Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
3 AuthorDate: Sun Sep 25 20:41:53 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 28 09:49:45 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6d4f3a5
7
8 kde-frameworks/kwallet: Add missing boost header
9
10 Fixes build error with GpgME-1.7.0 (which was ported away from boost).
11
12 Gentoo-bug: 595096
13
14 Package-Manager: portage-2.3.0
15
16 .../kwallet-5.26.0-missing-boost-header.patch | 22 ++++++++++++++++++++++
17 kde-frameworks/kwallet/kwallet-5.26.0.ebuild | 2 ++
18 2 files changed, 24 insertions(+)
19
20 diff --git a/kde-frameworks/kwallet/files/kwallet-5.26.0-missing-boost-header.patch b/kde-frameworks/kwallet/files/kwallet-5.26.0-missing-boost-header.patch
21 new file mode 100644
22 index 00000000..8bf16f0
23 --- /dev/null
24 +++ b/kde-frameworks/kwallet/files/kwallet-5.26.0-missing-boost-header.patch
25 @@ -0,0 +1,22 @@
26 +commit 0ae542bfa6e266ead736d6cca5f979dac75e24f2
27 +Author: Andreas Sturmlechner <andreas.sturmlechner@×××××.com>
28 +Date: Sun Sep 25 14:56:55 2016 +0200
29 +
30 + Add missing boost header
31 +
32 + Fixes build error with GpgME-1.7.0 (which was ported away from boost).
33 +
34 + REVIEW: 129012
35 +
36 +diff --git a/src/runtime/kwalletd/kwalletwizard.cpp b/src/runtime/kwalletd/kwalletwizard.cpp
37 +index bf36f3b..cd52e54 100644
38 +--- a/src/runtime/kwalletd/kwalletwizard.cpp
39 ++++ b/src/runtime/kwalletd/kwalletwizard.cpp
40 +@@ -39,6 +39,7 @@
41 + #include <QDebug>
42 + #include <kmessagebox.h>
43 + #include <gpgme.h>
44 ++#include <boost/shared_ptr.hpp>
45 + #endif
46 +
47 + class PageIntro : public QWizardPage
48
49 diff --git a/kde-frameworks/kwallet/kwallet-5.26.0.ebuild b/kde-frameworks/kwallet/kwallet-5.26.0.ebuild
50 index a9f8152..b9a5850 100644
51 --- a/kde-frameworks/kwallet/kwallet-5.26.0.ebuild
52 +++ b/kde-frameworks/kwallet/kwallet-5.26.0.ebuild
53 @@ -35,6 +35,8 @@ DEPEND="${RDEPEND}
54 man? ( $(add_frameworks_dep kdoctools) )
55 "
56
57 +PATCHES=( "${FILESDIR}/${P}-missing-boost-header.patch" )
58 +
59 src_configure() {
60 local mycmakeargs=(
61 $(cmake-utils_use_find_package gpg Gpgme)