From owner-freebsd-doc Mon Apr 1 12:10:18 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1477F37B41B for ; Mon, 1 Apr 2002 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g31KA1w37923; Mon, 1 Apr 2002 12:10:01 -0800 (PST) (envelope-from gnats) Received: from mailout03.sul.t-online.com (mailout03.sul.t-online.com [194.25.134.81]) by hub.freebsd.org (Postfix) with ESMTP id 6941737B41F for ; Mon, 1 Apr 2002 12:01:22 -0800 (PST) Received: from fwd11.sul.t-online.de by mailout03.sul.t-online.com with smtp id 16s7zV-00073w-02; Mon, 01 Apr 2002 22:01:21 +0200 Received: from pc5.abc (520067998749-0001@[217.233.101.236]) by fmrl11.sul.t-online.com with esmtp id 16s7zK-0H5VRIC; Mon, 1 Apr 2002 22:01:10 +0200 Received: (from nicolas@localhost) by pc5.abc (8.11.6/8.11.6) id g31K19M77506; Mon, 1 Apr 2002 22:01:09 +0200 (CEST) (envelope-from nicolas) Message-Id: <200204012001.g31K19M77506@pc5.abc> Date: Mon, 1 Apr 2002 22:01:09 +0200 (CEST) From: Nicolas Rachinsky Reply-To: Nicolas Rachinsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36629: OpenSSL manpages should be reachable without overwriting system manpages Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >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