wok rev 22263

updated xorg-xf86-input-keyboard (1.7.0 -> 1.9.0)
author Hans-G?nter Theisgen
date Wed Nov 13 08:29:39 2019 +0100 (2019-11-13)
parents 47787b4928e9
children bf4253eaa18a
files xorg-xf86-input-keyboard/receipt
line diff
     1.1 --- a/xorg-xf86-input-keyboard/receipt	Wed Nov 13 00:20:13 2019 -0500
     1.2 +++ b/xorg-xf86-input-keyboard/receipt	Wed Nov 13 08:29:39 2019 +0100
     1.3 @@ -1,15 +1,16 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="xorg-xf86-input-keyboard"
     1.7 -VERSION="1.7.0"
     1.8 +VERSION="1.9.0"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="Xorg server keyboard 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-keyboard"
    1.16  TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.17 -WEB_SITE="https://www.x.org/"
    1.18 -WGET_URL="ftp://ftp.solnet.ch/mirror/x.org/pub/individual/driver/$TARBALL"
    1.19 +WGET_URL="$XORG_MIRROR/driver/$TARBALL"
    1.20  
    1.21  DEPENDS="xorg-server"
    1.22  BUILD_DEPENDS="xorg-server-dev"
    1.23 @@ -17,23 +18,21 @@
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -    cd $src
    1.28 -    ./configure \
    1.29 -    	--prefix=/usr \
    1.30 -    	--sysconfdir=/etc \
    1.31 -    	--mandir=/usr/share/man \
    1.32 -    	--localstatedir=/var \
    1.33 -    	--with-xorg-module-dir=/usr/lib/X11/modules \
    1.34 -    	$CONFIGURE_ARGS &&
    1.35 -    make &&
    1.36 -    make DESTDIR=$DESTDIR install
    1.37 +	./configure						\
    1.38 +		--prefix=/usr					\
    1.39 +		--sysconfdir=/etc				\
    1.40 +		--mandir=/usr/share/man				\
    1.41 +		--localstatedir=/var				\
    1.42 +		--with-xorg-module-dir=/usr/lib/X11/modules	\
    1.43 +		$CONFIGURE_ARGS &&
    1.44 +	make &&
    1.45 +	make DESTDIR=$DESTDIR install
    1.46  }
    1.47  
    1.48  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.49  genpkg_rules()
    1.50  {
    1.51  	mkdir -p $fs/usr/lib/X11/modules/input/
    1.52 -    cp -a $install/usr/lib/X11/modules/input/*.so \
    1.53 -    	$fs/usr/lib/X11/modules/input/
    1.54 +	cp -a $install/usr/lib/X11/modules/input/*.so \
    1.55 +		$fs/usr/lib/X11/modules/input/
    1.56  }
    1.57 -