openssl: rename rand.3 and err.3 to avoid conflict with man-pages.

This commit is contained in:
Juan RP 2013-02-20 00:47:44 +01:00
parent bf2839da76
commit cbe387cb3c
1 changed files with 6 additions and 1 deletions

View File

@ -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
}