~ubuntu-branches/ubuntu/trusty/xserver-xorg-video-vesa/trusty-proposed

« back to all changes in this revision

Viewing changes to man/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): David Nusinow
  • Date: 2006-12-10 19:49:32 UTC
  • Revision ID: james.westby@ubuntu.com-20061210194932-7jjmkj75wwb0sjxb
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id$
 
2
#
 
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.
 
26
 
27
 
 
28
drivermandir = $(DRIVER_MAN_DIR)
 
29
 
 
30
driverman_PRE = @DRIVER_NAME@.man
 
31
 
 
32
driverman_DATA = $(driverman_PRE:man=@DRIVER_MAN_SUFFIX@)
 
33
 
 
34
EXTRA_DIST = @DRIVER_NAME@.man
 
35
 
 
36
CLEANFILES = $(driverman_DATA)
 
37
 
 
38
SED = sed
 
39
 
 
40
# Strings to replace in man pages
 
41
XORGRELSTRING = @PACKAGE_STRING@
 
42
  XORGMANNAME = X Version 11
 
43
 
 
44
MAN_SUBSTS = \
 
45
        -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
 
46
        -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
 
47
        -e 's|__xservername__|Xorg|g' \
 
48
        -e 's|__xconfigfile__|xorg.conf|g' \
 
49
        -e 's|__projectroot__|$(prefix)|g' \
 
50
        -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \
 
51
        -e 's|__drivermansuffix__|$(DRIVER_MAN_SUFFIX)|g' \
 
52
        -e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \
 
53
        -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \
 
54
        -e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g'
 
55
 
 
56
SUFFIXES = .$(DRIVER_MAN_SUFFIX) .man
 
57
 
 
58
.man.$(DRIVER_MAN_SUFFIX):
 
59
        sed $(MAN_SUBSTS) < $< > $@