mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
8227c1bcf2
differences between the old and new files were entirely cosmetic. The full diff is available in the Audit-Trail of the PR below. PR: ports/104307 Submitted by: Frank J. Laszlo <laszlof@vonostingroup.com> Approved by: portmgr (marcus)
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# New ports collection makefile for: its4
|
|
# Date created: 21 February 2000
|
|
# Whom: Chris D. Faulhaber <jedgar@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= its4
|
|
PORTVERSION= 1.1.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= # Empty
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tool to scan C/C++ source for potential vulnerabilities
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--datadir=${PREFIX}/share/its4
|
|
MAN1= its4.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
|
|
IGNORE= may not be automatically fetched due to licensing restrictions.\
|
|
You MUST fetch the source manually from: http://www.cigital.com/its4/download.html; Once\
|
|
${DISTFILES} has been downloaded, move it to ${DISTDIR} and then restart this build
|
|
.endif
|
|
|
|
post-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/LICENSE ${PREFIX}/share/its4
|
|
@${ECHO}
|
|
@${ECHO} "This software is for non-commercial use only. See"
|
|
@${ECHO} "${PREFIX}/share/its4/LICENSE for details."
|
|
@${ECHO}
|
|
|
|
.include <bsd.port.post.mk>
|