summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authormarkd <markd>2014-02-01 01:54:59 +0000
committermarkd <markd>2014-02-01 01:54:59 +0000
commit787a2d7c9e3aea754e71c40c2b7c4839d7874d6a (patch)
tree69a5dad14835684c7a5fc0d476fc152c17389d87 /misc
parent9910845f6b5a4124359dc753d66864f94f301799 (diff)
downloadpkgsrc-787a2d7c9e3aea754e71c40c2b7c4839d7874d6a.tar.gz
While still using old (4.4) kmail don't expect akonadi id's for folders.
Diffstat (limited to 'misc')
-rw-r--r--misc/kdepimlibs4/distinfo3
-rw-r--r--misc/kdepimlibs4/patches/patch-kpimidentities_identity.cpp32
2 files changed, 34 insertions, 1 deletions
diff --git a/misc/kdepimlibs4/distinfo b/misc/kdepimlibs4/distinfo
index abf57f08cfe..9f8c7816168 100644
--- a/misc/kdepimlibs4/distinfo
+++ b/misc/kdepimlibs4/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.27 2013/11/07 12:35:41 markd Exp $
+$NetBSD: distinfo,v 1.28 2014/02/01 01:54:59 markd Exp $
SHA1 (kdepimlibs-4.11.3.tar.xz) = ca131d0e1d24dd2c03e40de8b7d482abe4eba755
RMD160 (kdepimlibs-4.11.3.tar.xz) = d1d3a534958fffa6a4f307ce34b1219ca4fd7e3f
@@ -11,5 +11,6 @@ SHA1 (patch-kimap_loginjob.cpp) = 8a0fe3c1779b981d9c9ca6cb34121219f2f97c9f
SHA1 (patch-kldap_ber.cpp) = 3656e006278db8fd4014f6e4a902f60703955871
SHA1 (patch-kldap_ber.h) = c4edcaedb7169e261892b973627b3265f1efd3df
SHA1 (patch-kmbox_CMakeLists.txt) = 924bd70a84c8af1c7d37501d4f718343a0aa7121
+SHA1 (patch-kpimidentities_identity.cpp) = 5a7d7e0c8edb7d2855c0e18bb6e9c596efbfe615
SHA1 (patch-kpimutils_CMakeLists.txt) = 540a866b7c9d9de35ed0613519320490d73258d8
SHA1 (patch-qgpgme_CMakeLists.txt) = 0860963f371a008f1d006dad58ea40329c358cfd
diff --git a/misc/kdepimlibs4/patches/patch-kpimidentities_identity.cpp b/misc/kdepimlibs4/patches/patch-kpimidentities_identity.cpp
new file mode 100644
index 00000000000..04afb23d334
--- /dev/null
+++ b/misc/kdepimlibs4/patches/patch-kpimidentities_identity.cpp
@@ -0,0 +1,32 @@
+$NetBSD: patch-kpimidentities_identity.cpp,v 1.1 2014/02/01 01:54:59 markd Exp $
+
+While still using old (4.4) kmail don't expect akonadi id's for folders.
+
+--- kpimidentities/identity.cpp.orig 2013-08-28 17:06:13.909954162 +0000
++++ kpimidentities/identity.cpp
+@@ -674,16 +674,16 @@ bool Identity::matchesEmailAddress( cons
+
+ QString Identity::verifyAkonadiId(const QString& str) const
+ {
+- if(str.isEmpty())
++// if(str.isEmpty())
+ return str;
+- bool ok = false;
+- const qlonglong val = str.toLongLong(&ok);
+- Q_UNUSED(val);
+- if(ok) {
+- return str;
+- } else {
+- return QString();
+- }
++// bool ok = false;
++// const qlonglong val = str.toLongLong(&ok);
++// Q_UNUSED(val);
++// if(ok) {
++// return str;
++// } else {
++// return QString();
++// }
+ }
+
+ void Identity::setAutocorrectionLanguage(const QString& language)