updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / xf86-input-egalax / xf86-input-egalax.install
blob72043806f6833df408ce3036dd0b6fb30e821e0d
1 _install_notes() {
2     echo
3     echo '---------------------------------------------------------------------------'
4     echo ' The following is a sample xorg.conf InputDevice section:'
5     echo 
6     echo ' Section "InputDevice"'
7     echo '     Identifier "EETI"'
8     echo '     Driver "egalax"'
9     echo '     Option "Device" "/dev/serio_raw"'
10     echo '     Option "Parameters" "/var/lib/eeti.param"'
11     echo '     Option "ScreenNo" "0"'
12     echo ' EndSection'
13     echo
14     echo '---------------------------------------------------------------------------'
15     echo ' The folowing is a sample xorg.conf ServerLayout section:'
16     echo
17     echo ' Section "ServerLayout"'
18     echo '     Identifier "Default Layout"'
19     echo '     InputDevice "EETI" "SendCoreEvents"'
20     echo ' EndSection'
21     echo
22     echo '---------------------------------------------------------------------------'
25 # $1: The new package version
26 post_install() {
27     _install_notes
30 post_upgrade() {
31     _install_notes
34 # $1: The old package version
35 pre_remove() {
36     if [ -e /var/lib/eeti.param ]; then
37         rm -f /var/lib/eeti.param
38     fi
40     echo
41     echo 'Be sure to remove the necessary entires from your xorg.conf file'
42     echo 'if you have defined an input device that uses the egalax driver'
43     echo