1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00
freebsd-ports/security/honggfuzz/Makefile
Thomas Abthorpe e0ac1afbf4 - The proper acronym for Apache Software License 2 is really AL2
- Thanks to crees@ for generating the initial patch

PR:		ports/163521
Submitted by:	Pedro Giffuni <pfg apache.org>
Hat:		portmgr
Exp run by:	pav
2012-01-09 15:41:08 +00:00

37 lines
829 B
Makefile

# New ports collection makefile for: honggfuzz
# Date created: 2010-12-13
# Whom: Sofian Brabez <sbrabez@gmail.com>
#
# $FreeBSD$
#
PORTNAME= honggfuzz
PORTVERSION= 0.3
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
EXTRACT_SUFX= .tgz
MAINTAINER= sbz@FreeBSD.org
COMMENT= A general-purpose fuzzer with simple, command-line interface
LICENSE= AL2
LICENSE_FILE= ${WRKSRC}/COPYING
USE_GMAKE= yes
# inplace replacement to remove relative binary path in examples scripts
post-patch:
@${REINPLACE_CMD} -i "" -E "s,\.\./,," ${WRKSRC}/examples/*.sh
do-build:
@(cd ${WRKSRC}; ${GMAKE})
do-install:
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR})
.endif
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.include <bsd.port.mk>