wok view xorg-xf86-input-synaptics/receipt @ rev 7924

Removed arch patches for GConf. There not working and i don't think we need them.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jan 09 22:30:39 2011 +0000 (2011-01-09)
parents 2e8e275dfc90
children c514cc4854d8
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-synaptics"
4 VERSION="1.3.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg synaptics driver."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg"
9 BUILD_DEPENDS="xorg-server-dev xorg-xproto \
10 pixman-dev xorg-libpciaccess-dev xorg-randrproto \
11 xorg-inputproto libxcb-dev xorg-xextproto"
12 SOURCE="xf86-input-synaptics"
13 TARBALL="$SOURCE-$VERSION.tar.bz2"
14 WEB_SITE="http://www.x.org/"
15 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --mandir=/usr/share/man \
25 --localstatedir=/var \
26 --with-xorg-module-dir=/usr/lib/X11/modules \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib/X11/modules/input/
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/lib/X11/modules/input/*.so \
38 $fs/usr/lib/X11/modules/input/
39 mkdir -p $fs/etc/X11/xorg.conf.d
40 cp -a stuff/*.conf $fs/etc/X11/xorg.conf.d
41 }