1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/security/zombiezapper/Makefile
Kris Kennaway 90d213a393 Zombiezapper sends commands to DDoS agents to stop flooding, leaving them
around for further forensics. As with most of the DDoS tools, this assumes
the agents are using the default settings.
2000-02-20 10:29:12 +00:00

34 lines
896 B
Makefile

# Ports collection makefile for: zombiezapper
# Version required: 1.0
# Date created: 19 Feb 2000
# Whom: Kris Kennaway <kris@FreeBSD.org>
#
# $FreeBSD$
#
DISTNAME= zombie
PKGNAME= zombiezapper-1.0
CATEGORIES= security
MASTER_SITES= http://razor.bindview.com/tools/files/
EXTRACT_SUFX= .tar
MAINTAINER= kris@FreeBSD.org
BUILD_DEPENDS= ${LOCALBASE}/bin/libnet-config:${PORTSDIR}/net/libnet/
LIBNETCONF= ${LOCALBASE}/bin/libnet-config
do-build:
cd ${WRKSRC} && \
${CC} ${CFLAGS} -o zz zz.c `${LIBNETCONF} --cflags` `${LIBNETCONF} --defines` `${LIBNETCONF} --libs` -L${LOCALBASE}/lib -I${LOCALBASE}/include
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/zz ${PREFIX}/bin/
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/zz/
${INSTALL_DATA} ${WRKSRC}/USAGE ${PREFIX}/share/doc/zz/
${INSTALL_DATA} ${WRKSRC}/tekpaper.txt ${PREFIX}/share/doc/zz/
.endif
.include <bsd.port.mk>