mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
This is broken, unmaintained, and there is almost identical, but maintained
and better named port, `sysutils/sleuthkit'.
This commit is contained in:
parent
71243e3830
commit
af84b3e2aa
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=126786
@ -428,7 +428,6 @@
|
||||
SUBDIR += symlinks
|
||||
SUBDIR += synergy
|
||||
SUBDIR += syslog-ng
|
||||
SUBDIR += task
|
||||
SUBDIR += tcplist
|
||||
SUBDIR += tct
|
||||
SUBDIR += tdir
|
||||
|
@ -1,41 +0,0 @@
|
||||
# New ports collection makefile for: task
|
||||
# Date created: Sun Oct 6 23:52:10 PDT 2002
|
||||
# Whom: Kris Kennaway <kris@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= task
|
||||
PORTVERSION= 1.52
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= sysutils security
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
||||
${MASTER_SITE_PACKETSTORM:S:%SUBDIR%:UNIX/utilities:}
|
||||
MASTER_SITE_SUBDIR=sleuthkit
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= The @stake Sleuth Kit for forensic analysis
|
||||
|
||||
USE_PERL5= yes
|
||||
DOCS= README docs/* tct.docs/*
|
||||
MAN1= blockcalc.1 dcalc.1 dcat.1 dls.1 dstat.1 ffind.1 \
|
||||
find_file.1 find_inode.1 fls.1 fsstat.1 icat.1 ifind.1 \
|
||||
ils.1 istat.1 mactime.1 unrm.1
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} >= 600000
|
||||
BROKEN= "Does not build on FreeBSD 6.x"
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
||||
.endif
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/bin/mactime ${PREFIX}/bin
|
||||
cd ${WRKSRC}/bin && ${INSTALL_PROGRAM} dcalc dcat dls dstat ffind \
|
||||
icat fls fsstat icat ifind ils istat ${PREFIX}/bin
|
||||
cd ${WRKSRC}/man/man1 && ${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1
|
||||
|
||||
.include <bsd.port.post.mk>
|
@ -1,5 +0,0 @@
|
||||
MD5 (task-1.52.tar.gz) = 475af26bad7492d61490a69ad7f2472e
|
||||
SHA1 (task-1.52.tar.gz) = e0f10d2913d9fbe5f21b5df8da970da625054f2b
|
||||
RMD160 (task-1.52.tar.gz) = 3ee308f0141ae56d6144611f2c704c0c604e4e3c
|
||||
SHA256 (task-1.52.tar.gz) = 3fb58e90472735fa93a1bbcfbcfb6498aca6192cf21c4f2c9d0ef3098e1ff01c
|
||||
SIZE (task-1.52.tar.gz) = 451820
|
@ -1,11 +0,0 @@
|
||||
--- ./src/makedefs.orig Sun Oct 6 23:53:33 2002
|
||||
+++ ./src/makedefs Sun Oct 6 23:53:45 2002
|
||||
@@ -8,6 +8,8 @@
|
||||
;;
|
||||
FreeBSD.4*) DEFS="-DFREEBSD4"
|
||||
;;
|
||||
+ FreeBSD.5*) DEFS="-DFREEBSD5"
|
||||
+ ;;
|
||||
OpenBSD.[23]*) DEFS="-DOPENBSD2"
|
||||
;;
|
||||
OpenBSD.3*) DEFS="-DOPENBSD3"
|
@ -1,11 +0,0 @@
|
||||
--- ./src/fstools/fs_tools.h.orig Sun Oct 6 23:54:26 2002
|
||||
+++ ./src/fstools/fs_tools.h Sun Oct 6 23:56:05 2002
|
||||
@@ -91,7 +91,7 @@
|
||||
/*
|
||||
* FreeBSD can handle filesystems > 2GB.
|
||||
*/
|
||||
-#if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4)
|
||||
+#if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) || defined(FREEBSD5)
|
||||
#define SUPPORTED
|
||||
#define LSEEK lseek
|
||||
#define OFF_T off_t
|
@ -1,17 +0,0 @@
|
||||
--- ./src/hash/Makefile.orig Mon Oct 7 00:02:28 2002
|
||||
+++ ./src/hash/Makefile Mon Oct 7 00:02:41 2002
|
||||
@@ -1,12 +1,11 @@
|
||||
SHELL = /bin/sh
|
||||
-CC = gcc
|
||||
-OPT = -O
|
||||
+CC ?= gcc
|
||||
DEBUG = -g
|
||||
BIN = ../../bin
|
||||
MAN = ../../man
|
||||
PROGS = $(BIN)/md5 $(BIN)/sha1
|
||||
MANPAGES= $(MAN)/man1/md5.1
|
||||
-CFLAGS = $(DEFS) $(INCL) $(OPT) $(DEBUG) -I. $(XFLAGS)
|
||||
+CFLAGS += $(DEFS) $(INCL) $(OPT) $(DEBUG) -I. $(XFLAGS)
|
||||
|
||||
defs:
|
||||
@sh ../makedefs
|
@ -1,13 +0,0 @@
|
||||
--- ./src/misc/Makefile.orig Mon Oct 7 00:02:50 2002
|
||||
+++ ./src/misc/Makefile Mon Oct 7 00:03:00 2002
|
||||
@@ -1,8 +1,7 @@
|
||||
SHELL = /bin/sh
|
||||
-CC = gcc
|
||||
-OPT = -O
|
||||
+CC ?= gcc
|
||||
DEBUG = -g
|
||||
-CFLAGS = $(DEFS) $(OPT) $(DEBUG)
|
||||
+CFLAGS += $(DEFS) $(OPT) $(DEBUG)
|
||||
LIBOBJ = mymalloc.o error.o strerror.o split_at.o
|
||||
LIB = aux_lib.a
|
||||
BIN_DIR =
|
@ -1,6 +0,0 @@
|
||||
The Sleuth Kit is the only open source forensic toolkit for a complete
|
||||
analysis of Microsoft and UNIX file systems. It enables investigators
|
||||
to identify and recover evidence from images acquired during incident
|
||||
response or from live systems.
|
||||
|
||||
WWW: http://www.sleuthkit.org/
|
@ -1,24 +0,0 @@
|
||||
bin/mactime
|
||||
bin/dcalc
|
||||
bin/dcat
|
||||
bin/dls
|
||||
bin/dstat
|
||||
bin/ffind
|
||||
bin/icat
|
||||
bin/fls
|
||||
bin/fsstat
|
||||
bin/ifind
|
||||
bin/ils
|
||||
bin/istat
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CHANGES.FROM.TCT
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README.FIRST
|
||||
%%PORTDOCS%%%%DOCSDIR%%/additional-resources
|
||||
%%PORTDOCS%%%%DOCSDIR%%/bibliography
|
||||
%%PORTDOCS%%%%DOCSDIR%%/fat.README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/filesystem.README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/help-recovering-file
|
||||
%%PORTDOCS%%%%DOCSDIR%%/help-when-broken-into
|
||||
%%PORTDOCS%%%%DOCSDIR%%/ntfs.README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/timeline.README
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
Loading…
Reference in New Issue
Block a user