From cbe387cb3c0a5b3f58421d6e8e8f77f9e74191b1 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 20 Feb 2013 00:47:44 +0100 Subject: [PATCH] openssl: rename rand.3 and err.3 to avoid conflict with man-pages. --- srcpkgs/openssl/template | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/srcpkgs/openssl/template b/srcpkgs/openssl/template index ca1993c8b56..d35b6c6c988 100644 --- a/srcpkgs/openssl/template +++ b/srcpkgs/openssl/template @@ -2,7 +2,7 @@ pkgname=openssl _openssl_version=1.0.1 version=${_openssl_version}e -revision=2 +revision=3 fulldepends="perl" crossmakedepends="zlib-devel" conf_files="/etc/ssl/openssl.cnf" @@ -55,4 +55,9 @@ do_install() { # Rename passwd.1, conflicts with shadow. mv ${DESTDIR}/usr/share/man/man1/passwd.1 \ ${DESTDIR}/usr/share/man/man1/openssl-passwd.1 + + # Rename rand.3 and err.3, conflicts with man-pages. + for f in rand err; do + mv ${DESTDIR}/usr/share/man/man3/${f}.3 \ + ${DESTDIR}/usr/share/man/man3/openssl-${f}.3 }