summaryrefslogtreecommitdiff
path: root/x11/vte029
diff options
context:
space:
mode:
authorahoka <ahoka@pkgsrc.org>2014-07-27 20:45:10 +0000
committerahoka <ahoka@pkgsrc.org>2014-07-27 20:45:10 +0000
commitd1297e4667ee21736fa91bcc60a8fa0b0205ebe9 (patch)
treec5292dc1b528013622620843808e6b0d0b81a483 /x11/vte029
parentdcc19b78f3b7c3de997ce9e1648763876f11999f (diff)
downloadpkgsrc-d1297e4667ee21736fa91bcc60a8fa0b0205ebe9.tar.gz
Properly handle the alt key in terminals.
Patch from: https://bugzilla.gnome.org/show_bug.cgi?id=663779 Fixes PR pkg/48806
Diffstat (limited to 'x11/vte029')
-rw-r--r--x11/vte029/Makefile4
-rw-r--r--x11/vte029/distinfo3
-rw-r--r--x11/vte029/patches/patch-altmeta74
3 files changed, 78 insertions, 3 deletions
diff --git a/x11/vte029/Makefile b/x11/vte029/Makefile
index 459f5285f53..beaaefea47e 100644
--- a/x11/vte029/Makefile
+++ b/x11/vte029/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.13 2014/05/05 00:48:33 ryoon Exp $
+# $NetBSD: Makefile,v 1.14 2014/07/27 20:45:10 ahoka Exp $
#
.include "Makefile.common"
-PKGREVISION= 11
+PKGREVISION= 12
CATEGORIES= x11
MAINTAINER= pkgsrc-users@NetBSD.org
diff --git a/x11/vte029/distinfo b/x11/vte029/distinfo
index 0d0af2798b8..5b98e415511 100644
--- a/x11/vte029/distinfo
+++ b/x11/vte029/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.2 2013/01/26 22:25:00 wiz Exp $
+$NetBSD: distinfo,v 1.3 2014/07/27 20:45:10 ahoka Exp $
SHA1 (vte-0.32.2.tar.xz) = a58569a99ac06a240bdda3ec7353f2626145852d
RMD160 (vte-0.32.2.tar.xz) = 4892fca462a0baf3c97564a9d8cead7b35f75d4c
@@ -9,6 +9,7 @@ SHA1 (patch-ac) = 3b357bf9d1bca93c24f5b09dae1adec82323be0d
SHA1 (patch-af) = 69ea7e022f6c495c3c9af681d05644b9d70e7bdc
SHA1 (patch-ah) = 28cee2661439d7d6f1959ebf3c7d1b7b3fe0a764
SHA1 (patch-ai) = 986dd7c2a5778c9c35100901cfaa25acd0cbdc32
+SHA1 (patch-altmeta) = 2ff444350c473630a9040c2747859ba7a3a7e30b
SHA1 (patch-configure.in) = 569e21e10900d4e1737836ea2e5c5f22cb8b3025
SHA1 (patch-gnome-pty-helper_Makefile.am) = d1964c774d192290eade04d7dee88b90ec05d59e
SHA1 (patch-gnome-pty-helper_configure.in) = 05fa680d29587405d9ea7b3be75b85a467200d89
diff --git a/x11/vte029/patches/patch-altmeta b/x11/vte029/patches/patch-altmeta
new file mode 100644
index 00000000000..0f5895afbf2
--- /dev/null
+++ b/x11/vte029/patches/patch-altmeta
@@ -0,0 +1,74 @@
+From 180dcc578e13c6096e277fb853e7162db640f207 Mon Sep 17 00:00:00 2001
+From: Alexandre Rostovtsev <tetromino@gentoo.org>
+Date: Tue, 15 Nov 2011 03:06:40 -0500
+Subject: [PATCH] Map both gdk's Meta and Alt to vte's Meta for >=gtk+-3.2.2
+ compatibility
+
+Also, since VTE_META_MASK is now a mask with multiple bits set, code that
+compares gdk key modifiers to VTE_META_MASK by numerical equality is no
+longer guaranteed to work. Therefore, for such comparisons a new function,
+vte_keymap_fixup_modifiers, is introduced; it ensures that if any bits
+matching matching VTE_META_MASK are set, then all are set.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=663779
+---
+ src/keymap.c | 15 +++++++++++++--
+ src/keymap.h | 2 +-
+ 2 files changed, 14 insertions(+), 3 deletions(-)
+
+diff --git a/src/keymap.c b/src/keymap.c
+index 9a21669..95b4c5b 100644
+--- src/keymap.c
++++ src/keymap.c
+@@ -990,6 +990,17 @@ static const struct _vte_keymap_group {
+ {GDK_KEY (F35), _vte_keymap_GDK_F35},
+ };
+
++/* Restrict modifiers to the specified mask and ensure that VTE_META_MASK,
++ * despite being a compound mask, is treated as indivisible. */
++GdkModifierType
++_vte_keymap_fixup_modifiers(GdkModifierType modifiers,
++ GdkModifierType mask)
++{
++ if (modifiers & VTE_META_MASK)
++ modifiers |= VTE_META_MASK;
++ return modifiers & mask;
++}
++
+ /* Map the specified keyval/modifier setup, dependent on the mode, to either
+ * a literal string or a capability name. */
+ void
+@@ -1104,7 +1115,7 @@ _vte_keymap_map(guint keyval,
+ } else {
+ fkey_mode = fkey_default;
+ }
+- modifiers &= (GDK_SHIFT_MASK | GDK_CONTROL_MASK | VTE_META_MASK | VTE_NUMLOCK_MASK);
++ modifiers = _vte_keymap_fixup_modifiers(modifiers, GDK_SHIFT_MASK | GDK_CONTROL_MASK | VTE_META_MASK | VTE_NUMLOCK_MASK);
+
+ /* Search for the conditions. */
+ for (i = 0; entries[i].normal_length || entries[i].special[0]; i++)
+@@ -1375,7 +1386,7 @@ _vte_keymap_key_add_key_modifiers(guint keyval,
+ return;
+ }
+
+- switch (modifiers & significant_modifiers) {
++ switch (_vte_keymap_fixup_modifiers(modifiers, significant_modifiers)) {
+ case 0:
+ modifier = 0;
+ break;
+diff --git a/src/keymap.h b/src/keymap.h
+index 243e22e..21d9b8e 100644
+--- src/keymap.h
++++ src/keymap.h
+@@ -27,7 +27,7 @@
+
+ G_BEGIN_DECLS
+
+-#define VTE_META_MASK GDK_META_MASK
++#define VTE_META_MASK (GDK_META_MASK | GDK_MOD1_MASK)
+ #define VTE_NUMLOCK_MASK GDK_MOD2_MASK
+
+ /* Map the specified keyval/modifier setup, dependent on the mode, to either
+--
+1.7.8.rc3
+