~chasedouglas/ubuntu/maverick/xserver-xorg-input-evdev/multitouch

« back to all changes in this revision

Viewing changes to debian/xserver-xorg-input-evdev.postinst.in

  • Committer: Bazaar Package Importer
  • Author(s): Brice Goglin, Timo Aaltonen, Julien Cristau, Brice Goglin
  • Date: 2009-12-12 17:56:22 UTC
  • mfrom: (1.1.16 upstream) (24.1.4 experimental)
  • Revision ID: james.westby@ubuntu.com-20091212175622-30sg1zjov8xntsb2
Tags: 1:2.3.2-1
[ Timo Aaltonen ]
* Build against Xserver 1.7.
* Run udevadm trigger on postinst, and depend on udev [linux-any].
* Add xserver-xorg-input-evdev-dev for the header and .pc files.

[ Julien Cristau ]
* 65-xorg-evdev.rules: don't ignore change events.

[ Brice Goglin ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
THIS_PACKAGE=xserver-xorg-input-evdev
 
6
THIS_SCRIPT=postinst
 
7
 
 
8
#INCLUDE_SHELL_LIB#
 
9
 
 
10
case "$1" in
 
11
  configure)
 
12
  if dpkg --compare-versions "$2" lt 1:2.3.1-2; then
 
13
    if [ `uname -s` = "Linux" ]; then
 
14
      udevadm trigger --subsystem-match=input --action=change
 
15
    fi
 
16
  fi
 
17
esac
 
18
 
 
19
#DEBHELPER#
 
20
 
 
21
exit 0
 
22
 
 
23
# vim:set ai et sw=2 ts=2 tw=80: