mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
a84c115a09
Approved by: portmgr (not really, but touches unstaged ports)
36 lines
929 B
Makefile
36 lines
929 B
Makefile
# Created by: Vaida Bogdan
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= netleak
|
|
PORTVERSION= 0.1a
|
|
PORTREVISION= 2
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-devel/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tool to detect connectivity between network segments
|
|
|
|
RUN_DEPENDS= p5-Net-PcapUtils>=0:${PORTSDIR}/net/p5-Net-PcapUtils \
|
|
p5-NetPacket>=0:${PORTSDIR}/net/p5-NetPacket \
|
|
p5-Mail-Sendmail>=0:${PORTSDIR}/mail/p5-Mail-Sendmail \
|
|
p5-Net-RawIP>=0:${PORTSDIR}/net/p5-Net-RawIP \
|
|
p5-IO-Interface>=0:${PORTSDIR}/net/p5-IO-Interface \
|
|
p5-NetAddr-IP>0:${PORTSDIR}/net-mgmt/p5-NetAddr-IP
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
USES= perl5 shebangfix tar:tgz
|
|
USE_PERL5= run
|
|
SHEBANG_FILES= netleak netleakd
|
|
|
|
PORTDOCS= BUGS README TODO
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|