summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-10-14 01:38:30 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-10-14 01:38:30 +0000
commit3be95f39d8c3a14a25ce63a837dacbac583b263c (patch)
tree9980d9965e40ecb5894498b86116472ea3f215ee
parentf1c3f49e3d485176406c189bab2d63ff4e783ea8 (diff)
Use sed to fill in variables in man page
-rw-r--r--ChangeLog7
-rw-r--r--Makefile.am36
-rw-r--r--configure.ac1
3 files changed, 40 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e69de29..f9fa892 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -0,0 +1,7 @@
+2005-10-13 Alan Coopersmith <alan.coopersmith@sun.com>
+
+ * man/Makefile.am:
+ * configure.ac:
+ Use sed to fill in variables in man page
+
+
diff --git a/Makefile.am b/Makefile.am
index 123c605..de0f2ec 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,3 +1,4 @@
+# $Id$
#
# Copyright 2005 Red Hat, Inc.
#
@@ -27,8 +28,35 @@ xvidtune_LDADD = $(XVIDTUNE_LIBS)
xvidtune_SOURCES = \
xvidtune.c
-dist_man1_MANS = \
- xvidtune.man
+# Man page
+
+appmandir = $(mandir)/man$(APP_MAN_SUFFIX)
+appman_SOURCES = xvidtune.man
+appman_DATA = $(appman_SOURCES:man=$(APP_MAN_SUFFIX))
+
+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) < $< > $@
# App default files (*.ad)
@@ -39,7 +67,7 @@ appdefault_DATA = Xvidtune
Xvidtune: Xvidtune.cpp
$(RAWCPP) $(srcdir)/Xvidtune.cpp | sed -e s/^\#.*$$//g > $@
-EXTRA_DIST = Xvidtune.cpp
+EXTRA_DIST = Xvidtune.cpp $(appman_SOURCES)
-CLEANFILES = Xvidtune
+CLEANFILES = Xvidtune $(appman_DATA)
diff --git a/configure.ac b/configure.ac
index 56d9571..9352e6b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -46,6 +46,7 @@ echo $XVIDTUNE_LIBS
AC_SUBST(XVIDTUNE_CFLAGS)
AC_SUBST(XVIDTUNE_LIBS)
+XORG_MANPAGE_SECTIONS
XORG_RELEASE_VERSION
AC_OUTPUT([Makefile])