mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
597afc47ba
With hat: portmgr Sponsored by: Absolight
37 lines
834 B
Makefile
37 lines
834 B
Makefile
# Created by: Kris Kennaway <kris@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rats
|
|
PORTVERSION= 2.3
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= https://www.fortify.com/downloads2/public/ \
|
|
http://redundancy.redundancy.org/mirror/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Source code auditing tool
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libexpat.so:textproc/expat2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake
|
|
CONFIGURE_ARGS= --with-expat-lib=${LOCALBASE}/lib \
|
|
--with-expat-include=${LOCALBASE}/include/xml \
|
|
--datadir=${DATADIR}
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E '/^CFLAGS/! s,(BIN|LIB|MAN|SHARE)DIR),DESTDIR)$$(&,g' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|