summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorobache <obache>2013-06-16 02:01:54 +0000
committerobache <obache>2013-06-16 02:01:54 +0000
commit94cd80598293731328e5079ef5c52689e7e057b8 (patch)
treee21e71165a46ec6d44ad10e2538b93efa788b1cd /x11
parent278dd1883c7e2d0b925444af2746f621fd716ea3 (diff)
downloadpkgsrc-94cd80598293731328e5079ef5c52689e7e057b8.tar.gz
Update xf86-input-mouse to 1.9.0.
while here, revive minimal pert of patches lost during update to 1.8.1, for WSMouse support of NetBSD. [ANNOUNCE] xf86-input-mouse 1.9.0 No big changes, but since we removed maintainer mode we might as well bump the minor version. Adam Jackson (1): configure: Drop AM_MAINTAINER_MODE Colin Walters (1): autogen.sh: Implement GNOME Build API Peter Hutterer (3): Fix compilation error with EXTMOUSEDEBUG on Use signal-safe logging if available mouse 1.9.0
Diffstat (limited to 'x11')
-rw-r--r--x11/xf86-input-mouse/Makefile4
-rw-r--r--x11/xf86-input-mouse/distinfo9
-rw-r--r--x11/xf86-input-mouse/patches/patch-src_bsd__mouse.c15
3 files changed, 22 insertions, 6 deletions
diff --git a/x11/xf86-input-mouse/Makefile b/x11/xf86-input-mouse/Makefile
index e6f766a08f0..70c6a46b404 100644
--- a/x11/xf86-input-mouse/Makefile
+++ b/x11/xf86-input-mouse/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2013/05/16 05:53:59 richard Exp $
+# $NetBSD: Makefile,v 1.19 2013/06/16 02:01:54 obache Exp $
-DISTNAME= xf86-input-mouse-1.8.1
+DISTNAME= xf86-input-mouse-1.9.0
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_XORG:=driver/}
EXTRACT_SUFX= .tar.bz2
diff --git a/x11/xf86-input-mouse/distinfo b/x11/xf86-input-mouse/distinfo
index 57578746c01..6084f2d87a6 100644
--- a/x11/xf86-input-mouse/distinfo
+++ b/x11/xf86-input-mouse/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.13 2013/05/16 05:53:59 richard Exp $
+$NetBSD: distinfo,v 1.14 2013/06/16 02:01:54 obache Exp $
-SHA1 (xf86-input-mouse-1.8.1.tar.bz2) = e00e825c9506b7b9c31bf4b8a3a609df8ef408c1
-RMD160 (xf86-input-mouse-1.8.1.tar.bz2) = e93735b6fc0d6ca018035c888a50738902843da8
-Size (xf86-input-mouse-1.8.1.tar.bz2) = 352034 bytes
+SHA1 (xf86-input-mouse-1.9.0.tar.bz2) = 5f9e5f450100252efa4f8b074fbb262c42811d46
+RMD160 (xf86-input-mouse-1.9.0.tar.bz2) = 710d721f91018a25068396248315c1f933ee31db
+Size (xf86-input-mouse-1.9.0.tar.bz2) = 353339 bytes
+SHA1 (patch-src_bsd__mouse.c) = 8191852ac5d28f17a7aaa1c32859fe27b6211ce8
diff --git a/x11/xf86-input-mouse/patches/patch-src_bsd__mouse.c b/x11/xf86-input-mouse/patches/patch-src_bsd__mouse.c
new file mode 100644
index 00000000000..9477cb7e0af
--- /dev/null
+++ b/x11/xf86-input-mouse/patches/patch-src_bsd__mouse.c
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_bsd__mouse.c,v 1.1 2013/06/16 02:05:20 obache Exp $
+
+* enable MSE_MISC on netbsd as well, otherwise we can't find WSMouse.
+
+--- src/bsd_mouse.c.orig 2012-10-08 01:40:07.000000000 +0000
++++ src/bsd_mouse.c
+@@ -98,7 +98,7 @@ static int
+ SupportedInterfaces(void)
+ {
+ #if defined(__NetBSD__)
+- return MSE_SERIAL | MSE_BUS | MSE_PS2 | MSE_AUTO;
++ return MSE_SERIAL | MSE_BUS | MSE_PS2 | MSE_AUTO | MSE_MISC;
+ #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
+ return MSE_SERIAL | MSE_BUS | MSE_PS2 | MSE_AUTO | MSE_MISC;
+ #else