Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Nov 2019 18:29:54 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r517279 - head/security/certificate-transparency
Message-ID:  <201911111829.xABITsU4030430@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Mon Nov 11 18:29:54 2019
New Revision: 517279
URL: https://svnweb.freebsd.org/changeset/ports/517279

Log:
  - Add LICENSE_FILE
  - Add missing dependency on snappy
  - Switch to USES=localbase
  - Cosmetic fixes

Modified:
  head/security/certificate-transparency/Makefile

Modified: head/security/certificate-transparency/Makefile
==============================================================================
--- head/security/certificate-transparency/Makefile	Mon Nov 11 18:26:36 2019	(r517278)
+++ head/security/certificate-transparency/Makefile	Mon Nov 11 18:29:54 2019	(r517279)
@@ -3,15 +3,16 @@
 
 PORTNAME=	certificate-transparency
 PORTVERSION=	20161015
-PORTREVISION=	39
+PORTREVISION=	40
 CATEGORIES=	security
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Open framework for monitoring and auditing SSL certificates
 
 LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
 
-LIB_DEPENDS?=	libevent.so:devel/libevent \
+LIB_DEPENDS=	libevent.so:devel/libevent \
 		libevhtp.so:www/libevhtp \
 		libgtest.so:devel/googletest \
 		libgflags.so:devel/gflags \
@@ -23,20 +24,16 @@ LIB_DEPENDS?=	libevent.so:devel/libevent \
 		libobjecthash.so:devel/objecthash \
 		libprotobuf.so:devel/protobuf \
 		libsqlite3.so:databases/sqlite3 \
-		libtcmalloc.so:devel/google-perftools
+		libtcmalloc.so:devel/google-perftools \
+		libsnappy.so:archivers/snappy
 
-USES=		autoreconf compiler:c++11-lib gmake pkgconfig ssl
+USES=		autoreconf compiler:c++11-lib gmake localbase:ldflags pkgconfig ssl
 
 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.pre.mk>
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911111829.xABITsU4030430>