diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-11-13 01:48:25 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-11-13 01:48:25 +0000 |
commit | 593a37675b72053c36924785a2fea51a06ad1c37 (patch) | |
tree | 7bc9e711e5fd1a4fc741b8f5574a1e0e455923e5 | |
parent | b21e46646371edbf7155eae621fefc0b572b006e (diff) |
Use sed to substitute variables in man pages.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | man/Makefile.am | 52 |
3 files changed, 57 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2005-11-12 Alan Coopersmith <alan.coopersmith@sun.com> + + * man/Makefile.am: + * configure.ac: + Use sed to substitute variables in man pages. + 2005-11-09 Kevin E. Martin <kem-at-freedesktop-dot-org> * configure.ac: diff --git a/configure.ac b/configure.ac index 840c907..45f6b56 100644 --- a/configure.ac +++ b/configure.ac @@ -58,6 +58,7 @@ PKG_CHECK_MODULES(FIXESEXT, xproto [fixesproto >= $FIXESEXT_VERSION] xextproto) AC_SUBST(FIXESEXT_CFLAGS) AC_SUBST(FIXESEXT_LIBS) +XORG_MANPAGE_SECTIONS XORG_RELEASE_VERSION AC_OUTPUT([Makefile diff --git a/man/Makefile.am b/man/Makefile.am index d763152..b4b7bf7 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,3 +1,51 @@ -man3_MANS = Xfixes.3 +# $Id$ +# +# Copyright 2005 Sun Microsystems, Inc. All rights reserved. +# +# Permission to use, copy, modify, distribute, and sell this software and its +# documentation for any purpose is hereby granted without fee, provided that +# the above copyright notice appear in all copies and that both that +# copyright notice and this permission notice appear in supporting +# documentation. +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR +# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the copyright holders shall +# not be used in advertising or otherwise to promote the sale, use or +# other dealings in this Software without prior written authorization +# from the copyright holders. +# -EXTRA_DIST = $(man3_MANS) +libmandir = $(mandir)/man$(LIB_MAN_SUFFIX) + +libman_SOURCES = Xfixes.man + +libman_DATA = $(libman_SOURCES:man=@LIB_MAN_SUFFIX@) + +EXTRA_DIST = $(libman_SOURCES) + +CLEANFILES = $(libman_DATA) + +SED = sed + +# Strings to replace in man pages +XORGRELSTRING = @PACKAGE_STRING@ + XORGMANNAME = X Version 11 + +MAN_SUBSTS = \ + -e 's/__vendorversion__/"$(XORGRELSTRING)" "$(XORGMANNAME)"/' \ + -e 's/__libmansuffix__/$(LIB_MAN_SUFFIX)/g' + +SUFFIXES = .$(LIB_MAN_SUFFIX) .man + +.man.$(LIB_MAN_SUFFIX): + sed $(MAN_SUBSTS) < $< > $@ |