From ab3d9838cd88981b4d7ca54f06b8f7d2227f61b9 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Fri, 11 Jul 2014 04:14:48 -0600 Subject: wording changes and initial stab at crypto man pages. still need to get man links working and ssl and apps man pages added. --- update.sh | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'update.sh') diff --git a/update.sh b/update.sh index c6ae79c..69fc475 100755 --- a/update.sh +++ b/update.sh @@ -4,7 +4,7 @@ set -e # resync this library with the upstream project, remove old submodule dirs if [ -d openbsd ]; then (cd openbsd - git co master + git checkout master git pull) else if [ -z "$LIBRESSL_GIT" ]; then @@ -51,7 +51,7 @@ copy_crypto() { } cp $libssl_src/src/LICENSE COPYING -cp $libssl_src/src/CHANGES ChangeLog +echo "Please see OpenBSD CVS logs" > ChangeLog cp $libcrypto_src/crypto/arch/amd64/opensslconf.h include/openssl cp $libssl_src/src/e_os2.h include/openssl @@ -381,3 +381,14 @@ crypto_excludes=( echo "noinst_HEADERS += $i" >> Makefile.am done ) + +(cd man + cp Makefile.am.tpl Makefile.am + for i in `ls -1 ../$libssl_src/src/doc/crypto/*.pod | sort`; do + BASE=`echo $i|sed -e "s/\.pod//"` + echo $BASE + NAME=`basename "$BASE"` + pod2man --official --release=LibreSSL --center=LibreSSL --section=3 --name=$NAME < $BASE.pod > $NAME.3 + echo "man_MAN += $NAME.3" >> Makefile.am + done +) -- cgit v1.2.3-55-g6feb