* fixes build against gcc14 (boo#1221710) OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xf86-input-evdev?expand=0&rev=81
106 lines
3.5 KiB
RPMSpec
106 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package xf86-input-evdev
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: xf86-input-evdev
|
|
Version: 2.10.6
|
|
Release: 0
|
|
Summary: Generic Linux input driver for the Xorg X server
|
|
License: MIT
|
|
Group: System/X11/Servers/XF86_4
|
|
URL: https://xorg.freedesktop.org/
|
|
Source0: https://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
|
|
Source1: https://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2.sig
|
|
Source2: %{name}.keyring
|
|
Source3: 11-evdev.conf
|
|
Source4: 50-elotouch.conf
|
|
Patch1: u_01-Add-a-kiosk-mode-for-touch-screens.patch
|
|
Patch2: u_02-Add-delay-between-button-press-and-release-to-kiosk-mode.patch
|
|
Patch3: u_gcc14fix.patch
|
|
# Next three lines are needed for u_01-Add-a-kiosk-mode-for-touch-screens.patch
|
|
BuildRequires: autoconf >= 2.60
|
|
BuildRequires: automake
|
|
BuildRequires: libtool
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(inputproto)
|
|
BuildRequires: pkgconfig(libevdev) >= 0.4
|
|
BuildRequires: pkgconfig(libudev)
|
|
BuildRequires: pkgconfig(mtdev)
|
|
BuildRequires: pkgconfig(xorg-macros) >= 1.8
|
|
BuildRequires: pkgconfig(xorg-server)
|
|
BuildRequires: pkgconfig(xproto)
|
|
Requires: udev
|
|
Supplements: xorg-x11-server
|
|
# This was part of the xorg-x11-driver-input package up to version 7.6
|
|
Conflicts: xorg-x11-driver-input <= 7.6
|
|
Provides: x11-input-mtrack
|
|
Obsoletes: x11-input-mtrack
|
|
ExcludeArch: s390 s390x
|
|
%{x11_abi_xinput_req}
|
|
|
|
%description
|
|
evdev is an Xorg input driver for Linux's generic event devices. It
|
|
therefore supports all input devices that the kernel knows about,
|
|
including most mice, keyboards, tablets and touchscreens.
|
|
|
|
%package devel
|
|
Summary: Generic Linux input driver for the Xorg X server -- Development Files
|
|
Group: Development/Libraries/X11
|
|
Requires: %{name} = %{version}
|
|
|
|
%description devel
|
|
evdev is an Xorg input driver for Linux's generic event devices. It
|
|
therefore supports all input devices that the kernel knows about,
|
|
including most mice, keyboards, tablets and touchscreens.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
# Once u_01-Add-a-kiosk-mode-for-touch-screens.patch is removed this is no longer needed
|
|
%{_bindir}/autoreconf -v --install --force
|
|
%configure
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
install -D -m 644 %{SOURCE3} %{SOURCE4} %{buildroot}/%{_datadir}/X11/xorg.conf.d/
|
|
|
|
%post
|
|
# re-plug the input devices
|
|
udevadm trigger --subsystem-match=input --action=change || :
|
|
|
|
%postun
|
|
# re-plug the input devices
|
|
udevadm trigger --subsystem-match=input --action=change || :
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc README
|
|
%dir %{_datadir}/X11/xorg.conf.d
|
|
%{_datadir}/X11/xorg.conf.d/*.conf
|
|
%dir %{_libdir}/xorg/modules/input
|
|
%{_libdir}/xorg/modules/input/evdev_drv.so
|
|
%{_mandir}/man4/evdev.4%{?ext_man}
|
|
|
|
%files devel
|
|
%{_includedir}/xorg/evdev-properties.h
|
|
%{_libdir}/pkgconfig/xorg-evdev.pc
|
|
|
|
%changelog
|