X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=man%2Fmh-chart-gen.sh;h=e0afd409ffe444fcd2cd9b35df1c6636759823a5;hb=2667af48dccbcb9e25709dea50451dd58d40aeae;hp=33e2a4c583a88ef2968a7d966d97d9c413829f79;hpb=67c56bad23525bd3d5f4d155b4f602a4183c6170;p=mmh diff --git a/man/mh-chart-gen.sh b/man/mh-chart-gen.sh index 33e2a4c..e0afd40 100755 --- a/man/mh-chart-gen.sh +++ b/man/mh-chart-gen.sh @@ -1,36 +1,44 @@ -#! /bin/sh +#!/bin/sh # -# Generates mh-chart.man from other .man files that have a -# SYNOPSIS section. +# Generates mh-chart.man from other .man files that have a SYNOPSIS +# section. 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. +export LC_TIME=C +unset LANG +datestamp=`date '+%B %d, %Y'` + +cat <<__HOOPY_FROOD +.TH MH-CHART %manext7% "${datestamp}" "%nmhversion%" .\" .\" %nmhwarning% .\" -.TH MH-CHART %manext1% "%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 - if ! echo $i | grep 'mh-chart.man' >/dev/null; then - if grep '^\.ad' "$i" >/dev/null; then - #### Extract lines from just after .SH SYNOPSIS to just before .ad. - #### Filter out the "typical usage:" section in pick.man. - awk '/.SH SYNOPSIS/,/^(\.ad|typical usage:)/' "$i" | \ - grep -Ev '^(\.SH SYNOPSIS|\.na|\.ad|typical usage:)' - echo - fi - fi + case $i in + */mh-chart.man) ;; + *) if grep '^\.ad' "$i" >/dev/null; then + #### Extract lines from just after .SH SYNOPSIS to just before .ad. + #### Filter out the "typical usage:" section in pick.man. + awk '/.SH SYNOPSIS/,/^(\.ad|typical usage:)/ { + if ($0 !~ /^(\.SH SYNOPSIS|\.na|\.ad|typical usage:)/) print + }' "$i" + echo + fi ;; + esac done cat <<'EOF' .ad .SH "SEE ALSO" -nmh(1) +nmh(7) EOF