Move manpages to man[1357] structure.
Move manpages to manX directories Add Windows/VMS install fix from Richard Levitte Update README Fix typo's Remove some duplicates Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
4f3015bb30
commit
99d63d4662
444 changed files with 40 additions and 98 deletions
|
@ -573,12 +573,9 @@ PROCESS_PODS=\
|
||||||
set -e; \
|
set -e; \
|
||||||
here=`cd $(SRCDIR); pwd`; \
|
here=`cd $(SRCDIR); pwd`; \
|
||||||
point=$$here/util/point.sh; \
|
point=$$here/util/point.sh; \
|
||||||
for ds in apps:1 crypto:3 ssl:3; do \
|
for ds in man1 man3 man5 man7 ; do \
|
||||||
defdir=`echo $$ds | cut -f1 -d:`; \
|
SEC=`echo $$ds | sed -e s/man//`; \
|
||||||
defsec=`echo $$ds | cut -f2 -d:`; \
|
for p in $(SRCDIR)/doc/$$ds/*.pod; do \
|
||||||
for p in $(SRCDIR)/doc/$$defdir/*.pod; do \
|
|
||||||
SEC=`sed -ne 's/^=for *comment *openssl_manual_section: *\([0-9]\) *$$/\1/p' $$p`; \
|
|
||||||
[ -z "$$SEC" ] && SEC=$$defsec; \
|
|
||||||
fn=`basename $$p .pod`; \
|
fn=`basename $$p .pod`; \
|
||||||
Name=$$fn; \
|
Name=$$fn; \
|
||||||
NAME=`echo $$fn | tr '[a-z]' '[A-Z]'`; \
|
NAME=`echo $$fn | tr '[a-z]' '[A-Z]'`; \
|
||||||
|
@ -608,12 +605,9 @@ PROCESS_PODS=\
|
||||||
UNINSTALL_DOCS=\
|
UNINSTALL_DOCS=\
|
||||||
set -e; \
|
set -e; \
|
||||||
here=`cd $(SRCDIR); pwd`; \
|
here=`cd $(SRCDIR); pwd`; \
|
||||||
for ds in apps:1 crypto:3 ssl:3; do \
|
for ds in man1 man3 man5 man7 ; do \
|
||||||
defdir=`echo $$ds | cut -f1 -d:`; \
|
SEC=`echo $$ds | sed -e s/man//`; \
|
||||||
defsec=`echo $$ds | cut -f2 -d:`; \
|
for p in $(SRCDIR)/doc/$$ds/*.pod; do \
|
||||||
for p in $(SRCDIR)/doc/$$defdir/*.pod; do \
|
|
||||||
SEC=`sed -ne 's/^=for *comment *openssl_manual_section: *\([0-9]\) *$$/\1/p' $$p`; \
|
|
||||||
[ -z "$$SEC" ] && SEC=$$defsec; \
|
|
||||||
fn=`basename $$p .pod`; \
|
fn=`basename $$p .pod`; \
|
||||||
suf=`eval "echo $$OUTSUFFIX"`; \
|
suf=`eval "echo $$OUTSUFFIX"`; \
|
||||||
top=`eval "echo $$OUTTOP"`; \
|
top=`eval "echo $$OUTTOP"`; \
|
||||||
|
|
16
doc/README
16
doc/README
|
@ -9,12 +9,18 @@ standards.txt
|
||||||
|
|
||||||
HOWTO/
|
HOWTO/
|
||||||
A few how-to documents; not necessarily up-to-date
|
A few how-to documents; not necessarily up-to-date
|
||||||
apps/
|
|
||||||
|
man1/
|
||||||
The openssl command-line tools; start with openssl.pod
|
The openssl command-line tools; start with openssl.pod
|
||||||
ssl/
|
|
||||||
The SSL library; start with ssl.pod
|
man3/
|
||||||
crypto/
|
The SSL library and the crypto library
|
||||||
The cryptographic library; start with crypto.pod
|
|
||||||
|
man5/
|
||||||
|
File formats
|
||||||
|
|
||||||
|
man7/
|
||||||
|
Overviews; start with crypto.pod and ssl.pod, for example
|
||||||
|
|
||||||
Formatted versions of the manpages (apps,ssl,crypto) can be found at
|
Formatted versions of the manpages (apps,ssl,crypto) can be found at
|
||||||
https://www.openssl.org/docs/manpages.html
|
https://www.openssl.org/docs/manpages.html
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue