Use sed to fill in variables in man page
authorAlan Coopersmith <Alan.Coopersmith@sun.com>
Fri, 14 Oct 2005 00:25:44 +0000 (00:25 +0000)
committerAlan Coopersmith <Alan.Coopersmith@sun.com>
Fri, 14 Oct 2005 00:25:44 +0000 (00:25 +0000)
Makefile.am
configure.ac

index 933d223..5d48108 100644 (file)
@@ -50,6 +50,37 @@ xdpyinfo_LDADD = \
 xdpyinfo_SOURCES =     \
         xdpyinfo.c
 
-dist_man1_MANS = \
+appman_SOURCES = \
         xdpyinfo.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) < $< > $@
index 60e48bd..94e1913 100644 (file)
@@ -100,6 +100,7 @@ PKG_CHECK_MODULES(DPY_XPRINT, printproto xp,
        AC_CHECK_HEADERS([X11/extensions/Print.h],,,[#include <X11/Xlib.h>])
        CPPFLAGS="$SAVE_CPPFLAGS"],[echo "not found"])
 
+XORG_MANPAGE_SECTIONS
 XORG_RELEASE_VERSION
 
 AC_OUTPUT([Makefile])