]> diplodocus.org Git - nmh/blobdiff - man/mh-chart-gen.sh
Generalized condition for support of parameter value tests.
[nmh] / man / mh-chart-gen.sh
index 84be272f9aee5e81cffebc8f643ef602191ab3c8..712c6cc67271188595d581184c14ac42f23f7d1f 100755 (executable)
@@ -1,20 +1,30 @@
-#! /bin/sh
+#!/bin/sh
 #
 # Generates mh-chart.man from other .man files that have a SYNOPSIS
 # section.
+#
+# This code is Copyright (c) 2012, by the authors of nmh.
+# See the COPYRIGHT file in the root directory of the nmh
+# distribution for complete copyright information.
 
 nmhmandir=`dirname $0`
 
-cat <<'EOF'
+# The following ensures the generated date field in the manpage is divorced
+# from the local build environment when building distribution packages.
+LC_TIME=C; export LC_TIME
+unset LANG
+datestamp=`date '+%B %d, %Y'`
+
+cat <<__HOOPY_FROOD
+.TH MH-CHART %manext7% "${datestamp}" "%nmhversion%"
 .\"
 .\" %nmhwarning%
 .\"
-.TH MH-CHART %manext7% "%nmhdate%" MH.6.8 [%nmhversion%]
 .SH NAME
 mh-chart \- Chart of nmh Commands
 .SH SYNOPSIS
 .na
-EOF
+__HOOPY_FROOD
 
 for i in $nmhmandir/*.man; do
   case $i in
@@ -34,5 +44,6 @@ cat <<'EOF'
 .ad
 
 .SH "SEE ALSO"
-nmh(7)
+.IR nmh (7),
+.IR mh\-mime (7)
 EOF