summaryrefslogtreecommitdiff
path: root/sxpm
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 /sxpm
parentd1b430289b2ddb6c1f3383c5288aa125b058508a (diff)
downloadxorg-lib-libXpm-82513d04a8381da8d2281d7581f6b0d65901aede.tar.gz
Use sed to substitute variables in man pages
Diffstat (limited to 'sxpm')
-rw-r--r--sxpm/Makefile.am37
1 files changed, 34 insertions, 3 deletions
diff --git a/sxpm/Makefile.am b/sxpm/Makefile.am
index 0e4e570..4ea591e 100644
--- a/sxpm/Makefile.am
+++ b/sxpm/Makefile.am
@@ -6,15 +6,46 @@ sxpm_CFLAGS = $(SXPM_CFLAGS)
INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include
-dist_man_MANS = sxpm.1
-
sxpm_SOURCES = sxpm.c
sxpm_LDADD = $(XPM_LIBS) $(SXPM_LIBS) $(top_builddir)/src/libXpm.la
+# Man page
+appmandir = $(mandir)/man$(APP_MAN_SUFFIX)
+
+appman_SOURCES = sxpm.man
+appman_DATA = $(appman_SOURCES:man=@APP_MAN_SUFFIX@)
+
+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) < $< > $@
+
endif
EXTRA_DIST = \
plaid_ext.xpm \
plaid_mask.xpm \
- plaid.xpm
+ plaid.xpm \
+ sxpm.man