diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-14 00:25:40 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-14 00:25:40 +0000 |
commit | 3cf12f8bb84f6c7f48d21372026ed90cfbb448a4 (patch) | |
tree | 2e9dff29437cddd52511d686e319ee2d727faa33 | |
parent | 1367d1093078bb49e4f1b5f1453fea41ae6f2b25 (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 014dd1a..0ee7293 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,4 +26,35 @@ bdftopcf_LDADD = @BDFTOPCF_LIBS@ bdftopcf_SOURCES = bdftopcf.c -dist_man1_MANS = bdftopcf.man +appman_SOURCES = bdftopcf.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 0f72086..06777d8 100644 --- a/configure.ac +++ b/configure.ac @@ -35,6 +35,7 @@ PKG_CHECK_MODULES(BDFTOPCF, xfont) AC_SUBST(BDFTOPCF_CFLAGS) AC_SUBST(BDFTOPCF_LIBS) +XORG_MANPAGE_SECTIONS XORG_RELEASE_VERSION AC_OUTPUT([Makefile]) |