svn commit: r533211 - head/x11-drivers/xf86-input-synaptics

Vladimir Kondratyev wulf at FreeBSD.org
Mon Apr 27 23:19:42 UTC 2020


Author: wulf (src committer)
Date: Mon Apr 27 23:19:42 2020
New Revision: 533211
URL: https://svnweb.freebsd.org/changeset/ports/533211

Log:
  x11-drivers/xf86-input-synaptics: enable EVDEV by default on FreeBSD 12+
  
  After switching default value of kern.evdev.rcpt_mask sysctl to 12 (r360126)
  some users get their touchpads broken as they have xf86-input-synaptics port
  installed. See e.g. PR/245948. This happens as xf86-input-synaptics has
  greater priority than libinput and effectively disables latter after
  installation. Workaround this issue with enabling EVDEV support in the port.
  
  PR:		245966
  Approved by:	x11 (zeising)

Modified:
  head/x11-drivers/xf86-input-synaptics/Makefile

Modified: head/x11-drivers/xf86-input-synaptics/Makefile
==============================================================================
--- head/x11-drivers/xf86-input-synaptics/Makefile	Mon Apr 27 23:15:14 2020	(r533210)
+++ head/x11-drivers/xf86-input-synaptics/Makefile	Mon Apr 27 23:19:42 2020	(r533211)
@@ -2,7 +2,7 @@
 
 PORTNAME=	xf86-input-synaptics
 PORTVERSION=	1.9.1
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	x11-drivers
 
 MAINTAINER=	x11 at FreeBSD.org
@@ -15,6 +15,9 @@ USES=		pathfix xorg xorg-cat:driver
 USE_XORG=	x11 xtst
 
 OPTIONS_DEFINE=	EVDEV
+OPTIONS_DEFAULT_FreeBSD_12=	EVDEV
+OPTIONS_DEFAULT_FreeBSD_13=	EVDEV
+OPTIONS_DEFAULT=${OPTIONS_DEFAULT_${OPSYS}_${OSREL:R}}
 EVDEV_DESC=	Use evdev for input events (requires kernel support)
 
 EVDEV_CONFIGURE_ENV=	BUILD_EVENTCOMM=yes


More information about the svn-ports-head mailing list