42e5a17c26
- Update to version 2.2.6 [1] - Remove CA root cert that is installed by default Changes: ftp://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.2.6-relnotes.txt [1] Reviewed by: koobs (mentor), feld (mentor) Approved by: (mentor) Differential Revision: D5115
44 lines
922 B
Makefile
44 lines
922 B
Makefile
# Created by: Vsevolod Stakhov <vsevolod@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libressl
|
|
PORTVERSION= 2.2.6
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= OPENBSD/LibreSSL
|
|
|
|
MAINTAINER= brnrd@FreeBSD.org
|
|
COMMENT= Free version of the SSL/TLS protocol forked from OpenSSL
|
|
|
|
LICENSE= BSD4CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
CPE_VENDOR= openbsd
|
|
|
|
OPTIONS_DEFINE= MAN3
|
|
OPTIONS_DEFAULT= MAN3
|
|
MAN3_DESC= Install API manpages (section 3)
|
|
|
|
CONFLICTS?= openssl-[0-9]* \
|
|
libressl-devel-[0-9]*
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= cpe libtool pathfix pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
INSTALL_TARGET= install-strip
|
|
TEST_TARGET= check
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
CONFIGURE_TARGET= x86_64-portbld-${OPSYS:tl}${OSREL}
|
|
.endif
|
|
|
|
post-install-MAN3-off:
|
|
${RM} -rf ${STAGEDIR}/${PREFIX}/man/man3
|
|
${REINPLACE_CMD} -e '/^man\/man3/d' ${TMPPLIST}
|
|
|
|
post-install:
|
|
${RM} -rf ${STAGEDIR}/${PREFIX}/etc/ssl/cert.pem
|
|
|
|
.include <bsd.port.post.mk>
|