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: ChangeLog sleuthkit-4.0.1.ebuild
Date: Sun, 25 Nov 2012 10:03:06
Message-Id: 20121125100255.8C2AF20066@flycatcher.gentoo.org
1 radhermit 12/11/25 10:02:55
2
3 Modified: ChangeLog
4 Added: sleuthkit-4.0.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.66 app-forensics/sleuthkit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/ChangeLog?rev=1.66&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/ChangeLog?rev=1.66&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/ChangeLog?r1=1.65&r2=1.66
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v
20 retrieving revision 1.65
21 retrieving revision 1.66
22 diff -u -r1.65 -r1.66
23 --- ChangeLog 23 Oct 2012 09:15:55 -0000 1.65
24 +++ ChangeLog 25 Nov 2012 10:02:55 -0000 1.66
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-forensics/sleuthkit
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.65 2012/10/23 09:15:55 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.66 2012/11/25 10:02:55 radhermit Exp $
30 +
31 +*sleuthkit-4.0.1 (25 Nov 2012)
32 +
33 + 25 Nov 2012; Tim Harder <radhermit@g.o> +sleuthkit-4.0.1.ebuild:
34 + Version bump.
35
36 23 Oct 2012; Tim Harder <radhermit@g.o> sleuthkit-3.2.3.ebuild:
37 Update libewf dep since the API-related use flag was changed in the most
38
39
40
41 1.1 app-forensics/sleuthkit/sleuthkit-4.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/sleuthkit-4.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/sleuthkit-4.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sleuthkit-4.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-4.0.1.ebuild,v 1.1 2012/11/25 10:02:55 radhermit Exp $
51
52 EAPI="5"
53
54 inherit eutils autotools
55
56 DESCRIPTION="A collection of file system and media management forensic analysis tools"
57 HOMEPAGE="http://www.sleuthkit.org/sleuthkit/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-2 IBM"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
63 IUSE="aff ewf static-libs"
64
65 DEPEND="dev-db/sqlite:3
66 ewf? ( app-forensics/libewf )
67 aff? ( app-forensics/afflib )"
68 RDEPEND="${DEPEND}
69 dev-perl/DateManip"
70
71 DOCS=( NEWS.txt README.txt )
72
73 src_prepare() {
74 epatch "${FILESDIR}"/${PN}-4.0.0-system-sqlite.patch
75 epatch "${FILESDIR}"/${PN}-3.2.3-tools-shared-libs.patch
76 eautoreconf
77 }
78
79 src_configure() {
80 econf \
81 $(use_with aff afflib) \
82 $(use_with ewf libewf) \
83 $(use_enable static-libs static)
84 }
85
86 src_install() {
87 default
88 prune_libtool_files
89 }