# HG changeset patch # User Christophe Lincoln # Date 1242408490 -7200 # Node ID 4052faae304da30b4fa8d45b1edc751bc52ca965 # Parent dd1933864dccfd51b311910250da56468ab010fe Add Xorg input driver elographics (Elo touchscreen) diff -r dd1933864dcc -r 4052faae304d xorg-xf86-input-elographics/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xf86-input-elographics/receipt Fri May 15 19:28:10 2009 +0200 @@ -0,0 +1,37 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xf86-input-elographics" +VERSION="1.2.3" +CATEGORY="x-window" +SHORT_DESC="Xorg elographics driver." +MAINTAINER="pankso@slitaz.org" +DEPENDS="xorg" +BUILD_DEPENDS="xorg-server-dev xorg-xproto" +SOURCE="xf86-input-elographics" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.x.org/" +WGET_URL="$XORG_MIRROR/driver/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --with-xorg-module-dir=/usr/lib/X11/modules \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/X11/modules/input/ + cp -a $_pkg/usr/lib/X11/modules/input/*.so \ + $fs/usr/lib/X11/modules/input/ +} +