mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
578991f425
- Move pkg-plist to Makefile. - Use patch name as appropriate. - Pass maintainership to submitter. PR: ports/139441 Submitted by: Sylvio Cesar <scjamorim@bsd.com.br>
28 lines
611 B
Makefile
28 lines
611 B
Makefile
# New ports collection makefile for: pscan
|
|
# Date created: 02 September 2000
|
|
# Whom: Kris Kennaway <kris@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pscan
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= http://deployingradius.com/pscan/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= scjamorim@bsd.com.br
|
|
COMMENT= Security C code scanner for misuse of format strings
|
|
|
|
ALL_TARGET= #empty
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
PLIST_FILES= bin/pscan \
|
|
bin/find_formats
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pscan ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/find_formats.sh ${PREFIX}/bin/find_formats
|
|
|
|
.include <bsd.port.mk>
|