defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# Created by: Edward Tomasz Napierala <trasz@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= certificate-transparency
|
|
PORTVERSION= 20161015
|
|
PORTREVISION= 31
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Open framework for monitoring and auditing SSL certificates
|
|
|
|
LICENSE= APACHE20
|
|
|
|
LIB_DEPENDS?= libevent.so:devel/libevent \
|
|
libevhtp.so:www/libevhtp \
|
|
libgtest.so:devel/googletest \
|
|
libgflags.so:devel/gflags \
|
|
libglog.so:devel/glog \
|
|
libgmock.so:devel/googlemock \
|
|
libicuuc.so:devel/icu \
|
|
libjson-c.so:devel/json-c \
|
|
libleveldb.so:databases/leveldb \
|
|
libobjecthash.so:devel/objecthash \
|
|
libprotobuf.so:devel/protobuf \
|
|
libsqlite3.so:databases/sqlite3 \
|
|
libtcmalloc.so:devel/google-perftools
|
|
|
|
USES= autoreconf compiler:c++11-lib gmake pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= "CFLAGS+=-I${LOCALBASE}/include CXXFLAGS+=-lgtest CXXFLAGS+=-lgmock"
|
|
MAKE_FLAGS+= "V=1"
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= google
|
|
GH_TAGNAME= 28478cb
|
|
|
|
CPPFLAGS+= "-I${LOCALBASE}/include"
|
|
CPPFLAGS+= "-I${LOCALBASE}/include/evhtp"
|
|
LDFLAGS+= "-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|