freebsd-ports/security/scanlogd/Makefile
Pav Lucistnik 131a5036b4 Add scanlogd, a TCP port scan detection tool, originally designed to illustrate
various attacks an IDS developer has to deal with. Unlike some of the other
port scan detection tools out there, scanlogd is designed to be totally safe
to use.

PR:		ports/66449
Submitted by:	Roman Bogorodskiy <bogorodskiy@inbox.ru>
2004-05-14 18:08:13 +00:00

38 lines
793 B
Makefile

# New ports collection makefile for: scanlogd
# Date created: 10 May 2004
# Whom: Roman Bogorodskiy
#
# $FreeBSD$
#
PORTNAME= scanlogd
PORTVERSION= 2.2.1
CATEGORIES= security
MASTER_SITES= http://openwall.com/scanlogd/ \
ftp://ftp.openwall.com/pub/projects/scanlogd/ \
ftp://rt.fm/pub/scanlogd/
MAINTAINER= bogorodskiy@inbox.ru
COMMENT= TCP port scan detection tool
.if defined(WITH_LIBNIDS)
BUILD_DEPENDS+= ${LOCALBASE}/lib/libnids.a:${PORTSDIR}/net/libnids
.endif
.if defined(WITH_LIBNIDS)
ALL_TARGET= libnids
.else
ALL_TARGET= libpcap
.endif
MAN8= scanlogd.8
PLIST_FILES= bin/scanlogd
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/scanlogd ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/scanlogd.8 ${MANPREFIX}/man/man8
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>