Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-forensics/sleuthkit/files: sleuthkit-3.2.3-tools-shared-libs.patch sleuthkit-3.2.3-system-sqlite.patch
Date: Mon, 27 Feb 2012 22:06:23
Message-Id: 20120227220613.1DF8E2004C@flycatcher.gentoo.org
1 radhermit 12/02/27 22:06:13
2
3 Added: sleuthkit-3.2.3-tools-shared-libs.patch
4 sleuthkit-3.2.3-system-sqlite.patch
5 Log:
6 Version bump. Use system sqlite library (bug #383129) and respect LDFLAGS (bug #336951).
7
8 (Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 app-forensics/sleuthkit/files/sleuthkit-3.2.3-tools-shared-libs.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/files/sleuthkit-3.2.3-tools-shared-libs.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/files/sleuthkit-3.2.3-tools-shared-libs.patch?rev=1.1&content-type=text/plain
15
16 Index: sleuthkit-3.2.3-tools-shared-libs.patch
17 ===================================================================
18 --- sleuthkit-3.2.3/tools/autotools/Makefile.am
19 +++ sleuthkit-3.2.3/tools/autotools/Makefile.am
20 @@ -1,6 +1,5 @@
21 AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall
22 LDADD = ../../tsk3/libtsk3.la
23 -LDFLAGS += -static
24 EXTRA_DIST = .indent.pro
25
26 bin_PROGRAMS = tsk_recover tsk_loaddb tsk_comparedir tsk_gettimes
27 --- sleuthkit-3.2.3/tools/fstools/Makefile.am
28 +++ sleuthkit-3.2.3/tools/fstools/Makefile.am
29 @@ -1,6 +1,5 @@
30 AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall
31 LDADD = ../../tsk3/libtsk3.la
32 -LDFLAGS += -static
33 EXTRA_DIST = .indent.pro fscheck.cpp
34
35 bin_PROGRAMS = blkcalc blkcat blkls blkstat ffind fls fsstat icat ifind ils \
36 --- sleuthkit-3.2.3/tools/hashtools/Makefile.am
37 +++ sleuthkit-3.2.3/tools/hashtools/Makefile.am
38 @@ -1,6 +1,5 @@
39 AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall
40 LDADD = ../../tsk3/libtsk3.la
41 -LDFLAGS += -static
42 EXTRA_DIST = .indent.pro md5.c sha1.c
43
44 bin_PROGRAMS = hfind
45 --- sleuthkit-3.2.3/tools/imgtools/Makefile.am
46 +++ sleuthkit-3.2.3/tools/imgtools/Makefile.am
47 @@ -1,6 +1,5 @@
48 AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall
49 LDADD = ../../tsk3/libtsk3.la
50 -LDFLAGS += -static
51 EXTRA_DIST = .indent.pro
52
53 bin_PROGRAMS = img_cat img_stat
54 --- sleuthkit-3.2.3/tools/srchtools/Makefile.am
55 +++ sleuthkit-3.2.3/tools/srchtools/Makefile.am
56 @@ -6,7 +6,6 @@
57
58 sigfind_SOURCES = sigfind.cpp
59 sigfind_LDADD = ../../tsk3/libtsk3.la
60 -sigfind_LDFLAGS = -static
61
62 indent:
63 indent *.c *.cpp
64 --- sleuthkit-3.2.3/tools/vstools/Makefile.am
65 +++ sleuthkit-3.2.3/tools/vstools/Makefile.am
66 @@ -1,6 +1,5 @@
67 AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall
68 LDADD = ../../tsk3/libtsk3.la
69 -LDFLAGS += -static
70 EXTRA_DIST = .indent.pro
71
72 bin_PROGRAMS = mmls mmstat mmcat
73
74
75
76 1.1 app-forensics/sleuthkit/files/sleuthkit-3.2.3-system-sqlite.patch
77
78 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/files/sleuthkit-3.2.3-system-sqlite.patch?rev=1.1&view=markup
79 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/files/sleuthkit-3.2.3-system-sqlite.patch?rev=1.1&content-type=text/plain
80
81 Index: sleuthkit-3.2.3-system-sqlite.patch
82 ===================================================================
83 --- sleuthkit-3.2.3/tsk3/auto/auto_db.cpp
84 +++ sleuthkit-3.2.3/tsk3/auto/auto_db.cpp
85 @@ -14,7 +14,7 @@
86 */
87
88 #include "tsk_auto_i.h"
89 -#include "sqlite3.h"
90 +#include <sqlite3.h>
91 #include <string.h>
92
93 #define TSK_SCHEMA_VER 1
94 --- sleuthkit-3.2.3/tsk3/auto/Makefile.am
95 +++ sleuthkit-3.2.3/tsk3/auto/Makefile.am
96 @@ -3,7 +3,8 @@
97
98 noinst_LTLIBRARIES = libtskauto.la
99 # Note that the .h files are in the top-level Makefile
100 -libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp sqlite3.c sqlite3.h
101 +libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp
102 +libtskauto_la_LIBADD = -lsqlite3
103
104 indent:
105 indent *.cpp *.h