pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Fixed pkglint warnings



Module Name:	pkgsrc-wip
Committed By:	Roland Illig <roland.illig%gmx.de@localhost>
Pushed By:	rillig
Date:		Sat Jul 9 23:27:26 2016 +0200
Changeset:	50b4dc6ddf78c6214ee8de134980e8e5e58266e9

Modified Files:
	bunny/Makefile

Log Message:
Fixed pkglint warnings

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=50b4dc6ddf78c6214ee8de134980e8e5e58266e9

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 bunny/Makefile | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diffs:
diff --git a/bunny/Makefile b/bunny/Makefile
index 7330b44..78a1a1b 100644
--- a/bunny/Makefile
+++ b/bunny/Makefile
@@ -6,21 +6,18 @@ CATEGORIES=	security
 MASTER_SITES=	http://bunny-the-fuzzer.googlecode.com/files/
 EXTRACT_SUFX=	.tgz
 
-MAINTAINER=	pkgsrc-users%netbsd.org@localhost
+MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=	http://code.google.com/p/bunny-the-fuzzer/
 COMMENT=	Tools with C code security fuzzer
 LICENSE=	apache-2.0
 
-WRKSRC=	${WRKDIR}/bunny
+WRKSRC=		${WRKDIR}/bunny
 USE_TOOLS+=	gmake
-
-INSTALLATION_DIRS=	bin
-
-BUNNY_FILES=	bunny-exec bunny-flow bunny-gcc bunny-main bunny-trace
+AUTO_MKDIRS=	yes
 
 do-install:
-	for a in ${BUNNY_FILES}; do \
-		${INSTALL_PROGRAM} ${WRKSRC}/$$a ${DESTDIR}${PREFIX}/bin/$$a; \
-	done
+.for program in bunny-exec bunny-flow bunny-gcc bunny-main bunny-trace
+	${INSTALL_PROGRAM} ${WRKSRC}/${program} ${DESTDIR}${PREFIX}/bin/${program}
+.endfor
 
 .include "../../mk/bsd.pkg.mk"


Home | Main Index | Thread Index | Old Index