Package evdev, libinput, libudev-zero, and mtdev. Update xf86-input-libinput.
This commit is contained in:
parent
dbf842ec8f
commit
c75e10a108
8
ports/official/extra/lib/c-libevdev/build
Executable file
8
ports/official/extra/lib/c-libevdev/build
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--disable-gcov
|
||||||
|
|
||||||
|
make
|
||||||
|
make DESTDIR="$1" install
|
1
ports/official/extra/lib/c-libevdev/checksums
Normal file
1
ports/official/extra/lib/c-libevdev/checksums
Normal file
@ -0,0 +1 @@
|
|||||||
|
63f4ea1489858a109080e0b40bd43e4e0903a1e12ea888d581db8c495747c2d0
|
2
ports/official/extra/lib/c-libevdev/depends
Normal file
2
ports/official/extra/lib/c-libevdev/depends
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
c-liblinux-headers make
|
||||||
|
c-python3 make
|
1
ports/official/extra/lib/c-libevdev/sources
Normal file
1
ports/official/extra/lib/c-libevdev/sources
Normal file
@ -0,0 +1 @@
|
|||||||
|
https://www.freedesktop.org/software/libevdev/libevdev-1.11.0.tar.xz
|
1
ports/official/extra/lib/c-libevdev/version
Normal file
1
ports/official/extra/lib/c-libevdev/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1.11.0 1
|
22
ports/official/extra/lib/c-libinput/build
Executable file
22
ports/official/extra/lib/c-libinput/build
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
export DESTDIR="$1"
|
||||||
|
|
||||||
|
pkg-config --exists libudev || {
|
||||||
|
printf 'udev (or libudev-zero) is required\n'
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
meson \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
-Ddebug-gui=false \
|
||||||
|
-Ddocumentation=false \
|
||||||
|
-Dtests=false \
|
||||||
|
-Dlibwacom=false \
|
||||||
|
. output
|
||||||
|
|
||||||
|
ninja -C output
|
||||||
|
ninja -C output install
|
1
ports/official/extra/lib/c-libinput/checksums
Normal file
1
ports/official/extra/lib/c-libinput/checksums
Normal file
@ -0,0 +1 @@
|
|||||||
|
f7e8425f185cadba5761d0a1dae6be041750d351163ffa04adc5b9a79a13c0ec
|
6
ports/official/extra/lib/c-libinput/depends
Normal file
6
ports/official/extra/lib/c-libinput/depends
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
c-libudev-zero
|
||||||
|
c-libevdev
|
||||||
|
c-liblinux-headers make
|
||||||
|
py-meson make
|
||||||
|
c-mtdev
|
||||||
|
c-pkgconf make
|
7
ports/official/extra/lib/c-libinput/post-install
Executable file
7
ports/official/extra/lib/c-libinput/post-install
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
cat <<EOF
|
||||||
|
|
||||||
|
NOTE: You also need [1mxf86-input-libinput[m.
|
||||||
|
|
||||||
|
EOF
|
1
ports/official/extra/lib/c-libinput/sources
Normal file
1
ports/official/extra/lib/c-libinput/sources
Normal file
@ -0,0 +1 @@
|
|||||||
|
https://gitlab.freedesktop.org/libinput/libinput/-/archive/1.25.0/libinput-1.25.0.tar.gz
|
1
ports/official/extra/lib/c-libinput/version
Normal file
1
ports/official/extra/lib/c-libinput/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1.25.0 1
|
4
ports/official/extra/lib/c-libudev-zero/build
Executable file
4
ports/official/extra/lib/c-libudev-zero/build
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
make PREFIX=/usr
|
||||||
|
make DESTDIR="$1" PREFIX=/usr install
|
1
ports/official/extra/lib/c-libudev-zero/checksums
Normal file
1
ports/official/extra/lib/c-libudev-zero/checksums
Normal file
@ -0,0 +1 @@
|
|||||||
|
23f1046f13403ec217665193e78dad6cdb0af54e105a9aaf8440a846e66a1d62
|
1
ports/official/extra/lib/c-libudev-zero/depends
Normal file
1
ports/official/extra/lib/c-libudev-zero/depends
Normal file
@ -0,0 +1 @@
|
|||||||
|
c-liblinux-headers make
|
1
ports/official/extra/lib/c-libudev-zero/sources
Normal file
1
ports/official/extra/lib/c-libudev-zero/sources
Normal file
@ -0,0 +1 @@
|
|||||||
|
https://github.com/illiliti/libudev-zero/archive/0.5.2.tar.gz
|
1
ports/official/extra/lib/c-libudev-zero/version
Normal file
1
ports/official/extra/lib/c-libudev-zero/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
0.5.2 1
|
7
ports/official/extra/sys/c-mtdev/build
Executable file
7
ports/official/extra/sys/c-mtdev/build
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr
|
||||||
|
|
||||||
|
make
|
||||||
|
make DESTDIR="$1" install
|
1
ports/official/extra/sys/c-mtdev/checksums
Normal file
1
ports/official/extra/sys/c-mtdev/checksums
Normal file
@ -0,0 +1 @@
|
|||||||
|
15d7b28da8ac71d8bc8c9287c2045fd174267bc740bec10cfda332dc1204e0e0
|
1
ports/official/extra/sys/c-mtdev/depends
Normal file
1
ports/official/extra/sys/c-mtdev/depends
Normal file
@ -0,0 +1 @@
|
|||||||
|
c-liblinux-headers make
|
1
ports/official/extra/sys/c-mtdev/sources
Normal file
1
ports/official/extra/sys/c-mtdev/sources
Normal file
@ -0,0 +1 @@
|
|||||||
|
https://bitmath.org/code/mtdev/mtdev-1.1.6.tar.bz2
|
1
ports/official/extra/sys/c-mtdev/version
Normal file
1
ports/official/extra/sys/c-mtdev/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1.1.6 1
|
@ -1,4 +1,3 @@
|
|||||||
|
c-libinput
|
||||||
libinput
|
|
||||||
c-pkgconf make
|
c-pkgconf make
|
||||||
c-xorg-server
|
c-xorg-server
|
||||||
|
Loading…
x
Reference in New Issue
Block a user