1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00
freebsd-ports/security/honggfuzz/Makefile
Mark Linimon aff42c7199 Mark ports broken on mips64 that are already broken on powerpc64. In
most cases, the failure mode is the same.  Also, mark them broken on
mips when necessary.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
2018-07-02 04:00:29 +00:00

39 lines
1.1 KiB
Makefile

# Created by: Sofian Brabez <sbrabez@gmail.com>
# $FreeBSD$
PORTNAME= honggfuzz
PORTVERSION= 0.7
CATEGORIES= security
MAINTAINER= sbz@FreeBSD.org
COMMENT= General-purpose fuzzer with simple, command-line interface
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN_mips= fails to compile: cc1: error: unrecognized command line option -Wframe-larger-than=131072
BROKEN_mips64= fails to compile: cc1: error: unrecognized command line option -Wframe-larger-than=131072
BROKEN_powerpc64= fails to compile: cc1: error: unrecognized command line option -Wframe-larger-than=131072
USES= gmake
USE_GITHUB= yes
GH_ACCOUNT= google
GC_TAGNAME= 6d01e82
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},' \
-e 's| -Werror||' ${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
do-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
.include <bsd.port.mk>