From 33f5d2737a2d85b643e8f208bbef89c6474d561e Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Fri, 14 Oct 2005 00:25:40 +0000 Subject: Use sed to fill in variables in man page --- Makefile.am | 33 ++++++++++++++++++++++++++++++++- configure.ac | 1 + 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index d8f2a25..18f12ae 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,5 +27,36 @@ appres_LDADD = $(APPRES_LIBS) appres_SOURCES = \ appres.c -dist_man1_MANS = \ +appman_SOURCES = \ appres.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 07dcef8..59ca3be 100644 --- a/configure.ac +++ b/configure.ac @@ -36,6 +36,7 @@ PKG_CHECK_MODULES(APPRES, x11 xt) AC_SUBST(APPRES_CFLAGS) AC_SUBST(APPRES_LIBS) +XORG_MANPAGE_SECTIONS XORG_RELEASE_VERSION AC_OUTPUT([Makefile]) -- cgit v1.2.3