wok annotate xorg-xf86-input-evtouch/receipt @ rev 6641

xorg-xf86-input-evtouch: update to new xorg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 10 22:25:46 2010 +0200 (2010-10-10)
parents d7c87b8a2a34
children c514cc4854d8
rev   line source
pascal@4846 1 # SliTaz package receipt.
pascal@4846 2
pascal@4846 3 PACKAGE="xorg-xf86-input-evtouch"
pascal@4846 4 VERSION="0.8.8"
pascal@4846 5 CATEGORY="x-window"
pascal@4846 6 SHORT_DESC="Xorg server protocol."
pascal@4846 7 MAINTAINER="pankso@slitaz.org"
pascal@4846 8 DEPENDS="xorg"
pascal@4883 9 BUILD_DEPENDS="xorg-server xorg-xproto pkg-config xorg-server-dev \
pascal@4883 10 xorg-inputproto xorg-randrproto"
pascal@4846 11 SOURCE="xf86-input-evtouch"
pascal@4846 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@4846 13 WEB_SITE="http://www.x.org/"
pascal@4846 14 WGET_URL="http://www.conan.de/touchscreen/$TARBALL"
pascal@4846 15
pascal@4846 16 # Rules to configure and make the package.
pascal@4846 17 compile_rules()
pascal@4846 18 {
pascal@4846 19 cd $src
pascal@6641 20 grep -qs dummy evtouch.c && patch -p1 < ../stuff/evtouch.u
pascal@4846 21 ./configure \
pascal@4846 22 --prefix=/usr \
pascal@4846 23 --sysconfdir=/etc \
pascal@4846 24 --mandir=/usr/share/man \
pascal@4846 25 --localstatedir=/var \
pascal@4846 26 --with-xorg-module-dir=/usr/lib/X11/modules \
pascal@4849 27 --enable-evcalibrate \
pascal@4846 28 $CONFIGURE_ARGS &&
pascal@4846 29 make &&
pascal@4846 30 make DESTDIR=$PWD/_pkg install
pascal@4846 31 }
pascal@4846 32
pascal@4846 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4846 34 genpkg_rules()
pascal@4846 35 {
pascal@4849 36 cp -a $_pkg/usr $fs
pascal@4849 37 rm -f $fs/usr/lib/X11/modules/input/*.la
pascal@4846 38 }
pascal@4846 39