1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/security/fl0p/Makefile
Martin Wilke fc454f85a8 The tool is a simple flow-analyzing passive L7 fingerprinter. It
examines the sequence of client-server exchanges, their relative
layer 7 payload sizes, and transmission intervals (as opposed to
inspecting the contents, which is what most passive fingerprinters
and "smart" sniffers would do to analyze transmissions). This is
then matched against a database of traffic pattern signatures to
infer some interesting facts about the traffic.

PR:		ports/106351
Submitted by:	trasz <trasz at pin.if.uz.zgora.pl>
2006-12-04 22:33:37 +00:00

36 lines
867 B
Makefile

# New ports collection makefile for: fl0p
# Date created: 2006-12-04
# Whom: trasz <trasz@pin.if.uz.zgora.pl>
#
# $FreeBSD$
#
PORTNAME= fl0p
PORTVERSION= 0.0.2.b
CATEGORIES= security
MASTER_SITES= http://lcamtuf.coredump.cx/soft/
DISTNAME= fl0p-devel
EXTRACT_SUFX= .tgz
MAINTAINER= trasz@pin.if.uz.zgora.pl
COMMENT= Passive L7 flow fingerprinting tool
WRKSRC= ${WRKDIR}/fl0p/
post-patch:
${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/config.h
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/fl0p ${PREFIX}/bin
${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/fl0p.fp ${DATADIR}/
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/doc/README ${DOCSDIR}/
${INSTALL_MAN} ${WRKSRC}/doc/ChangeLog ${DOCSDIR}/
${INSTALL_MAN} ${WRKSRC}/doc/TODO ${DOCSDIR}/
${INSTALL_MAN} ${WRKSRC}/doc/CREDITS ${DOCSDIR}/
.endif
.include <bsd.port.mk>