mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
5b0bf6e947
I don't have the time to give to many of the ports I maintain at the moment. I wasn't expecting to be so busy this summer ... Please set all my ports back to ports@freebsd.org. PR: ports/56935 Submitted by: Dominic Marks <dom@wirespeed.org.uk>,Clement Laforet <sheepkiller@cultdeadsheep.org>,Oliver Eikemeier <eikemeier@fillmore-labs.com>
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
# New ports collection makefile for: fragroute
|
|
# Date created: 19 May 2002
|
|
# Whom: Dominic Marks <dominic.marks@btinternet.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fragroute
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= security net
|
|
MASTER_SITES= http://monkey.org/~dugsong/fragroute/ \
|
|
${MASTER_SITE_PACKETSTORM}
|
|
MASTER_SITE_SUBDIR= UNIX/security
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A tool for intercepting, modifying and rewriting egress traffic
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libdnet.a:${PORTSDIR}/net/libdnet \
|
|
${LOCALBASE}/lib/libevent.a:${PORTSDIR}/devel/libevent
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-libdnet=${PREFIX} \
|
|
--with-libevent=${PREFIX} --with-pcap
|
|
|
|
MAN8= fragroute.8 fragtest.8
|
|
|
|
SCRIPTS= README.snort base-1 frag-1 frag-2 frag-3 frag-4 frag-5 \
|
|
frag-6 frag-7-unix frag-7-win32 ins-2 ins-3 tcbc-2 tcp-3 tcp-5 \
|
|
tcp-7 tcp-9
|
|
|
|
pre-install:
|
|
${MKDIR} ${PREFIX}/share/${PORTNAME}
|
|
.for FILE in ${SCRIPTS}
|
|
${INSTALL_DATA} ${WRKSRC}/scripts/${FILE} \
|
|
${PREFIX}/share/${PORTNAME}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|