diff options
author | leot <leot> | 2016-01-20 17:43:47 +0000 |
---|---|---|
committer | leot <leot> | 2016-01-20 17:43:47 +0000 |
commit | 2f7c565e964399d01bff3c8ca9991f7df3ddd8bd (patch) | |
tree | 5ec26a70a6539f492e4c078d38fc0fa1aba03c37 /security | |
parent | 4fe6a996ebd13b71bb96c9e0bb75a0879b27c36b (diff) | |
download | pkgsrc-2f7c565e964399d01bff3c8ca9991f7df3ddd8bd.tar.gz |
sslsplit also needs libevent (noted via pkgsrc-bulk@).
While here pass all the dependencies via MAKE_ENV (this will - hopefully - avoid
further problem on platforms where openssl and libevent are not builtins).
Diffstat (limited to 'security')
-rw-r--r-- | security/sslsplit/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/security/sslsplit/Makefile b/security/sslsplit/Makefile index 01053552e8e..549568abd26 100644 --- a/security/sslsplit/Makefile +++ b/security/sslsplit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2015/03/15 18:33:29 tnn Exp $ +# $NetBSD: Makefile,v 1.3 2016/01/20 17:43:47 leot Exp $ DISTNAME= sslsplit-0.4.10 CATEGORIES= security @@ -13,11 +13,15 @@ LICENSE= 2-clause-bsd MAKE_FILE= GNUmakefile USE_TOOLS+= gmake +MAKE_ENV+= LIBEVENT_BASE=${BUILDLINK_PREFIX.libevent} +MAKE_ENV+= OPENSSL_BASE=${BUILDLINK_PREFIX.openssl} + INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/sslsplit ${DESTDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/sslsplit.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 +.include "../../devel/libevent/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |