diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-14 01:38:30 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-14 01:38:30 +0000 |
commit | 3be95f39d8c3a14a25ce63a837dacbac583b263c (patch) | |
tree | 9980d9965e40ecb5894498b86116472ea3f215ee | |
parent | f1c3f49e3d485176406c189bab2d63ff4e783ea8 (diff) |
Use sed to fill in variables in man page
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Makefile.am | 36 | ||||
-rw-r--r-- | configure.ac | 1 |
3 files changed, 40 insertions, 4 deletions
@@ -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]) |