Date: Wed, 21 May 2014 11:59:07 +0000 (UTC) From: Sofian Brabez <sbz@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354745 - head/security/honggfuzz Message-ID: <201405211159.s4LBx7Mn074654@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sbz Date: Wed May 21 11:59:07 2014 New Revision: 354745 URL: http://svnweb.freebsd.org/changeset/ports/354745 QAT: https://qat.redports.org/buildarchive/r354745/ Log: - Fix build with clang Reported by: pkg-fallout Modified: head/security/honggfuzz/Makefile head/security/honggfuzz/pkg-descr Modified: head/security/honggfuzz/Makefile ============================================================================== --- head/security/honggfuzz/Makefile Wed May 21 11:49:17 2014 (r354744) +++ head/security/honggfuzz/Makefile Wed May 21 11:59:07 2014 (r354745) @@ -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 Modified: head/security/honggfuzz/pkg-descr ============================================================================== --- head/security/honggfuzz/pkg-descr Wed May 21 11:49:17 2014 (r354744) +++ head/security/honggfuzz/pkg-descr Wed May 21 11:59:07 2014 (r354745) @@ -2,4 +2,4 @@ Honggfuzz is a general-purpose fuzzing t 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405211159.s4LBx7Mn074654>