Date: Sat, 18 Oct 2014 18:04:23 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371149 - in head/security: . sslsplit sslsplit/files Message-ID: <201410181804.s9II4NWO075373@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Sat Oct 18 18:04:22 2014 New Revision: 371149 URL: https://svnweb.freebsd.org/changeset/ports/371149 QAT: https://qat.redports.org/buildarchive/r371149/ Log: security/sslsplit: add port Added: head/security/sslsplit/ head/security/sslsplit/Makefile (contents, props changed) head/security/sslsplit/distinfo (contents, props changed) head/security/sslsplit/files/ head/security/sslsplit/files/patch-GNUMakefile (contents, props changed) head/security/sslsplit/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Oct 18 17:40:00 2014 (r371148) +++ head/security/Makefile Sat Oct 18 18:04:22 2014 (r371149) @@ -956,6 +956,7 @@ SUBDIR += ssl-admin SUBDIR += sslscan SUBDIR += sslsniffer + SUBDIR += sslsplit SUBDIR += sslwrap SUBDIR += sssd SUBDIR += ssss Added: head/security/sslsplit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/sslsplit/Makefile Sat Oct 18 18:04:22 2014 (r371149) @@ -0,0 +1,19 @@ +# Created by: Steve Wills <swills@freebsd.org> +# $FreeBSD$ + +PORTNAME= sslsplit +PORTVERSION= 0.4.8 +CATEGORIES= security +MASTER_SITES= http://mirror.roe.ch/rel/sslsplit/ + +MAINTAINER= swills@freebsd.org +COMMENT= Transparent and scalable SSL/TLS interception + +LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 + +USES= gmake pkgconfig tar:bzip2 +MAKEFILE= GNUmakefile +MAKE_ENV= DESTDIR=${STAGEDIR} MANDIR=man +PLIST_FILES= bin/sslsplit man/man1/sslsplit.1.gz + +.include <bsd.port.mk> Added: head/security/sslsplit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/sslsplit/distinfo Sat Oct 18 18:04:22 2014 (r371149) @@ -0,0 +1,2 @@ +SHA256 (sslsplit-0.4.8.tar.bz2) = 2c181413b1ac98c2e968838cf2aff201b6ff5bba656c22f9d1c756626cd5aa16 +SIZE (sslsplit-0.4.8.tar.bz2) = 117734 Added: head/security/sslsplit/files/patch-GNUMakefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/sslsplit/files/patch-GNUMakefile Sat Oct 18 18:04:22 2014 (r371149) @@ -0,0 +1,31 @@ +--- GNUmakefile.orig 2014-01-15 18:07:07.000000000 +0000 ++++ GNUmakefile 2014-10-18 17:23:49.482421054 +0000 +@@ -96,6 +96,7 @@ + ### Variables you might need to override + + PREFIX?= /usr/local ++MANDIR?= share/man + + OPENSSL?= openssl + PKGCONFIG?= pkg-config +@@ -325,14 +326,14 @@ + $(RM) -rf *.dSYM + + install: $(TARGET) +- test -d $(PREFIX)/bin || $(MKDIR) -p $(PREFIX)/bin +- test -d $(PREFIX)/share/man/man1 || \ +- $(MKDIR) -p $(PREFIX)/share/man/man1 +- $(INSTALL) -o 0 -g 0 -m 0755 $(TARGET) $(PREFIX)/bin/ +- $(INSTALL) -o 0 -g 0 -m 0644 $(TARGET).1 $(PREFIX)/share/man/man1/ ++ test -d $(DESTDIR)$(PREFIX)/bin || $(MKDIR) -p $(DESTDIR)$(PREFIX)/bin ++ test -d $(DESTDIR)$(PREFIX)/$(MANDIR)/man1 || \ ++ $(MKDIR) -p $(DESTDIR)$(PREFIX)/$(MANDIR)/man1 ++ $(INSTALL) -o 0 -g 0 -m 0755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/ ++ $(INSTALL) -o 0 -g 0 -m 0644 $(TARGET).1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1/ + + deinstall: +- $(RM) -f $(PREFIX)/bin/$(TARGET) $(PREFIX)/share/man/man1/$(TARGET).1 ++ $(RM) -f $(DESTDIR)$(PREFIX)/bin/$(TARGET) $(DESTDIR)$(PREFIX)/$(MANDIR)/man1/$(TARGET).1 + + ifdef GITDIR + lint: Added: head/security/sslsplit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/sslsplit/pkg-descr Sat Oct 18 18:04:22 2014 (r371149) @@ -0,0 +1,8 @@ +SSLsplit is a tool for man-in-the-middle attacks against SSL/TLS encrypted +network connections. Connections are transparently intercepted through a +network address translation engine and redirected to SSLsplit. SSLsplit +terminates SSL/TLS and initiates a new SSL/TLS connection to the original +destination address, while logging all data transmitted. SSLsplit is intended +to be useful for network forensics and penetration testing. + +WWW: http://www.roe.ch/SSLsplit
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410181804.s9II4NWO075373>