diff options
author | sbz <sbz@FreeBSD.org> | 2014-05-21 19:59:07 +0800 |
---|---|---|
committer | sbz <sbz@FreeBSD.org> | 2014-05-21 19:59:07 +0800 |
commit | bf1a9b47c98519bc16fecab6410bc77bcda35ebe (patch) | |
tree | b5a9cdeee555ef4b6fc50827b5421b2b5824f6fc /security | |
parent | b0907d5523aa975ce7ead1b95244329c13a906ea (diff) | |
download | freebsd-ports-gnome-bf1a9b47c98519bc16fecab6410bc77bcda35ebe.tar.gz freebsd-ports-gnome-bf1a9b47c98519bc16fecab6410bc77bcda35ebe.tar.zst freebsd-ports-gnome-bf1a9b47c98519bc16fecab6410bc77bcda35ebe.zip |
- Fix build with clang
Reported by: pkg-fallout
Diffstat (limited to 'security')
-rw-r--r-- | security/honggfuzz/Makefile | 3 | ||||
-rw-r--r-- | security/honggfuzz/pkg-descr | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/security/honggfuzz/Makefile b/security/honggfuzz/Makefile index 9820399bb8b2..9495e3b78d38 100644 --- a/security/honggfuzz/Makefile +++ b/security/honggfuzz/Makefile @@ -3,6 +3,7 @@ PORTNAME= honggfuzz PORTVERSION= 0.3 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} EXTRACT_SUFX= .tgz @@ -11,7 +12,6 @@ MAINTAINER= sbz@FreeBSD.org COMMENT= General-purpose fuzzer with simple, command-line interface LICENSE= APACHE20 -LICENSE_FILE= ${WRKSRC}/COPYING USES= gmake OPTIONS_DEFINE= EXAMPLES @@ -19,6 +19,7 @@ OPTIONS_DEFINE= EXAMPLES # inplace replacement to remove relative binary path in examples scripts post-patch: ${REINPLACE_CMD} -i "" -E "s,\.\./,," ${WRKSRC}/examples/*.sh + ${REINPLACE_CMD} -i "" -E 's,gcc,${CC},' ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin diff --git a/security/honggfuzz/pkg-descr b/security/honggfuzz/pkg-descr index ff87890514a0..699c88c8b054 100644 --- a/security/honggfuzz/pkg-descr +++ b/security/honggfuzz/pkg-descr @@ -2,4 +2,4 @@ Honggfuzz is a general-purpose fuzzing tool. Given a starting corpus of test files, Hongfuzz supplies and modifies input to a test program and utilize the ptrace() API/POSIX signal interface to detect and log crashes. -WWW: http://code.google.com/p/honggfuzz/ +WWW: http://code.google.com/p/honggfuzz/ |