pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/openssl openssl: Avoid case-sensitive issue o...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/88dc6e62bafb
branches:  trunk
changeset: 372684:88dc6e62bafb
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Thu Dec 14 09:18:47 2017 +0000

description:
openssl: Avoid case-sensitive issue on Darwin.  Bump PKGREVISION.

diffstat:

 security/openssl/Makefile     |  13 ++++++++++++-
 security/openssl/PLIST.common |   4 ++--
 2 files changed, 14 insertions(+), 3 deletions(-)

diffs (46 lines):

diff -r 71fa394fcc11 -r 88dc6e62bafb security/openssl/Makefile
--- a/security/openssl/Makefile Thu Dec 14 08:53:32 2017 +0000
+++ b/security/openssl/Makefile Thu Dec 14 09:18:47 2017 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.234 2017/12/09 18:02:02 fhajny Exp $
+# $NetBSD: Makefile,v 1.235 2017/12/14 09:18:47 jperkin Exp $
 
 DISTNAME=      openssl-1.0.2n
+PKGREVISION=   1
 CATEGORIES=    security
 MASTER_SITES=  https://www.openssl.org/source/
 
@@ -171,5 +172,15 @@
 pre-configure:
        cd ${WRKSRC} && ${PERL5} util/perlpath.pl ${PERL5}
 
+# BN_print.3 and bn_print.3 cannot co-exist on Darwin, we choose to remove
+# bn_print.3 simply because it has more aliases to the same manual page.
+PLIST_VARS+=   notmac
+.if ${OPSYS} == "Darwin"
+post-install:
+       ${RM} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3/bn_print.3*
+.else
+PLIST.notmac=  yes
+.endif
+
 .include "../../mk/dlopen.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 71fa394fcc11 -r 88dc6e62bafb security/openssl/PLIST.common
--- a/security/openssl/PLIST.common     Thu Dec 14 08:53:32 2017 +0000
+++ b/security/openssl/PLIST.common     Thu Dec 14 09:18:47 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST.common,v 1.31 2017/11/24 20:34:23 bsiegert Exp $
+@comment $NetBSD: PLIST.common,v 1.32 2017/12/14 09:18:47 jperkin Exp $
 bin/c_rehash
 bin/openssl
 include/openssl/aes.h
@@ -1648,7 +1648,7 @@
 man/man3/bn_mul_part_recursive.3
 man/man3/bn_mul_recursive.3
 man/man3/bn_mul_words.3
-man/man3/bn_print.3
+${PLIST.notmac}man/man3/bn_print.3
 man/man3/bn_set_high.3
 man/man3/bn_set_low.3
 man/man3/bn_set_max.3



Home | Main Index | Thread Index | Old Index