Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

7
security/sleuthkit/DESCR Normal file
View File

@@ -0,0 +1,7 @@
The Sleuth Kit (TSK) is a library and collection of command line tools that
allow you to investigate disk images. The core functionality of TSK allows
you to analyze volume and file system data. The plug-in framework allows
you to incorporate additional modules to analyze file contents and build
automated systems. The library can be incorporated into larger digital
forensics tools and the command line tools can be directly used to find
evidence.

View File

@@ -0,0 +1,18 @@
# $NetBSD: Makefile,v 1.3 2014/03/13 23:41:31 pettai Exp $
DISTNAME= sleuthkit-4.1.3
CATEGORIES= security sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sleuthkit/}
MAINTAINER= pettai@NetBSD.org
HOMEPAGE= http://www.sleuthkit.org/
COMMENT= The Sleuth Kit (TSK) opensource forensic toolkit
LICENSE= cpl-1.0 AND gnu-gpl-v2
GNU_CONFIGURE= yes
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_TOOLS+= gmake file perl:run
.include "../../sysutils/file/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

86
security/sleuthkit/PLIST Normal file
View File

@@ -0,0 +1,86 @@
@comment $NetBSD: PLIST,v 1.2 2014/03/13 23:41:31 pettai Exp $
bin/blkcalc
bin/blkcat
bin/blkls
bin/blkstat
bin/fcat
bin/ffind
bin/fiwalk
bin/fls
bin/fsstat
bin/hfind
bin/icat
bin/ifind
bin/ils
bin/img_cat
bin/img_stat
bin/istat
bin/jcat
bin/jls
bin/jpeg_extract
bin/mactime
bin/mmcat
bin/mmls
bin/mmstat
bin/sigfind
bin/sorter
bin/srch_strings
bin/tsk_comparedir
bin/tsk_gettimes
bin/tsk_loaddb
bin/tsk_recover
include/tsk/auto/tsk_auto.h
include/tsk/base/tsk_base.h
include/tsk/base/tsk_os.h
include/tsk/fs/tsk_ext2fs.h
include/tsk/fs/tsk_fatfs.h
include/tsk/fs/tsk_ffs.h
include/tsk/fs/tsk_fs.h
include/tsk/fs/tsk_hfs.h
include/tsk/fs/tsk_iso9660.h
include/tsk/fs/tsk_ntfs.h
include/tsk/fs/tsk_yaffs.h
include/tsk/hashdb/tsk_hashdb.h
include/tsk/img/tsk_img.h
include/tsk/libtsk.h
include/tsk/tsk_incs.h
include/tsk/vs/tsk_bsd.h
include/tsk/vs/tsk_dos.h
include/tsk/vs/tsk_gpt.h
include/tsk/vs/tsk_mac.h
include/tsk/vs/tsk_sun.h
include/tsk/vs/tsk_vs.h
lib/libtsk.la
man/man1/blkcalc.1
man/man1/blkcat.1
man/man1/blkls.1
man/man1/blkstat.1
man/man1/ffind.1
man/man1/fls.1
man/man1/fsstat.1
man/man1/hfind.1
man/man1/icat.1
man/man1/ifind.1
man/man1/ils.1
man/man1/img_cat.1
man/man1/img_stat.1
man/man1/istat.1
man/man1/jcat.1
man/man1/jls.1
man/man1/mactime.1
man/man1/mmcat.1
man/man1/mmls.1
man/man1/mmstat.1
man/man1/sigfind.1
man/man1/sorter.1
man/man1/tsk_comparedir.1
man/man1/tsk_gettimes.1
man/man1/tsk_loaddb.1
man/man1/tsk_recover.1
share/tsk/sorter/default.sort
share/tsk/sorter/freebsd.sort
share/tsk/sorter/images.sort
share/tsk/sorter/linux.sort
share/tsk/sorter/openbsd.sort
share/tsk/sorter/solaris.sort
share/tsk/sorter/windows.sort

View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.3 2014/03/13 23:41:31 pettai Exp $
SHA1 (sleuthkit-4.1.3.tar.gz) = 9350bb59bb5fbe41d6e29a8d0494460b937749ef
RMD160 (sleuthkit-4.1.3.tar.gz) = 223c6ffe22259ca057b6d9634813536e7ccd9dba
Size (sleuthkit-4.1.3.tar.gz) = 7952733 bytes
SHA1 (patch-configure) = 3ecfeb1af019fc7b365374c06e82aeb4b9900e6d
SHA1 (patch-tools_autotools_tsk__recover.cpp) = c82f8c366ae2675ee6c0c948c466b40f27bc1163

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-configure,v 1.1 2014/03/13 23:41:31 pettai Exp $
--- configure.orig 2014-03-13 22:51:42.000000000 +0000
+++ configure
@@ -21983,7 +21983,7 @@ else
ax_java_support=no
fi
- if test "x$ax_java_support" == "xyes"; then
+ if test "x$ax_java_support" = "xyes"; then
X_JNI_TRUE=
X_JNI_FALSE='#'
else

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-tools_autotools_tsk__recover.cpp,v 1.2 2014/03/13 23:41:31 pettai Exp $
needs limits.h for PATH_MAX
--- tools/autotools/tsk_recover.cpp.orig 2014-03-13 23:04:47.000000000 +0000
+++ tools/autotools/tsk_recover.cpp
@@ -9,6 +9,7 @@
**
*/
+#include "limits.h"
#include "tsk/tsk_tools_i.h"
#include <locale.h>
#include <sys/stat.h>