~ubuntu-branches/ubuntu/natty/libxxf86vm/natty

« back to all changes in this revision

Viewing changes to man/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Stone
  • Date: 2005-12-12 16:20:05 UTC
  • mto: (2.1.1 dapper) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051212162005-5sge1a9fty2zykrt
Tags: upstream-0.99.2
ImportĀ upstreamĀ versionĀ 0.99.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
man_MANS = XF86VM.3
2
 
 
3
 
EXTRA_DIST = $(man_MANS)
 
1
# $Id: Makefile.am,v 1.5 2005/11/28 22:03:07 alanc Exp $
 
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
libmandir = $(LIB_MAN_DIR)
 
29
 
 
30
libman_SOURCES = XF86VM.man
 
31
 
 
32
BUILT_SOURCES = shadows.DONE
 
33
 
 
34
EXTRA_DIST = $(libman_SOURCES)
 
35
 
 
36
CLEANFILES = $(libman_DATA) $(BUILT_SOURCES)
 
37
 
 
38
libman_DATA = $(libman_SOURCES:man=@LIB_MAN_SUFFIX@) \
 
39
              $(XF86VM_shadows:=.@LIB_MAN_SUFFIX@)
 
40
 
 
41
SED = sed
 
42
 
 
43
# Strings to replace in man pages
 
44
XORGRELSTRING = @PACKAGE_STRING@
 
45
  XORGMANNAME = X Version 11
 
46
 
 
47
MAN_SUBSTS = \
 
48
        -e 's/__vendorversion__/"$(XORGRELSTRING)" "$(XORGMANNAME)"/' \
 
49
        -e 's/__xservername__/Xorg/g' \
 
50
        -e 's/__xconfigfile__/xorg.conf/g' \
 
51
        -e 's/__appmansuffix__/$(APP_MAN_SUFFIX)/g' \
 
52
        -e 's/__libmansuffix__/$(LIB_MAN_SUFFIX)/g' \
 
53
        -e 's/__filemansuffix__/$(FILE_MAN_SUFFIX)/g'
 
54
 
 
55
SUFFIXES = .$(LIB_MAN_SUFFIX) .man
 
56
 
 
57
.man.$(LIB_MAN_SUFFIX):
 
58
        sed $(MAN_SUBSTS) < $< > $@
 
59
 
 
60
# Generate man page shadow files (Replaces InstallManPageAliases from Imake)
 
61
 
 
62
XF86VM_shadows =                            \
 
63
    XF86VidModeQueryExtension               \
 
64
    XF86VidModeQueryVersion                 \
 
65
    XF86VidModeGetModeLine                  \
 
66
    XF86VidModeGetAllModeLines              \
 
67
    XF86VidModeDeleteModeLine               \
 
68
    XF86VidModeModModeLine                  \
 
69
    XF86VidModeSwitchMode                   \
 
70
    XF86VidModeSwitchToMode                 \
 
71
    XF86VidModeLockModeSwitch               \
 
72
    XF86VidModeGetMonitor                   \
 
73
    XF86VidModeGetViewPort                  \
 
74
    XF86VidModeSetViewPort                  \
 
75
    XF86VidModeValidateModeLine             \
 
76
    XF86VidModeSetClientVersion             \
 
77
    XF86VidModeGetDotClocks                 \
 
78
    XF86VidModeGetGamma                     \
 
79
    XF86VidModeSetGamma                     \
 
80
    XF86VidModeSetGammaRamp                 \
 
81
    XF86VidModeGetGammaRamp                 \
 
82
    XF86VidModeGetGammaRampSize             \
 
83
    XF86VidModeGetPermissions
 
84
 
 
85
shadows.DONE:
 
86
        -rm -f $(XF86VM_shadows:=.@LIB_MAN_SUFFIX@)
 
87
        (for i in $(XF86VM_shadows:=.@LIB_MAN_SUFFIX@) ; do \
 
88
         echo .so man$(LIB_MAN_SUFFIX)/XF86VM.$(LIB_MAN_SUFFIX) > $$i; \
 
89
         done)