1#/bin/sh 2 3# Script to prepare the files for building a PCRE2 release. It does some 4# processing of the documentation, detrails files, and creates pcre2.h.generic 5# and config.h.generic (for use by builders who can't run ./configure). 6 7# You must run this script before runnning "make dist". If its first argument 8# is "doc", it stops after preparing the documentation. There are no other 9# arguments. The script makes use of the following files: 10 11# 132html A Perl script that converts a .1 or .3 man page into HTML. It 12# "knows" the relevant troff constructs that are used in the PCRE2 13# man pages. 14 15# CheckMan A Perl script that checks man pages for typos in the mark up. 16 17# CleanTxt A Perl script that cleans up the output of "nroff -man" by 18# removing backspaces and other redundant text so as to produce 19# a readable .txt file. 20 21# Detrail A Perl script that removes trailing spaces from files. 22 23# doc/index.html.src 24# A file that is copied as index.html into the doc/html directory 25# when the HTML documentation is built. It works like this so that 26# doc/html can be deleted and re-created from scratch. 27 28# README & NON-AUTOTOOLS-BUILD 29# These files are copied into the doc/html directory, with .txt 30# extensions so that they can by hyperlinked from the HTML 31# documentation, because some people just go to the HTML without 32# looking for text files. 33 34 35# First, sort out the documentation. Remove pcre2demo.3 first because it won't 36# pass the markup check (it is created below, using markup that none of the 37# other pages use). 38 39cd doc 40echo Processing documentation 41 42/bin/rm -f pcre2demo.3 43 44# Check the remaining man pages 45 46perl ../CheckMan *.1 *.3 47if [ $? != 0 ] ; then exit 1; fi 48 49# Make Text form of the documentation. It needs some mangling to make it 50# tidy for online reading. Concatenate all the .3 stuff, but omit the 51# individual function pages. 52 53cat <<End >pcre2.txt 54----------------------------------------------------------------------------- 55This file contains a concatenation of the PCRE2 man pages, converted to plain 56text format for ease of searching with a text editor, or for use on systems 57that do not have a man page processor. The small individual files that give 58synopses of each function in the library have not been included. Neither has 59the pcre2demo program. There are separate text files for the pcre2grep and 60pcre2test commands. 61----------------------------------------------------------------------------- 62 63 64End 65 66echo "Making pcre2.txt" 67for file in pcre2 pcre2api pcre2build pcre2callout pcre2compat pcre2jit \ 68 pcre2limits pcre2matching pcre2partial pcre2pattern pcre2perform \ 69 pcre2posix pcre2sample pcre2serialize pcre2syntax \ 70 pcre2unicode ; do 71 echo " Processing $file.3" 72 nroff -c -man $file.3 >$file.rawtxt 73 perl ../CleanTxt <$file.rawtxt >>pcre2.txt 74 /bin/rm $file.rawtxt 75 echo "------------------------------------------------------------------------------" >>pcre2.txt 76 if [ "$file" != "pcre2sample" ] ; then 77 echo " " >>pcre2.txt 78 echo " " >>pcre2.txt 79 fi 80done 81 82# The three commands 83for file in pcre2test pcre2grep pcre2-config ; do 84 echo Making $file.txt 85 nroff -c -man $file.1 >$file.rawtxt 86 perl ../CleanTxt <$file.rawtxt >$file.txt 87 /bin/rm $file.rawtxt 88done 89 90 91# Make pcre2demo.3 from the pcre2demo.c source file 92 93echo "Making pcre2demo.3" 94perl <<"END" >pcre2demo.3 95 open(IN, "../src/pcre2demo.c") || die "Failed to open src/pcre2demo.c\n"; 96 open(OUT, ">pcre2demo.3") || die "Failed to open pcre2demo.3\n"; 97 print OUT ".\\\" Start example.\n" . 98 ".de EX\n" . 99 ". nr mE \\\\n(.f\n" . 100 ". nf\n" . 101 ". nh\n" . 102 ". ft CW\n" . 103 "..\n" . 104 ".\n" . 105 ".\n" . 106 ".\\\" End example.\n" . 107 ".de EE\n" . 108 ". ft \\\\n(mE\n" . 109 ". fi\n" . 110 ". hy \\\\n(HY\n" . 111 "..\n" . 112 ".\n" . 113 ".EX\n" ; 114 while (<IN>) 115 { 116 s/\\/\\e/g; 117 print OUT; 118 } 119 print OUT ".EE\n"; 120 close(IN); 121 close(OUT); 122END 123if [ $? != 0 ] ; then exit 1; fi 124 125 126# Make HTML form of the documentation. 127 128echo "Making HTML documentation" 129/bin/rm html/* 130cp index.html.src html/index.html 131cp ../README html/README.txt 132cp ../NON-AUTOTOOLS-BUILD html/NON-AUTOTOOLS-BUILD.txt 133 134for file in *.1 ; do 135 base=`basename $file .1` 136 echo " Making $base.html" 137 perl ../132html -toc $base <$file >html/$base.html 138done 139 140# Exclude table of contents for function summaries. It seems that expr 141# forces an anchored regex. Also exclude them for small pages that have 142# only one section. 143 144for file in *.3 ; do 145 base=`basename $file .3` 146 toc=-toc 147 if [ `expr $base : '.*_'` -ne 0 ] ; then toc="" ; fi 148 if [ "$base" = "pcre2sample" ] || \ 149 [ "$base" = "pcre2compat" ] || \ 150 [ "$base" = "pcre2limits" ] || \ 151 [ "$base" = "pcre2unicode" ] ; then 152 toc="" 153 fi 154 echo " Making $base.html" 155 perl ../132html $toc $base <$file >html/$base.html 156 if [ $? != 0 ] ; then exit 1; fi 157done 158 159# End of documentation processing; stop if only documentation required. 160 161cd .. 162echo Documentation done 163if [ "$1" = "doc" ] ; then exit; fi 164 165# These files are detrailed; do not detrail the test data because there may be 166# significant trailing spaces. Do not detrail RunTest.bat, because it has CRLF 167# line endings and the detrail script removes all trailing white space. The 168# configure files are also omitted from the detrailing. 169 170files="\ 171 Makefile.am \ 172 configure.ac \ 173 README \ 174 LICENCE \ 175 COPYING \ 176 AUTHORS \ 177 NEWS \ 178 NON-AUTOTOOLS-BUILD \ 179 INSTALL \ 180 132html \ 181 CleanTxt \ 182 Detrail \ 183 ChangeLog \ 184 CMakeLists.txt \ 185 RunGrepTest \ 186 RunTest \ 187 pcre2-config.in \ 188 perltest.sh \ 189 libpcre2-8.pc.in \ 190 libpcre2-16.pc.in \ 191 libpcre2-32.pc.in \ 192 libpcre2-posix.pc.in \ 193 src/pcre2_dftables.c \ 194 src/pcre2.h.in \ 195 src/pcre2_auto_possess.c \ 196 src/pcre2_compile.c \ 197 src/pcre2_config.c \ 198 src/pcre2_context.c \ 199 src/pcre2_convert.c \ 200 src/pcre2_dfa_match.c \ 201 src/pcre2_error.c \ 202 src/pcre2_extuni.c \ 203 src/pcre2_find_bracket.c \ 204 src/pcre2_internal.h \ 205 src/pcre2_intmodedep.h \ 206 src/pcre2_jit_compile.c \ 207 src/pcre2_jit_match.c \ 208 src/pcre2_jit_misc.c \ 209 src/pcre2_jit_test.c \ 210 src/pcre2_maketables.c \ 211 src/pcre2_match.c \ 212 src/pcre2_match_data.c \ 213 src/pcre2_newline.c \ 214 src/pcre2_ord2utf.c \ 215 src/pcre2_pattern_info.c \ 216 src/pcre2_printint.c \ 217 src/pcre2_string_utils.c \ 218 src/pcre2_study.c \ 219 src/pcre2_substring.c \ 220 src/pcre2_tables.c \ 221 src/pcre2_ucd.c \ 222 src/pcre2_ucp.h \ 223 src/pcre2_valid_utf.c \ 224 src/pcre2_xclass.c \ 225 src/pcre2demo.c \ 226 src/pcre2grep.c \ 227 src/pcre2posix.c \ 228 src/pcre2posix.h \ 229 src/pcre2test.c" 230 231echo Detrailing 232perl ./Detrail $files doc/p* doc/html/* 233 234echo Done 235 236#End 237