1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/security/nss/lib/freebl/mpi/doc/build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +#!/bin/sh 1.5 +# This Source Code Form is subject to the terms of the Mozilla Public 1.6 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.8 + 1.9 +VERS="1.7p6" 1.10 +SECT="1" 1.11 +NAME="MPI Tools" 1.12 + 1.13 +echo "Building manual pages ..." 1.14 +case $# in 1.15 + 0) 1.16 + files=`ls *.pod` 1.17 + ;; 1.18 + *) 1.19 + files=$* 1.20 + ;; 1.21 +esac 1.22 + 1.23 +for name in $files 1.24 +do 1.25 + echo -n "$name ... " 1.26 +# sname=`noext $name` 1.27 + sname=`basename $name .pod` 1.28 + pod2man --section="$SECT" --center="$NAME" --release="$VERS" $name > $sname.$SECT 1.29 + echo "(done)" 1.30 +done 1.31 + 1.32 +echo "Finished building." 1.33 +