summaryrefslogtreecommitdiff
path: root/cxpm
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-11-13 02:08:07 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-11-13 02:08:07 +0000
commit82513d04a8381da8d2281d7581f6b0d65901aede (patch)
tree776f71223c8d6a5c4097cafb6b5497b6b6aae9ce /cxpm
parentd1b430289b2ddb6c1f3383c5288aa125b058508a (diff)
downloadxorg-lib-libXpm-82513d04a8381da8d2281d7581f6b0d65901aede.tar.gz
Use sed to substitute variables in man pages
Diffstat (limited to 'cxpm')
-rw-r--r--cxpm/Makefile.am36
1 files changed, 34 insertions, 2 deletions
diff --git a/cxpm/Makefile.am b/cxpm/Makefile.am
index 0abf869..7b8c790 100644
--- a/cxpm/Makefile.am
+++ b/cxpm/Makefile.am
@@ -2,6 +2,38 @@ bin_PROGRAMS = cxpm
cxpm_CFLAGS = $(XPM_CFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/include/X11
-dist_man_MANS = cxpm.1
-
cxpm_SOURCES = cxpm.c
+
+# Man page
+appmandir = $(mandir)/man$(APP_MAN_SUFFIX)
+
+appman_SOURCES = cxpm.man
+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) < $< > $@
+