From owner-svn-ports-all@FreeBSD.ORG Sat Oct 18 18:04:24 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7AFF48DB; Sat, 18 Oct 2014 18:04:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 667F0A5E; Sat, 18 Oct 2014 18:04:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9II4OQQ075381; Sat, 18 Oct 2014 18:04:24 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9II4NWO075373; Sat, 18 Oct 2014 18:04:23 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410181804.s9II4NWO075373@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 18 Oct 2014 18:04:23 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Oct 2014 18:04:24 -0000 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 +# $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 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