diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2000-02-20 10:29:12 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2000-02-20 10:29:12 +0000 |
commit | 90d213a393856238425f70a60c925d458836fc4d (patch) | |
tree | 212f88502be7753d7b64d1f64842b65868c0818f /security/zombiezapper/Makefile | |
parent | Install kermit documentation and example files correctly. This is (diff) |
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.
Notes
Notes:
svn path=/head/; revision=26027
Diffstat (limited to 'security/zombiezapper/Makefile')
-rw-r--r-- | security/zombiezapper/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/security/zombiezapper/Makefile b/security/zombiezapper/Makefile new file mode 100644 index 000000000000..5aa5e71b5c3f --- /dev/null +++ b/security/zombiezapper/Makefile @@ -0,0 +1,33 @@ +# 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> |