diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2020-05-29 03:46:52 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2020-05-29 03:46:52 +0000 |
commit | dbf7a2611047f5eed0f91a7d8f05738562f92abd (patch) | |
tree | b6567dd81124ed4a741b3c92ca97b4ac39d128a5 /security/fizz/Makefile | |
parent | b123e5dd0758047f772396870b5c81d59215f9f8 (diff) | |
download | ports-dbf7a2611047f5eed0f91a7d8f05738562f92abd.tar.gz ports-dbf7a2611047f5eed0f91a7d8f05738562f92abd.zip |
New port: security/fizz: C++14 implementation of the TLS-1.3 standard
Notes
Notes:
svn path=/head/; revision=536921
Diffstat (limited to 'security/fizz/Makefile')
-rw-r--r-- | security/fizz/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/security/fizz/Makefile b/security/fizz/Makefile new file mode 100644 index 000000000000..1f035b79fef4 --- /dev/null +++ b/security/fizz/Makefile @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= fizz +DISTVERSIONPREFIX= v +DISTVERSION= 2020.05.25.00 +CATEGORIES= security + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C++14 implementation of the TLS-1.3 standard + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/../LICENSE + +LIB_DEPENDS= libdouble-conversion.so:devel/double-conversion \ + libfmt.so:devel/libfmt \ + libfolly.so:devel/folly \ + libgflags.so:devel/gflags \ + libglog.so:devel/glog \ + libsodium.so:security/libsodium + +USES= cmake compiler:c++14-lang ssl +USE_GITHUB= yes +GH_ACCOUNT= facebookincubator +USE_LDCONFIG= yes + +WRKSRC_SUBDIR= ${PORTNAME} + +CMAKE_ON= BUILD_SHARED_LIBS +CMAKE_OFF= BUILD_TESTS BUILD_EXAMPLES + +.include <bsd.port.mk> |