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

mplayer-svn, rage: cache svn fetched files in SOURCES_REPOSITORY
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 14 10:52:03 2010 +0200 (2010-05-14)
parents 9f229c23e1ba
children 8ea11f6c1d7c
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@4846 20 ./configure \
pascal@4846 21 --prefix=/usr \
pascal@4846 22 --sysconfdir=/etc \
pascal@4846 23 --mandir=/usr/share/man \
pascal@4846 24 --localstatedir=/var \
pascal@4846 25 --with-xorg-module-dir=/usr/lib/X11/modules \
pascal@4849 26 --enable-evcalibrate \
pascal@4846 27 $CONFIGURE_ARGS &&
pascal@4846 28 make &&
pascal@4846 29 make DESTDIR=$PWD/_pkg install
pascal@4846 30 }
pascal@4846 31
pascal@4846 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4846 33 genpkg_rules()
pascal@4846 34 {
pascal@4849 35 cp -a $_pkg/usr $fs
pascal@4849 36 rm -f $fs/usr/lib/X11/modules/input/*.la
pascal@4846 37 }
pascal@4846 38