freebsd-ports/sysutils/tct/Makefile
Edwin Groothuis 5b42e257dc [NEW PORT] sysutils/tct: Analyzer for forensic data
The Coroner's Toolkit (TCT) is a collection of tools designed
	to assist in a forensic examination of a computer. It is
	primarily designed for Unix systems, but it can some small
	amount of data collection & analysis from non-Unix disks/media.

	WWW: http://www.fish.com/tct/

	- Francisco Gomez -
	francisco@gomezmarin.com

PR:		ports/57048
Submitted by:	Francisco Gomez <francisco@gomezmarin.com>
2003-09-27 03:53:32 +00:00

56 lines
1.9 KiB
Makefile

# New ports collection makefile for: tct
# Date created: 21 September 2003
# Whom: Francisco Gomez <francisco@gomezmarin.com>
#
# $FreeBSD$
#
PORTNAME= tct
PORTVERSION= 1.12
CATEGORIES= sysutils
MASTER_SITES= http://www.fish.com/tct/ \
http://www.porcupine.org/forensics/
MAINTAINER= francisco@gomezmarin.com
COMMENT= Analyzer for forensic data
RUN_DEPENDS= ${PERL}:${PORTSDIR}/lang/perl5
RUN_DEPENDS+= ${LOCALBASE}/sbin/lsof:${PORTSDIR}/sysutils/lsof
MAN1= file.1 ils.1 mactime.1 pcat.1 grave-robber.1 lastcomm.1 major_minor.1 timeout.1 icat.1 lazarus.1 md5.1 unrm.1
MAN5= magic.5 tm-format.5
PORTDOCS= CHANGES COPYRIGHT INSTALL LICENSE MANIFEST OS-NOTES README.FIRST TODO docs/README docs/design-notes docs/lazarus.README docs/grave-robber.README docs/mac.README
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/bin/file ${LOCALBASE}/bin
@${INSTALL_DATA} -m 555 ${WRKSRC}/bin/grave-robber ${LOCALBASE}/bin
@${INSTALL_PROGRAM} ${WRKSRC}/bin/icat ${LOCALBASE}/bin
@${INSTALL_PROGRAM} ${WRKSRC}/bin/ils ${LOCALBASE}/bin
@${INSTALL_PROGRAM} ${WRKSRC}/bin/lastcomm ${LOCALBASE}/bin
@${INSTALL_DATA} -m 555 ${WRKSRC}/bin/mactime ${LOCALBASE}/bin
@${INSTALL_DATA} -m 555 ${WRKSRC}/lazarus/lazarus ${LOCALBASE}/bin
@${INSTALL_PROGRAM} ${WRKSRC}/bin/major_minor ${LOCALBASE}/bin
@${INSTALL_PROGRAM} ${WRKSRC}/bin/md5 ${LOCALBASE}/bin
@${INSTALL_PROGRAM} ${WRKSRC}/bin/pcat ${LOCALBASE}/bin
@${INSTALL_DATA} -m 555 ${WRKSRC}/bin/strip_tct_home ${LOCALBASE}/bin
@${INSTALL_PROGRAM} ${WRKSRC}/bin/unrm ${LOCALBASE}/bin
@${INSTALL_PROGRAM} ${WRKSRC}/bin/timeout ${LOCALBASE}/bin
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/tct
.for file in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/tct
.endfor
.endif
.for file in ${MAN1}
@${INSTALL_MAN} ${WRKSRC}/man/man1/${file} ${PREFIX}/man/man1
.endfor
.for file in ${MAN5}
@${INSTALL_MAN} ${WRKSRC}/man/man5/${file} ${PREFIX}/man/man5
.endfor
.include <bsd.port.mk>