wok view xorg-xf86-input-evdev/receipt @ rev 7753

fcitx:change default config
author fireflyoo <lufeng369@gmail.com>
date Tue Dec 21 15:30:57 2010 +0800 (2010-12-21)
parents 4aebfaf3d1b1
children c514cc4854d8
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-evdev"
4 VERSION="2.5.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg input evdev driver."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg"
9 BUILD_DEPENDS="xorg-server xorg-server-dev xorg-xproto pkg-config xorg-dev xorg-inputproto xorg-xextproto xorg-randrproto"
10 SOURCE="xf86-input-evdev"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --localstatedir=/var \
24 --with-xorg-module-dir=/usr/lib/X11/modules \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib/X11/modules/input/
34 cp -a $_pkg/usr/lib/X11/modules/input/*.so \
35 $fs/usr/lib/X11/modules/input/
36 mkdir -p $fs/etc/X11/xorg.conf.d
37 cp -a stuff/*evdev.conf $fs/etc/X11/xorg.conf.d
38 }