console interface that allows traffic flows to be inspected and edited on the fly. 'mitmdump' is the command-line version of mitmproxy, with the same functionality but without the frills. Think tcpdump for HTTP. WWW: http://mitmproxy.org/index.html PR: ports/173449 Submitted by: Hung-Yi Chen <gaod@hychen.org> Feature safe: yes
26 lines
844 B
Makefile
26 lines
844 B
Makefile
# New ports collection makefile for: mitmproxy
|
|
# Date created: 08 November 2012
|
|
# Whom: Hung-Yi Chen <gaod@hychen.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mitmproxy
|
|
PORTVERSION= 0.8
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://mitmproxy.org/download/
|
|
|
|
MAINTAINER= gaod@hychen.org
|
|
COMMENT= An SSL-capable man-in-the-middle proxy
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1>0:${PORTSDIR}/devel/py-asn1 \
|
|
${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging \
|
|
${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml \
|
|
${PYTHON_PKGNAMEPREFIX}openssl>0:${PORTSDIR}/security/py-openssl \
|
|
${PYTHON_PKGNAMEPREFIX}urwid>0:${PORTSDIR}/devel/py-urwid
|
|
|
|
USE_PYDISTUTILS=easy_install
|
|
USE_PYTHON= 2.6+
|
|
PLIST_SUB+= PORTVERSION=${PORTVERSION} PYTHONVERSION=${_PYTHON_VERSION}
|
|
|
|
.include <bsd.port.mk>
|