wok rev 24737

updated libevdev and libevdev-dev (1.9.0 -> 1.12.0)
author Hans-G?nter Theisgen
date Wed Mar 16 09:39:00 2022 +0100 (2022-03-16)
parents af2087495a35
children 2c34d52f1eca
files libevdev-dev/receipt libevdev/description.txt libevdev/receipt
line diff
     1.1 --- a/libevdev-dev/receipt	Wed Mar 16 09:25:45 2022 +0100
     1.2 +++ b/libevdev-dev/receipt	Wed Mar 16 09:39:00 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libevdev-dev"
     1.7 -VERSION="1.9.0"
     1.8 +VERSION="1.12.0"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="Common functions for Xorg input drivers - development files."
    1.11  MAINTAINER="maintainer@slitaz.org"
    1.12 @@ -14,9 +14,5 @@
    1.13  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.14  genpkg_rules()
    1.15  {
    1.16 -	mkdir -p $fs/usr/lib
    1.17 -
    1.18 -	cp -a $install/usr/include		$fs/usr
    1.19 -	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.20 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.21 +	get_dev_files
    1.22  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libevdev/description.txt	Wed Mar 16 09:39:00 2022 +0100
     2.3 @@ -0,0 +1,7 @@
     2.4 +Libevdev is a wrapper library for evdev devices.
     2.5 +It moves the common tasks when dealing with evdev devices into a
     2.6 +library and provides a library interface to the callers, thus
     2.7 +avoiding erroneous ioctls, etc.
     2.8 +
     2.9 +The eventual goal is that libevdev wraps all ioctls available to
    2.10 +evdev devices, thus making direct access unnecessary.
     3.1 --- a/libevdev/receipt	Wed Mar 16 09:25:45 2022 +0100
     3.2 +++ b/libevdev/receipt	Wed Mar 16 09:39:00 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libevdev"
     3.7 -VERSION="1.9.0"
     3.8 +VERSION="1.12.0"
     3.9  CATEGORY="x-window"
    3.10  SHORT_DESC="Common functions for Xorg input drivers."
    3.11  MAINTAINER="maintainer@slitaz.org"
    3.12 @@ -10,7 +10,7 @@
    3.13  LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/x7driver.html#libevdev"
    3.14  
    3.15  TARBALL="$PACKAGE-$VERSION.tar.xz"
    3.16 -WGET_URL="http://www.freedesktop.org/software/libevdev/$TARBALL"
    3.17 +WGET_URL="https://www.freedesktop.org/software/libevdev/$TARBALL"
    3.18  
    3.19  BUILD_DEPENDS="check-dev python" # doxygen
    3.20  
    3.21 @@ -27,14 +27,12 @@
    3.22  		--disable-static	\
    3.23  		$CONFIGURE_ARGS &&
    3.24  	make &&
    3.25 -	make DESTDIR=$DESTDIR install
    3.26 +	make install DESTDIR=$DESTDIR
    3.27  }
    3.28  
    3.29  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.30  genpkg_rules()
    3.31  {
    3.32 -	mkdir -p $fs/usr/lib
    3.33 -
    3.34 -	cp -a $install/usr/bin		$fs/usr
    3.35 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.36 +	cook_copy_folders	bin
    3.37 +	cook_copy_files		*.so*
    3.38  }