summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorjoerg <joerg>2016-12-15 23:58:18 +0000
committerjoerg <joerg>2016-12-15 23:58:18 +0000
commit3aa17c488ea1dc80d6881f0c80cafcb4dd260ee5 (patch)
tree71d2f1976356179982848d1189506d0b4a5b5c2a /misc
parentd813647e3e11a939537fe8db9a8e53ca018cd5aa (diff)
downloadpkgsrc-3aa17c488ea1dc80d6881f0c80cafcb4dd260ee5.tar.gz
Correct flag use. Bump revision.
Diffstat (limited to 'misc')
-rw-r--r--misc/rocs/Makefile4
-rw-r--r--misc/rocs/distinfo3
-rw-r--r--misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp15
3 files changed, 19 insertions, 3 deletions
diff --git a/misc/rocs/Makefile b/misc/rocs/Makefile
index 00aadb1072e..8a311a30c31 100644
--- a/misc/rocs/Makefile
+++ b/misc/rocs/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.41 2016/10/07 18:26:03 adam Exp $
+# $NetBSD: Makefile,v 1.42 2016/12/15 23:58:18 joerg Exp $
DISTNAME= rocs-${_KDE_VERSION}
-PKGREVISION= 6
+PKGREVISION= 7
CATEGORIES= misc
COMMENT= KDE graph theory IDE
diff --git a/misc/rocs/distinfo b/misc/rocs/distinfo
index 962003a92fd..3907572807e 100644
--- a/misc/rocs/distinfo
+++ b/misc/rocs/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.12 2016/05/07 10:06:40 joerg Exp $
+$NetBSD: distinfo,v 1.13 2016/12/15 23:58:18 joerg Exp $
SHA1 (rocs-4.14.3.tar.xz) = a6fac0cee375f8bdb8c9241bde4bf9dda0f38704
RMD160 (rocs-4.14.3.tar.xz) = c148e7720239043b21d112ac32bfa47ca88accd0
@@ -6,3 +6,4 @@ SHA512 (rocs-4.14.3.tar.xz) = f0c1d35fcd17473459a3f63ce731c3cf27da51d64b53383f1c
Size (rocs-4.14.3.tar.xz) = 1146328 bytes
SHA1 (patch-RocsCore_DataStructures_Graph_GraphStructure.cpp) = 21b7e84ba223e120e01fd8eebf2393db28d23152
SHA1 (patch-RocsCore_LoadSave_Plugins_CMakeLists.txt) = ae4d15f9aa8fc2f19715db544a15ddbc2f0d98fb
+SHA1 (patch-VisualEditor_Actions_SelectMoveHandAction.cpp) = cb112a7f0dba8f3b9036e9e3b572a977aa07a0c1
diff --git a/misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp b/misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp
new file mode 100644
index 00000000000..86624aa1de5
--- /dev/null
+++ b/misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp
@@ -0,0 +1,15 @@
+$NetBSD: patch-VisualEditor_Actions_SelectMoveHandAction.cpp,v 1.1 2016/12/15 23:58:18 joerg Exp $
+
+QFlags are for ORing together, not ANDing.
+
+--- VisualEditor/Actions/SelectMoveHandAction.cpp.orig 2016-12-15 15:40:54.181414380 +0000
++++ VisualEditor/Actions/SelectMoveHandAction.cpp
+@@ -84,7 +84,7 @@ bool SelectMoveHandAction::executePress(
+
+ if (_graphScene->items().count() > 600) { // 5! + 25 items on screen
+ _graphScene->views().at(0)->setRenderHints(QPainter::Antialiasing
+- & QPainter::TextAntialiasing);
++ | QPainter::TextAntialiasing);
+ }
+ return true;
+ }