diff options
author | Emmanuel Vadot <manu@FreeBSD.org> | 2023-09-03 18:45:25 +0000 |
---|---|---|
committer | Emmanuel Vadot <manu@FreeBSD.org> | 2023-09-03 18:46:46 +0000 |
commit | 6d8216d213530fa83602affc508409f8fa855eb6 (patch) | |
tree | 59feebc996219db5320363c401b92aed2c3e92b5 /x11-drivers | |
parent | e1c732e1da80676cad7f322712c447541f96afa7 (diff) |
x11-drivers/xf86-input-synaptics: Always use EVDEV on FreeBSD
Remove the condition on $OSREL as all supported FreeBSD version should
default using evdev.
PR: 273537
Sponsored by: Beckhoff Automation GmbH & Co. KG
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-input-synaptics/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/x11-drivers/xf86-input-synaptics/Makefile b/x11-drivers/xf86-input-synaptics/Makefile index 907ea485b121..c21cd97cb345 100644 --- a/x11-drivers/xf86-input-synaptics/Makefile +++ b/x11-drivers/xf86-input-synaptics/Makefile @@ -1,6 +1,6 @@ PORTNAME= xf86-input-synaptics PORTVERSION= 1.9.1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -14,10 +14,8 @@ 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_FreeBSD_14= EVDEV -OPTIONS_DEFAULT=${OPTIONS_DEFAULT_${OPSYS}_${OSREL:R}} +OPTIONS_DEFAULT_FreeBSD= EVDEV +OPTIONS_DEFAULT=${OPTIONS_DEFAULT_${OPSYS}} EVDEV_DESC= Use evdev for input events (requires kernel support) EVDEV_CONFIGURE_ENV= BUILD_EVENTCOMM=yes |