diff options
author | nectar <nectar@FreeBSD.org> | 2003-02-10 19:57:56 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2003-02-10 19:57:56 +0000 |
commit | b36647ffe0b4c7db913b64382b29be7953f7dfa4 (patch) | |
tree | 4aff87bb2998fd6e0b9415d7e9964bea45904b96 /secure/usr.bin/openssl/Makefile | |
parent | ba1743e91bea2d716235e6ab42a5492659b6c7e6 (diff) | |
download | FreeBSD-src-b36647ffe0b4c7db913b64382b29be7953f7dfa4.zip FreeBSD-src-b36647ffe0b4c7db913b64382b29be7953f7dfa4.tar.gz |
Install the OpenSSL man pages in /usr/share/openssl/man
and remove the WANT_OPENSSL_MANPAGES knob.
Diffstat (limited to 'secure/usr.bin/openssl/Makefile')
-rw-r--r-- | secure/usr.bin/openssl/Makefile | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/secure/usr.bin/openssl/Makefile b/secure/usr.bin/openssl/Makefile index 9109390..0b41c15 100644 --- a/secure/usr.bin/openssl/Makefile +++ b/secure/usr.bin/openssl/Makefile @@ -8,6 +8,9 @@ LDADD= -lssl -lcrypto NOLINT= true +.if exists(Makefile.man) +.include "Makefile.man" +.endif .include "../../lib/libcrypto/Makefile.inc" CFLAGS+= -DMONOLITH -I${.CURDIR} @@ -19,22 +22,7 @@ SRCS+= app_rand.c apps.c asn1pars.c ca.c ciphers.c crl.c crl2p7.c \ s_client.c s_server.c s_socket.c s_time.c sess_id.c smime.c \ speed.c spkac.c verify.c version.c x509.c -MAN1= CA.pl.1 asn1parse.1 ca.1 ciphers.1 config.1 crl.1 crl2pkcs7.1 \ - dgst.1 dhparam.1 dsa.1 dsaparam.1 enc.1 gendsa.1 genrsa.1 \ - nseq.1 ocsp.1 openssl.1 passwd.1 pkcs12.1 pkcs7.1 pkcs8.1 \ - rand.1 req.1 rsa.1 rsautl.1 s_client.1 s_server.1 sess_id.1 \ - smime.1 speed.1 spkac.1 verify.1 version.1 x509.1 - .include <bsd.prog.mk> .PATH: ${LCRYPTO_SRC}/apps \ ${.CURDIR}/man - -mann-update: - for i in `( cd ${LCRYPTO_DOC}/apps ; ls *.pod )` ; do \ - cp ${LCRYPTO_DOC}/apps/$$i . ;\ - pod2man --section=3 --release="0.9.7" --center="OpenSSL" \ - $$i > ${.CURDIR}/man/$${i%%.pod}.1 ;\ - rm $$i ;\ - echo $${i%%.pod} ;\ - done |