1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/sysutils/autopsy/Makefile
John Marino d236270bf7 sysutils/autopsy: Convert from INTERACTIVE port and assign new maintainer
This port was deprecated because it was unmaintained and interactive,
but Dylan Leigh has brought it back into good standing:

 * Convert to a regular port by fixing configure script
   - Skip useless prompts to user
   - Abort instead of prompting when paths are not found, which will never
     happen in ports anyway
   - Convert evidence locker and NSRL prompts to pkg-message
 * Updated description to warn about project inactivity
 * Updated WWW link
 * Add pkg-message
 * Assign maintainership to Dylan

PR:		191778
Submitted by:	Dylan Leigh
Verified by:	Redports 8x
2014-07-11 21:47:43 +00:00

37 lines
1.1 KiB
Makefile

# Created by: Pieter Danhieux <opr@bsdaemon.be>
# $FreeBSD$
PORTNAME= autopsy
PORTVERSION= 2.24
PORTREVISION= 1
CATEGORIES= sysutils security
MASTER_SITES= SF
MAINTAINER= fbsd@dylanleigh.net
COMMENT= Web-based (graphical) interface to The Sleuth Kit
LICENSE= GPLv2
BUILD_DEPENDS= ${LOCALBASE}/bin/ifind:${PORTSDIR}/sysutils/sleuthkit
RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= perl5
WEB= pict/*
WEBHELP= help/*
PERLBITS= lib/*.pm lib/*.pl conf.pl
pre-configure:
@${REINPLACE_CMD} -e 's,lib/,,' ${WRKSRC}/base/autopsy.base
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/autopsy ${STAGEDIR}${PREFIX}/bin
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/autopsy
cd ${WRKSRC} && ${INSTALL_DATA} ${PERLBITS} ${STAGEDIR}${PREFIX}/lib/autopsy
cd ${WRKSRC}/man/man1 && ${INSTALL_MAN} ${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1
@${MKDIR} ${STAGEDIR}${PREFIX}/share/autopsy/pict
@${MKDIR} ${STAGEDIR}${PREFIX}/share/autopsy/help
cd ${WRKSRC} && ${INSTALL_DATA} ${WEB} ${STAGEDIR}${PREFIX}/share/autopsy/pict
cd ${WRKSRC} && ${INSTALL_DATA} ${WEBHELP} ${STAGEDIR}${PREFIX}/share/autopsy/help
.include <bsd.port.mk>