Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

1
security/bunny/DESCR Normal file
View File

@@ -0,0 +1 @@
instrumented C code security fuzzer

27
security/bunny/Makefile Normal file
View File

@@ -0,0 +1,27 @@
# $NetBSD: Makefile,v 1.2 2016/09/19 13:04:27 wiedi Exp $
#
DISTNAME= bunny-0.93
PKGREVISION= 1
CATEGORIES= security
MASTER_SITES= http://bunny-the-fuzzer.googlecode.com/files/
EXTRACT_SUFX= .tgz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://code.google.com/p/bunny-the-fuzzer/
COMMENT= Tools with C code security fuzzer
LICENSE= apache-2.0
WRKSRC= ${WRKDIR}/bunny
USE_TOOLS+= gmake
AUTO_MKDIRS= yes
LDFLAGS.SunOS+= -lsocket -lnsl
do-install:
.for program in bunny-exec bunny-flow bunny-gcc bunny-main bunny-trace
${INSTALL_PROGRAM} ${WRKSRC}/${program} ${DESTDIR}${PREFIX}/bin/${program}
.endfor
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

6
security/bunny/PLIST Normal file
View File

@@ -0,0 +1,6 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2016/07/09 21:43:24 rillig Exp $
bin/bunny-exec
bin/bunny-flow
bin/bunny-gcc
bin/bunny-main
bin/bunny-trace

6
security/bunny/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.2 2016/09/19 13:04:27 wiedi Exp $
SHA1 (bunny-0.93.tgz) = 29dae023e4d6221f064fffae0e4011322a42041a
RMD160 (bunny-0.93.tgz) = daee7e9eb0fa71a5e25f9f7171d0598ddb03c134
Size (bunny-0.93.tgz) = 64575 bytes
SHA1 (patch-Makefile) = 2934cb0f48787f90271464f0c305667d31deb082

View File

@@ -0,0 +1,17 @@
$NetBSD: patch-Makefile,v 1.1 2016/09/19 13:04:27 wiedi Exp $
respect CFLAGS and LDFLAGS
--- Makefile.orig 2007-11-06 11:04:07.000000000 +0000
+++ Makefile
@@ -19,8 +19,8 @@
#
PROGNAME = bunny-gcc bunny-trace bunny-exec bunny-flow bunny-main
-CFLAGS = -Wall -O3 -funroll-loops -fno-strict-aliasing -ffast-math -Wno-pointer-sign
-EX_LIBS = -lcrypto -lm
+CFLAGS += -Wall -O3 -funroll-loops -fno-strict-aliasing -ffast-math -Wno-pointer-sign
+EX_LIBS = -lcrypto -lm $(LDFLAGS)
# CFLAGS = -Wall -g -ggdb -g3 -Wno-pointer-sign
# CFLAGS += -DDEBUG_TRACE=1