diff options
author | Daniel Black <dragonheart@gentoo.org> | 2006-06-28 23:35:59 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2006-06-28 23:35:59 +0000 |
commit | 8a73db66ee033dd03cf3b81c61efdf8b59562ee9 (patch) | |
tree | d20756dce80cae360ec63944b1a68fd359d38b7b /app-forensics/pyflag/files | |
parent | Fix bug #87004. (diff) | |
download | gentoo-2-8a73db66ee033dd03cf3b81c61efdf8b59562ee9.tar.gz gentoo-2-8a73db66ee033dd03cf3b81c61efdf8b59562ee9.tar.bz2 gentoo-2-8a73db66ee033dd03cf3b81c61efdf8b59562ee9.zip |
version bump
(Portage version: 2.1.1_pre1-r5)
Diffstat (limited to 'app-forensics/pyflag/files')
-rw-r--r-- | app-forensics/pyflag/files/digest-pyflag-0.82 | 3 | ||||
-rw-r--r-- | app-forensics/pyflag/files/pyflag-0.82-nodbtool.patch | 34 |
2 files changed, 37 insertions, 0 deletions
diff --git a/app-forensics/pyflag/files/digest-pyflag-0.82 b/app-forensics/pyflag/files/digest-pyflag-0.82 new file mode 100644 index 000000000000..979ae275ee97 --- /dev/null +++ b/app-forensics/pyflag/files/digest-pyflag-0.82 @@ -0,0 +1,3 @@ +MD5 9844124e6af54d4963a9d837678e902d pyflag-0.82.tar.bz2 944549 +RMD160 42d4d8b1e8b45afa93f243f853ed02ee8b903d7b pyflag-0.82.tar.bz2 944549 +SHA256 fa42c5e42e927e8eb00aff0bad009e25b62576291dcfccc7d18d5397b9fe1ed2 pyflag-0.82.tar.bz2 944549 diff --git a/app-forensics/pyflag/files/pyflag-0.82-nodbtool.patch b/app-forensics/pyflag/files/pyflag-0.82-nodbtool.patch new file mode 100644 index 000000000000..766b799a9ead --- /dev/null +++ b/app-forensics/pyflag/files/pyflag-0.82-nodbtool.patch @@ -0,0 +1,34 @@ +diff -ru pyflag-0.82.orig/configure.in pyflag-0.82/configure.in +--- pyflag-0.82.orig/configure.in 2006-06-25 20:20:30.000000000 +1000 ++++ pyflag-0.82/configure.in 2006-06-29 08:38:25.000000000 +1000 +@@ -15,6 +15,7 @@ + AC_CHECK_HEADER(pcap.h,,AC_MSG_ERROR([You Must install libpcap-dev to build pyflag])) + AC_CHECK_HEADER(magic.h,,AC_MSG_ERROR([You Must install libmagic-dev to build pyflag this may be part of file the package for some distros])) + #AC_CHECK_FILE($srcdir/src/filesystems/sleuthkit-2.03.tar.gz,,AC_MSG_ERROR([You Must download sleuthkit-2.03.tar.gz and place in src/filesystems ])) ++AM_CONDITIONAL(HAVE_DBTOOL, test x$HAVE_DBTOOL = xyes) + + # python checks + # (requires autoconf 1.5+ and the macros in acinclude.m4) +@@ -40,7 +41,7 @@ + fi + + # try to find magic files +-AC_ARG_WITH(magic, AC_HELP_STRING([--with-magic], [specify a colon-separated list of system magic files, default autodetect]),,[magic=$(file -v | tail -1 | awk '{print $4}')]) ++AC_ARG_WITH(magic, AC_HELP_STRING([--with-magic], [specify a colon-separated list of system magic files, default autodetect]),,[magic=$(file -v | tail -n 1 | awk '{print $4}')]) + AC_SUBST(magic) + + +diff -ru pyflag-0.82.orig/src/Makefile.am pyflag-0.82/src/Makefile.am +--- pyflag-0.82.orig/src/Makefile.am 2006-03-17 22:05:58.000000000 +1100 ++++ pyflag-0.82/src/Makefile.am 2006-06-29 08:37:43.000000000 +1000 +@@ -1,4 +1,9 @@ +-SUBDIRS = lib mailtools indextools_ng network regtools virustools filesystems include ++SUBDIRS = lib mailtools indextools_ng network regtools virustools include ++ ++if HAVE_DBTOOL ++else ++SUBDIRS+=filesystems ++endif + + # main pyflag (python) application + ## The pyflag directory goes in the system site-packages |