From owner-svn-ports-all@freebsd.org Wed Apr 29 20:03:45 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4C4222C12D0; Wed, 29 Apr 2020 20:03:45 +0000 (UTC) (envelope-from wulf@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49C8bP1DQCz3GB7; Wed, 29 Apr 2020 20:03:45 +0000 (UTC) (envelope-from wulf@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2411AB01E; Wed, 29 Apr 2020 20:03:45 +0000 (UTC) (envelope-from wulf@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03TK3jBZ060583; Wed, 29 Apr 2020 20:03:45 GMT (envelope-from wulf@FreeBSD.org) Received: (from wulf@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03TK3jEh060582; Wed, 29 Apr 2020 20:03:45 GMT (envelope-from wulf@FreeBSD.org) Message-Id: <202004292003.03TK3jEh060582@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wulf set sender to wulf@FreeBSD.org using -f From: Vladimir Kondratyev Date: Wed, 29 Apr 2020 20:03:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r533392 - branches/2020Q2/x11-drivers/xf86-input-synaptics X-SVN-Group: ports-branches X-SVN-Commit-Author: wulf X-SVN-Commit-Paths: branches/2020Q2/x11-drivers/xf86-input-synaptics X-SVN-Commit-Revision: 533392 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Apr 2020 20:03:45 -0000 Author: wulf (src committer) Date: Wed Apr 29 20:03:44 2020 New Revision: 533392 URL: https://svnweb.freebsd.org/changeset/ports/533392 Log: MFH: r533211 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: ports-secteam (joneum) Modified: branches/2020Q2/x11-drivers/xf86-input-synaptics/Makefile Directory Properties: branches/2020Q2/ (props changed) Modified: branches/2020Q2/x11-drivers/xf86-input-synaptics/Makefile ============================================================================== --- branches/2020Q2/x11-drivers/xf86-input-synaptics/Makefile Wed Apr 29 19:51:48 2020 (r533391) +++ branches/2020Q2/x11-drivers/xf86-input-synaptics/Makefile Wed Apr 29 20:03:44 2020 (r533392) @@ -2,7 +2,7 @@ PORTNAME= xf86-input-synaptics PORTVERSION= 1.9.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= x11-drivers MAINTAINER= x11@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