~jderose/ubuntu/raring/xserver-xorg-input-synaptics/clickpad

« back to all changes in this revision

Viewing changes to man/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers, Cyril Brulebois, Christopher James Halse Rogers
  • Date: 2011-01-25 20:01:58 UTC
  • mfrom: (1.2.2 upstream) (2.1.4 experimental)
  • Revision ID: james.westby@ubuntu.com-20110125200158-9qpvmzuexogs7a5n
Tags: 1.3.99+git20110116.0e27ce3a-0ubuntu1
[ Cyril Brulebois ]
* Switch to Architecture: any, adding armhf support (Closes: #604672).

[ Christopher James Halse Rogers ]
* Merge from (unreleased) Debian experimental.  Remaining Ubuntu changes:
  - Split out our synaptics quirks into 51-synaptics-quirks.conf
  - Add the udev rule back for tagging specific machines to be quirked
  - Trigger udev in postinst to pick up udev rules
  - add Depend: on udev
  - 103_enable_cornertapping.patch: Enable right/middle clicks by
    tapping in the bottom- and top-right corners.
  - 104_always_enable_tapping.patch: Enable tapping regardless of the
    presence of physical buttons.
  - 106_always_enable_vert_edge_scroll.patch: Enable vertical edge
    tapping by default even if we enable two-finger scrolling as well.
  - 114_jumpy_cursor_first_part.patch: Adds a property to enable filtering
    jumpy cursor problems on some machines.
  - Specify ‘ubuntu’ branch in gbp.conf
  - 115_evdev_only.patch: Only bind to /dev/input/event* evdev devices
    (LP 624985)
* Update to git snapshot to fix build against Xserver 1.10 input API
* debian/patches/01-synaptics-dont-grab-if-not-on-current-VT.patch:
  - Refresh for new upstream.
* debian/patches/114_jumpy_cursor_first_part.patch:
  - Refresh for new upstream.  Drop the multi-touch chunk of the quirk,
    as that is handled by upstream commit a6ca4d25.
  

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# $Id$
2
2
#
3
3
# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
4
 
5
 
# Permission to use, copy, modify, distribute, and sell this software and its
6
 
# documentation for any purpose is hereby granted without fee, provided that
7
 
# the above copyright notice appear in all copies and that both that
8
 
# copyright notice and this permission notice appear in supporting
9
 
# documentation.
10
 
11
 
# The above copyright notice and this permission notice shall be included
12
 
# in all copies or substantial portions of the Software.
13
 
14
 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15
 
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
 
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
 
# IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
18
 
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19
 
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20
 
# OTHER DEALINGS IN THE SOFTWARE.
21
 
22
 
# Except as contained in this notice, the name of the copyright holders shall
23
 
# not be used in advertising or otherwise to promote the sale, use or
24
 
# other dealings in this Software without prior written authorization
25
 
# from the copyright holders.
 
4
#
 
5
# Permission is hereby granted, free of charge, to any person obtaining a
 
6
# copy of this software and associated documentation files (the "Software"),
 
7
# to deal in the Software without restriction, including without limitation
 
8
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
9
# and/or sell copies of the Software, and to permit persons to whom the
 
10
# Software is furnished to do so, subject to the following conditions:
 
11
#
 
12
# The above copyright notice and this permission notice (including the next
 
13
# paragraph) shall be included in all copies or substantial portions of the
 
14
# Software.
 
15
#
 
16
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
17
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
18
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 
19
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
20
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
21
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
22
# DEALINGS IN THE SOFTWARE.
26
23
27
24
 
28
25
synclientmandir = $(APP_MAN_DIR)
41
38
 
42
39
CLEANFILES = $(driverman_DATA) $(synclientman_DATA) $(syndaemonman_DATA)
43
40
 
44
 
SED = sed
45
 
 
46
 
# Strings to replace in man pages
47
 
XORGRELSTRING = @PACKAGE_STRING@
48
 
  XORGMANNAME = X Version 11
49
 
 
50
 
MAN_SUBSTS = \
51
 
        -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
52
 
        -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
53
 
        -e 's|__xservername__|Xorg|g' \
54
 
        -e 's|__xconfigfile__|xorg.conf|g' \
55
 
        -e 's|__projectroot__|$(prefix)|g' \
56
 
        -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \
57
 
        -e 's|__drivermansuffix__|$(DRIVER_MAN_SUFFIX)|g' \
58
 
        -e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \
59
 
        -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \
60
 
        -e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g'
61
 
 
62
41
SUFFIXES = .$(DRIVER_MAN_SUFFIX) .man
63
42
 
 
43
# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
64
44
.man.$(DRIVER_MAN_SUFFIX):
65
 
        sed $(MAN_SUBSTS) < $< > $@
 
45
        $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
66
46
.man.$(APP_MAN_SUFFIX):
67
 
        sed $(MAN_SUBSTS) < $< > $@
 
47
        $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
68
48