46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.30 2019/07/12 20:49:33 sthen Exp $
|
|
|
|
PORTROACH= limit:^2\.16
|
|
|
|
COMMENT= SSL library with an intuitive API and readable source code
|
|
|
|
DISTNAME= mbedtls-2.16.2
|
|
EXTRACT_SUFX= -gpl.tgz
|
|
|
|
# check SOVERSION
|
|
SHARED_LIBS += mbedtls 6.1 # 12
|
|
SHARED_LIBS += mbedcrypto 4.2 # 3
|
|
SHARED_LIBS += mbedx509 3.1 # 0
|
|
|
|
CATEGORIES= security
|
|
|
|
HOMEPAGE= https://tls.mbed.org/
|
|
|
|
MAINTAINER= Bjorn Ketelaars <bket@openbsd.org>
|
|
|
|
# Dual licensed: GPLv2+/Commercial, Apache v2 is also available
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MASTER_SITES= https://tls.mbed.org/download/
|
|
|
|
MODULES= devel/cmake \
|
|
lang/python
|
|
|
|
MODPY_RUNDEP= No
|
|
|
|
CONFIGURE_ARGS= -DUSE_SHARED_MBEDTLS_LIBRARY=ON \
|
|
-DLINK_WITH_PTHREAD=ON
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mbedtls
|
|
cd ${WRKSRC}; ${INSTALL_DATA} README.md ChangeLog \
|
|
${PREFIX}/share/doc/mbedtls
|
|
mv ${PREFIX}/bin ${PREFIX}/share/examples/mbedtls
|
|
(echo "These programs are useful code samples for a crypto expert, but";\
|
|
echo "should not be relied upon by the normal end-user.") \
|
|
> ${PREFIX}/share/examples/mbedtls/README
|
|
|
|
.include <bsd.port.mk>
|