pkgsrc/security/flawfinder/Makefile

24 lines
672 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.19 2010/02/10 19:17:44 joerg Exp $
Update to 1.27 2007-01-16 David A. Wheeler <dwheeler, at, dwheeler.com> * Release version 1.27 2007-01-16 Sebastien Tandel <sebastien, at, tandel (doht) be) * Cleaned up code for patch handling, fix bug in subdir handling, include patch info in help. 2007-01-15 Steve Kemp <steve at shellcode dot org> * Fix Debian bug 268236. This complains that flawfinder crashes when presented with a file it cannot read. The patch obviously can't prevent the problem, since the tool can't review what it can't read, but at least it halts with a cleaner error message. 2007-01-15 cmorgan <cmorgan47, at earthlink dooot net> * Fixed Debian bug 271287 (flawfinder). Fixed skipping newlines when line ended with \, which caused incorrect line number reporting. Skip multiple whitespace at one time. 2007-01-15 David A. Wheeler <dwheeler, at, dwheeler.com> * Modified Sebastien Tandel's code so that it also supports GNU diff (his code worked only for svn diff) * When using a patchfile, skip analysis of any file not listed in the patchfile. 2007-01-15 Sebastien Tandel <sebastien, at, tandel (doht) be) * Add support for using "svn diff" created patch files, based on the approach described by David A. Wheeler on how it could be done. 2007-01-15 David A. Wheeler <dwheeler, at, dwheeler.com> * By default, now skips directories beginning with "." (this makes it work nicely with many SCM systems). Added "--followdotdir" option if you WANT it to enter such directories. * Fixed divide-by-zero when no code found (not exactly common in normal use, but anyway!)
2007-01-17 22:48:25 +01:00
DISTNAME= flawfinder-1.27
PKGREVISION= 2
CATEGORIES= security devel
MASTER_SITES= http://www.dwheeler.com/flawfinder/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.dwheeler.com/flawfinder/
COMMENT= Python program to find flaws in C/C++ programs
2010-01-27 17:52:13 +01:00
PKG_DESTDIR_SUPPORT= user-destdir
2006-02-15 14:43:35 +01:00
NO_BUILD= yes
PYTHON_PATCH_SCRIPTS= flawfinder
2006-12-02 17:01:45 +01:00
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
do-install:
2010-01-27 17:52:13 +01:00
${INSTALL_SCRIPT} ${WRKSRC}/flawfinder ${DESTDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/flawfinder.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"