Home | History | Annotate | Download | only in dist2
      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 
     39 cd doc
     40 echo Processing documentation
     41 
     42 /bin/rm -f pcre2demo.3
     43 
     44 # Check the remaining man pages
     45 
     46 perl ../CheckMan *.1 *.3
     47 if [ $? != 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 
     53 cat <<End >pcre2.txt
     54 -----------------------------------------------------------------------------
     55 This file contains a concatenation of the PCRE2 man pages, converted to plain
     56 text format for ease of searching with a text editor, or for use on systems
     57 that do not have a man page processor. The small individual files that give
     58 synopses of each function in the library have not been included. Neither has
     59 the pcre2demo program. There are separate text files for the pcre2grep and
     60 pcre2test commands.
     61 -----------------------------------------------------------------------------
     62 
     63 
     64 End
     65 
     66 echo "Making pcre2.txt"
     67 for file in pcre2 pcre2api pcre2build pcre2callout pcre2compat pcre2jit \
     68             pcre2limits pcre2matching pcre2partial pcre2pattern pcre2perform \
     69             pcre2posix pcre2sample pcre2serialize pcre2stack 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
     80 done
     81 
     82 # The three commands
     83 for 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
     88 done
     89 
     90 
     91 # Make pcre2demo.3 from the pcre2demo.c source file
     92 
     93 echo "Making pcre2demo.3"
     94 perl <<"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);
    122 END
    123 if [ $? != 0 ] ; then exit 1; fi
    124 
    125 
    126 # Make HTML form of the documentation.
    127 
    128 echo "Making HTML documentation"
    129 /bin/rm html/*
    130 cp index.html.src html/index.html
    131 cp ../README html/README.txt
    132 cp ../NON-AUTOTOOLS-BUILD html/NON-AUTOTOOLS-BUILD.txt
    133 
    134 for file in *.1 ; do
    135   base=`basename $file .1`
    136   echo "  Making $base.html"
    137   perl ../132html -toc $base <$file >html/$base.html
    138 done
    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 
    144 for 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" = "pcre2stack" ]   || \
    150      [ "$base" = "pcre2compat" ]  || \
    151      [ "$base" = "pcre2limits" ]  || \
    152      [ "$base" = "pcre2unicode" ] ; then
    153     toc=""
    154   fi
    155   echo "  Making $base.html"
    156   perl ../132html $toc $base <$file >html/$base.html
    157   if [ $? != 0 ] ; then exit 1; fi
    158 done
    159 
    160 # End of documentation processing; stop if only documentation required.
    161 
    162 cd ..
    163 echo Documentation done
    164 if [ "$1" = "doc" ] ; then exit; fi
    165 
    166 # These files are detrailed; do not detrail the test data because there may be
    167 # significant trailing spaces. Do not detrail RunTest.bat, because it has CRLF
    168 # line endings and the detrail script removes all trailing white space. The
    169 # configure files are also omitted from the detrailing.
    170 
    171 files="\
    172   Makefile.am \
    173   configure.ac \
    174   README \
    175   LICENCE \
    176   COPYING \
    177   AUTHORS \
    178   NEWS \
    179   NON-AUTOTOOLS-BUILD \
    180   INSTALL \
    181   132html \
    182   CleanTxt \
    183   Detrail \
    184   ChangeLog \
    185   CMakeLists.txt \
    186   RunGrepTest \
    187   RunTest \
    188   pcre2-config.in \
    189   perltest.sh \
    190   libpcre2-8.pc.in \
    191   libpcre2-16.pc.in \
    192   libpcre2-32.pc.in \
    193   libpcre2-posix.pc.in \
    194   src/dftables.c \
    195   src/pcre2.h.in \
    196   src/pcre2_auto_possess.c \
    197   src/pcre2_compile.c \
    198   src/pcre2_config.c \
    199   src/pcre2_context.c \
    200   src/pcre2_dfa_match.c \
    201   src/pcre2_error.c \
    202   src/pcre2_find_bracket.c \
    203   src/pcre2_internal.h \
    204   src/pcre2_intmodedep.h \
    205   src/pcre2_jit_compile.c \
    206   src/pcre2_jit_match.c \
    207   src/pcre2_jit_misc.c \
    208   src/pcre2_jit_test.c \
    209   src/pcre2_maketables.c \
    210   src/pcre2_match.c \
    211   src/pcre2_match_data.c \
    212   src/pcre2_newline.c \
    213   src/pcre2_ord2utf.c \
    214   src/pcre2_pattern_info.c \
    215   src/pcre2_printint.c \
    216   src/pcre2_string_utils.c \
    217   src/pcre2_study.c \
    218   src/pcre2_substring.c \
    219   src/pcre2_tables.c \
    220   src/pcre2_ucd.c \
    221   src/pcre2_ucp.h \
    222   src/pcre2_valid_utf.c \
    223   src/pcre2_xclass.c \
    224   src/pcre2demo.c \
    225   src/pcre2grep.c \
    226   src/pcre2posix.c \
    227   src/pcre2posix.h \
    228   src/pcre2test.c"
    229 
    230 echo Detrailing
    231 perl ./Detrail $files doc/p* doc/html/*
    232 
    233 echo Done
    234 
    235 #End
    236