Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Apr 2002 22:01:09 +0200 (CEST)
From:      Nicolas Rachinsky <list@rachinsky.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   docs/36629: OpenSSL manpages should be reachable without overwriting system manpages
Message-ID:  <200204012001.g31K19M77506@pc5.abc>

next in thread | raw e-mail | index | archive | help

>Number:         36629
>Category:       docs
>Synopsis:       OpenSSL manpages should be reachable without overwriting system manpages
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-doc
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Apr 01 12:10:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Nicolas Rachinsky
>Release:        FreeBSD 4.5-RELEASE-p2 i386
>Organization:
>Environment:
System: FreeBSD pc5.abc 4.5-RELEASE-p2 FreeBSD 4.5-RELEASE-p2 #1: Fri Mar 8 22:22:24 CET 2002 nicolas@pc5.abc:/usr/obj/usr/src/sys/NR i386


>Description:

Now you have the choice between having either the OpenSSL manpages or the system
manpages with the same name (e.g. passwd)

>How-To-Repeat:

man passwd

you either get the manpage for the passwd command or
the one for "openssl passwd" depending on WANT_OPENSSL_MANPAGES in
your make.conf

>Fix:

This is not a complete fix, the references in the manpages should be
updated as well, but I don't know how to do this.

Index: secure/lib/libcrypto/Makefile
===================================================================
RCS file: /usr/cvs-freebsd/src/secure/lib/libcrypto/Makefile,v
retrieving revision 1.15.2.11
diff -u -r1.15.2.11 Makefile
--- secure/lib/libcrypto/Makefile	4 Jul 2001 23:24:41 -0000	1.15.2.11
+++ secure/lib/libcrypto/Makefile	1 Apr 2002 18:42:45 -0000
@@ -343,11 +343,22 @@
 MAN+= ${target}
 CLEANFILES+= ${target}
 ${target}: ${LCRYPTO_SRC}/../doc/${pod}
 	pod2man --center=OpenSSL --release="OpenSSL 0.9.6a 5 Apr 2001" ${LCRYPTO_SRC}/../doc/${pod} > ${target}
 .endfor
 .endfor
 .endfor
 .endif
+
+.for section in 1 3
+.for pod in ${POD${section}}
+.for target in ${pod:T:S/.pod/.${section}/g}
+MAN+= openssl_${target}
+CLEANFILES+= openssl_${target}
+openssl_${target}: ${LCRYPTO_SRC}/../doc/${pod}
+	pod2man --center=OpenSSL --release="OpenSSL 0.9.6a 5 Apr 2001" ${LCRYPTO_SRC}/../doc/${pod} > openssl_${target}
+.endfor
+.endfor
+.endfor
 
 MAN+=	des_crypt.3
 


>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-doc" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200204012001.g31K19M77506>