wok-6.x diff xorg-xf86-input-evdev/receipt @ rev 24057
Up intel-microcode (20210216), lzsa (1.3.7), xrdp (0.9.16), xorgxrdp (0.2.16)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 08 14:31:15 2021 +0000 (2021-06-08) |
parents | 814c58f64f83 |
children | 5d79829fa876 |
line diff
1.1 --- a/xorg-xf86-input-evdev/receipt Thu Aug 09 12:16:16 2018 +0200 1.2 +++ b/xorg-xf86-input-evdev/receipt Tue Jun 08 14:31:15 2021 +0000 1.3 @@ -1,23 +1,26 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="xorg-xf86-input-evdev" 1.7 -VERSION="2.7.0" 1.8 +VERSION="2.10.6" 1.9 CATEGORY="x-window" 1.10 SHORT_DESC="Xorg input evdev driver." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="MIT" 1.13 +WEB_SITE="https://www.x.org/wiki/" 1.14 + 1.15 SOURCE="xf86-input-evdev" 1.16 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.17 -WEB_SITE="https://www.x.org/" 1.18 WGET_URL="$XORG_MIRROR/driver/$TARBALL" 1.19 -HOST_ARCH="i486 arm" 1.20 1.21 # We can use xorg-server-light with evdev and vesa driver. 1.22 #DEPENDS="xorg-server" 1.23 -BUILD_DEPENDS="xorg-server-dev udev-dev" 1.24 +DEPENDS="libevdev mtdev" 1.25 +BUILD_DEPENDS="libevdev-dev mtdev-dev udev-dev xorg-server-dev" 1.26 1.27 MODS='/usr/lib/X11/modules' 1.28 1.29 +HOST_ARCH="i486 arm" 1.30 + 1.31 # ARM use build system xorg-server-dev or manually install it in sysroot 1.32 case "$ARCH" in 1.33 arm) BUILD_DEPENDS="udev-dev" ;; 1.34 @@ -26,19 +29,21 @@ 1.35 # Rules to configure and make the package. 1.36 compile_rules() 1.37 { 1.38 - ./configure \ 1.39 - --sysconfdir=/etc \ 1.40 - --localstatedir=/var \ 1.41 - --with-xorg-module-dir=$MODS \ 1.42 + ./configure \ 1.43 + --sysconfdir=/etc \ 1.44 + --localstatedir=/var \ 1.45 + --with-xorg-module-dir=$MODS \ 1.46 $CONFIGURE_ARGS && 1.47 - make && make install 1.48 + make && 1.49 + make install 1.50 } 1.51 1.52 # Rules to gen a SliTaz package suitable for Tazpkg. 1.53 genpkg_rules() 1.54 { 1.55 - mkdir -p ${fs}${MODS}/input $fs/etc/X11/xorg.conf.d 1.56 - cp -a ${install}${MODS}/input/*.so ${fs}${MODS}/input 1.57 - cp -a $stuff/*evdev.conf $fs/etc/X11/xorg.conf.d 1.58 + mkdir -p ${fs}${MODS}/input 1.59 + mkdir -p $fs/etc/X11/xorg.conf.d 1.60 + 1.61 + cp -a ${install}${MODS}/input/*.so ${fs}${MODS}/input 1.62 + cp -a $stuff/*evdev.conf $fs/etc/X11/xorg.conf.d 1.63 } 1.64 -