mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
d0bb05930a
Sylvio's last commit was 17 months ago, a full 5 months after all of his ports could have been reset per policy. Given the push to complete staging (48 ports are still unstaged, something like 70+ have already been staged by other committers) and given that PRs are automatically assigned but never addressed, it's better just to reset all the ports and PRs so that it's clear to others that these ports are free to maintain. Approved by: portmgr (implicit)
24 lines
548 B
Makefile
24 lines
548 B
Makefile
# Created by: Kris Kennaway <kris@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pscan
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= http://deployingradius.com/pscan/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
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 ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/find_formats.sh \
|
|
${STAGEDIR}${PREFIX}/bin/find_formats
|
|
|
|
.include <bsd.port.mk>
|