Commit 99d63d46 authored by Rich Salz's avatar Rich Salz
Browse files

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: default avatarRichard Levitte <levitte@openssl.org>
parent 4f3015bb
Loading
Loading
Loading
Loading
+6 −12
Original line number Original line Diff line number Diff line
@@ -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"`; \
+11 −5
Original line number Original line Diff line number Diff line
@@ -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
+0 −0

File moved.

+0 −0

File moved.

+0 −0

File moved.

Loading