diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-14 00:25:46 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-14 00:25:46 +0000 |
commit | fbfc3a3410f51b1e0706ffd115a41e9ae1e36160 (patch) | |
tree | 376470fae03ad8ddba09ce9cc67962780d58c11a | |
parent | 7e1c137dc842830927dcc6cd8ddf06422e5eb32a (diff) |
Use sed to fill in variables in man page
-rw-r--r-- | Makefile.am | 33 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 33 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 0eecb90..cc7d764 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,4 +6,35 @@ xhost_CFLAGS = @XHOST_CFLAGS@ xhost_LDADD = @XHOST_LIBS@ -dist_man1_MANS = xhost.man +appman_SOURCES = xhost.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 5a037b8..23632bd 100644 --- a/configure.ac +++ b/configure.ac @@ -23,6 +23,7 @@ XTRANS_CONNECTION_FLAGS # Secure RPC detection macro from xtrans.m4 XTRANS_SECURE_RPC_FLAGS +XORG_MANPAGE_SECTIONS XORG_RELEASE_VERSION AC_OUTPUT([Makefile]) |