diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-14 00:25:42 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-14 00:25:42 +0000 |
commit | adbf0a45e0c68512eb46c8bd8e024d5cdfd6b68f (patch) | |
tree | 39e098ad97db35fe111789e5a8e909ed09eb49f2 | |
parent | f7e326bd50466f9197e75b2b71ccf0fb1996f4f8 (diff) |
Use sed to fill in variables in man page
-rw-r--r-- | Makefile.am | 31 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 32 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 2159c4c..b160ce5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,3 +36,34 @@ sessreg.1: $(srcdir)/sessreg.man man1_MANS = sessreg.1 CLEANFILES = $(man1_MANS) EXTRA_DIST = sessreg.man + +appmandir = $(mandir)/man$(APP_MAN_SUFFIX) + +appman_DATA = $(appman_SOURCES:man=$(APP_MAN_SUFFIX)) + +EXTRA_DIST += $(appman_SOURCES) +CLEANFILES += $(appman_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|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ + -e 's|__xservername__|Xorg|g' \ + -e 's|__xconfigfile__|xorg.conf|g' \ + -e 's|__projectroot__|$(prefix)|g' \ + -e 's|__apploaddir__|$(appdefaultdir)|' \ + -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \ + -e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' \ + -e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \ + -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \ + -e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g' + +SUFFIXES = .$(APP_MAN_SUFFIX) .man + +.man.$(APP_MAN_SUFFIX): + sed $(MAN_SUBSTS) < $< > $@ diff --git a/configure.ac b/configure.ac index 1ed6d3c..6a79c0f 100644 --- a/configure.ac +++ b/configure.ac @@ -46,6 +46,7 @@ PKG_CHECK_MODULES(SESSREG, xproto) AC_SUBST(SESSREG_CFLAGS) AC_SUBST(SESSREG_LIBS) +XORG_MANPAGE_SECTIONS XORG_RELEASE_VERSION AC_OUTPUT([Makefile]) |