diff options
author | adrianp <adrianp@pkgsrc.org> | 2007-09-01 22:33:53 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2007-09-01 22:33:53 +0000 |
commit | 945388a7ddf4fa62ce1ffa2096698d4a6a3c4963 (patch) | |
tree | a81039fab5de64bb078d12e3b080064e6c429cfd /net/nipper/Makefile | |
parent | 0ceeb9c837bdf03747a48d7c886b7342eb4b4a03 (diff) | |
download | pkgsrc-945388a7ddf4fa62ce1ffa2096698d4a6a3c4963.tar.gz |
Nipper performs security audits of network device configuration files. The
report produced by Nipper includes; detailed security-related issues with
recommendations, a configuration report and various appendices. Nipper has a
large number of configuration options which are described on this page.
Diffstat (limited to 'net/nipper/Makefile')
-rw-r--r-- | net/nipper/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net/nipper/Makefile b/net/nipper/Makefile new file mode 100644 index 00000000000..9f2135b9fd5 --- /dev/null +++ b/net/nipper/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2007/09/01 22:33:53 adrianp Exp $ +# + +DISTNAME= nipper-0.10.5 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nipper/} +EXTRACT_SUFX= .tgz + +MAINTAINER= adrianp@NetBSD.org +HOMEPAGE= http://nipper.sourceforge.net/ +COMMENT= Performs security audits of network device configuration + +INSTALLATION_DIRS= ${PREFIX}/share/doc/nipper + +do-build: + cd ${WRKSRC} && \ + ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o nipper nipper.c + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/nipper ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/docs/*.txt ${PREFIX}/share/doc/nipper + +.include "../../mk/bsd.pkg.mk" |