mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
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
@ -573,12 +573,9 @@ PROCESS_PODS=\
|
||||
set -e; \
|
||||
here=`cd $(SRCDIR); pwd`; \
|
||||
point=$$here/util/point.sh; \
|
||||
for ds in apps:1 crypto:3 ssl:3; do \
|
||||
defdir=`echo $$ds | cut -f1 -d:`; \
|
||||
defsec=`echo $$ds | cut -f2 -d:`; \
|
||||
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; \
|
||||
for ds in man1 man3 man5 man7 ; do \
|
||||
SEC=`echo $$ds | sed -e s/man//`; \
|
||||
for p in $(SRCDIR)/doc/$$ds/*.pod; do \
|
||||
fn=`basename $$p .pod`; \
|
||||
Name=$$fn; \
|
||||
NAME=`echo $$fn | tr '[a-z]' '[A-Z]'`; \
|
||||
@ -608,12 +605,9 @@ PROCESS_PODS=\
|
||||
UNINSTALL_DOCS=\
|
||||
set -e; \
|
||||
here=`cd $(SRCDIR); pwd`; \
|
||||
for ds in apps:1 crypto:3 ssl:3; do \
|
||||
defdir=`echo $$ds | cut -f1 -d:`; \
|
||||
defsec=`echo $$ds | cut -f2 -d:`; \
|
||||
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; \
|
||||
for ds in man1 man3 man5 man7 ; do \
|
||||
SEC=`echo $$ds | sed -e s/man//`; \
|
||||
for p in $(SRCDIR)/doc/$$ds/*.pod; do \
|
||||
fn=`basename $$p .pod`; \
|
||||
suf=`eval "echo $$OUTSUFFIX"`; \
|
||||
top=`eval "echo $$OUTTOP"`; \
|
||||
|
16
doc/README
16
doc/README
@ -9,12 +9,18 @@ standards.txt
|
||||
|
||||
HOWTO/
|
||||
A few how-to documents; not necessarily up-to-date
|
||||
apps/
|
||||
|
||||
man1/
|
||||
The openssl command-line tools; start with openssl.pod
|
||||
ssl/
|
||||
The SSL library; start with ssl.pod
|
||||
crypto/
|
||||
The cryptographic library; start with crypto.pod
|
||||
|
||||
man3/
|
||||
The SSL library and the crypto library
|
||||
|
||||
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
|
||||
https://www.openssl.org/docs/manpages.html
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user