summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2013-11-01 01:22:48 +0000
committerwiz <wiz@pkgsrc.org>2013-11-01 01:22:48 +0000
commit6a11561fc777aaefc7ee1a40584b22f5d14dfa1b (patch)
tree401251b3c83b8f5df94c60630b0a4cfe9b75dc4d /x11
parentab0cfa0e3f19d708b97db77651069b5ea073a66a (diff)
downloadpkgsrc-6a11561fc777aaefc7ee1a40584b22f5d14dfa1b.tar.gz
Update to 1.8.0:
1.8.0: Consider this the NetBSD release, bringing the driver closer to sync with the NetBSD source directory. Non-BSD platforms should not be affected by these changes. Peter Hutterer (1): keyboard 1.8.0 Thomas Klausner (25): Added some missing keysyms to the ADB keymap. Map the Sun keyboard "help" key. Added keysym for Power keys. Added keysyms for extra keys on Sun Type 6 USB keyboard. Fixes for the ADB map. More ADB fixes. Add translation table for AT/PS2 pseudo XT scancodes. Use existing wscons USB keymap for WSKBD_TYPE_MAPLE on dreamcast. Add a couple mappings for keys found on Sun keyboards. Fix scan code 50 key on non-US-USB keyboards. Add a basic map for an LK201 keyboard. Set the version for the keyboard. Fix a shadowing warning, and add const. Recognize WSKBD_TYPE_MAPLE for dreamcast. Add default device for Protocol "wskbd". Add WSKBD_TYPE_LK201. Make OpenKeyboard() warn instead of error out. Fix wskbd handling when VT switching. Improve auto-detection. Move WSCONS case inside switch statement. Add some NetBSD feature detection code. Do not assume type in WS_*_MAP_SIZE macros. Factor out common code. Check open() return value. Whitespace fixes. 1.7.0: No big changes, but since we removed AM_MAINTAINER_MODE might as well bump the minor release number. Adam Jackson (1): configure: Drop AM_MAINTAINER_MODE Colin Walters (1): autogen.sh: Implement GNOME Build API Peter Hutterer (2): Use sigsafe logging for keyboard debug messages keyboard 1.7.0
Diffstat (limited to 'x11')
-rw-r--r--x11/xf86-input-keyboard/Makefile4
-rw-r--r--x11/xf86-input-keyboard/distinfo9
-rw-r--r--x11/xf86-input-keyboard/patches/patch-ac27
3 files changed, 6 insertions, 34 deletions
diff --git a/x11/xf86-input-keyboard/Makefile b/x11/xf86-input-keyboard/Makefile
index 862f7c6699e..ecc29ce9309 100644
--- a/x11/xf86-input-keyboard/Makefile
+++ b/x11/xf86-input-keyboard/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2013/05/16 05:51:53 richard Exp $
+# $NetBSD: Makefile,v 1.16 2013/11/01 01:22:48 wiz Exp $
-DISTNAME= xf86-input-keyboard-1.6.2
+DISTNAME= xf86-input-keyboard-1.8.0
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_XORG:=driver/}
EXTRACT_SUFX= .tar.bz2
diff --git a/x11/xf86-input-keyboard/distinfo b/x11/xf86-input-keyboard/distinfo
index 0b5641ddc3e..9aa3f4f2035 100644
--- a/x11/xf86-input-keyboard/distinfo
+++ b/x11/xf86-input-keyboard/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.8 2013/05/16 05:51:53 richard Exp $
+$NetBSD: distinfo,v 1.9 2013/11/01 01:22:48 wiz Exp $
-SHA1 (xf86-input-keyboard-1.6.2.tar.bz2) = 8a4f75076231b941011b7c129bd66afe8f261b9a
-RMD160 (xf86-input-keyboard-1.6.2.tar.bz2) = cf48f0d2fb4416ef56cbc3f4f3876d6c4de35181
-Size (xf86-input-keyboard-1.6.2.tar.bz2) = 322733 bytes
-SHA1 (patch-ac) = c72e321e49200f467996399a0c43c020a9fe8c47
+SHA1 (xf86-input-keyboard-1.8.0.tar.bz2) = 7728d733ef16d664a201868ecae5db3705cf8ef1
+RMD160 (xf86-input-keyboard-1.8.0.tar.bz2) = 19ce2bf7a0c7c245afce557990dc762d66575b3d
+Size (xf86-input-keyboard-1.8.0.tar.bz2) = 323838 bytes
diff --git a/x11/xf86-input-keyboard/patches/patch-ac b/x11/xf86-input-keyboard/patches/patch-ac
deleted file mode 100644
index 7dada0e76b6..00000000000
--- a/x11/xf86-input-keyboard/patches/patch-ac
+++ /dev/null
@@ -1,27 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2009/03/14 11:12:32 apb Exp $
-
-Changes from NetBSD xsrc/external/mit/xf86-input-keyboard/dist/\
-src/bsd_kbd.c
-
-----------------------------
-revision 1.4
-date: 2009/02/07 17:33:28; author: christos; state: Exp; lines: +7 -0
-Set the version for the keyboard too. From Patrick Welche
-----------------------------
-
---- src/bsd_kbd.c.orig 2008-12-04 00:01:46.000000000 +0200
-+++ src/bsd_kbd.c
-@@ -454,6 +454,13 @@ OpenKeyboard(InputInfoPtr pInfo)
- #ifdef WSCONS_SUPPORT
- if( prot == PROT_WSCONS) {
- pKbd->consType = WSCONS;
-+#ifdef WSKBDIO_SETVERSION
-+ int version = WSKBDIO_EVENT_VERSION;
-+ if (ioctl(pInfo->fd, WSKBDIO_SETVERSION, &version) == -1) {
-+ xf86Msg(X_WARNING, "%s: cannot set version\n", pInfo->name);
-+ return FALSE;
-+ }
-+#endif
- /* Find out keyboard type */
- if (ioctl(pInfo->fd, WSKBDIO_GTYPE, &(pKbd->wsKbdType)) == -1) {
- xf86Msg(X_ERROR, "%s: cannot get keyboard type", pInfo->name);