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: sleuthkit-3.2.3.ebuild ChangeLog
Date: Mon, 27 Feb 2012 22:06:23
Message-Id: 20120227220612.C3D902004B@flycatcher.gentoo.org
1 radhermit 12/02/27 22:06:12
2
3 Modified: ChangeLog
4 Added: sleuthkit-3.2.3.ebuild
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.53 app-forensics/sleuthkit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/ChangeLog?rev=1.53&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/ChangeLog?rev=1.53&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/ChangeLog?r1=1.52&r2=1.53
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v
20 retrieving revision 1.52
21 retrieving revision 1.53
22 diff -u -r1.52 -r1.53
23 --- ChangeLog 10 Dec 2011 22:15:38 -0000 1.52
24 +++ ChangeLog 27 Feb 2012 22:06:12 -0000 1.53
25 @@ -1,6 +1,14 @@
26 # ChangeLog for app-forensics/sleuthkit
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.52 2011/12/10 22:15:38 radhermit Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.53 2012/02/27 22:06:12 radhermit Exp $
31 +
32 +*sleuthkit-3.2.3 (27 Feb 2012)
33 +
34 + 27 Feb 2012; Tim Harder <radhermit@g.o> +sleuthkit-3.2.3.ebuild,
35 + +files/sleuthkit-3.2.3-system-sqlite.patch,
36 + +files/sleuthkit-3.2.3-tools-shared-libs.patch:
37 + Version bump. Use system sqlite library (bug #383129) and respect LDFLAGS
38 + (bug #336951).
39
40 10 Dec 2011; Tim Harder <radhermit@g.o> sleuthkit-3.2.1.ebuild,
41 sleuthkit-3.2.2.ebuild:
42
43
44
45 1.1 app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild?rev=1.1&content-type=text/plain
49
50 Index: sleuthkit-3.2.3.ebuild
51 ===================================================================
52 # Copyright 1999-2012 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild,v 1.1 2012/02/27 22:06:12 radhermit Exp $
55
56 EAPI="4"
57 AUTOTOOLS_AUTORECONF=1
58
59 inherit eutils autotools-utils
60
61 DESCRIPTION="A collection of file system and media management forensic analysis tools"
62 HOMEPAGE="http://www.sleuthkit.org/sleuthkit/"
63 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
64
65 LICENSE="GPL-2 IBM"
66 SLOT=0
67 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
68 IUSE="aff ewf static-libs"
69
70 DEPEND="ewf? ( app-forensics/libewf[-ewf2] )
71 aff? ( app-forensics/afflib )"
72 RDEPEND="${DEPEND}
73 dev-perl/DateManip"
74
75 DOCS=( NEWS.txt README.txt )
76
77 PATCHES=(
78 "${FILESDIR}"/${P}-system-sqlite.patch
79 "${FILESDIR}"/${P}-tools-shared-libs.patch
80 )
81
82 src_configure() {
83 local myeconfargs=(
84 $(use_with aff afflib)
85 $(use_with ewf libewf)
86 )
87 autotools-utils_src_configure
88 }