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.1.3.ebuild
Date: Fri, 31 Jan 2014 08:17:39
Message-Id: 20140131081735.6A5242004C@flycatcher.gentoo.org
1 radhermit 14/01/31 08:17:35
2
3 Modified: ChangeLog
4 Added: sleuthkit-4.1.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.83 app-forensics/sleuthkit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/ChangeLog?rev=1.83&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/ChangeLog?rev=1.83&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/ChangeLog?r1=1.82&r2=1.83
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v
20 retrieving revision 1.82
21 retrieving revision 1.83
22 diff -u -r1.82 -r1.83
23 --- ChangeLog 10 Nov 2013 07:54:59 -0000 1.82
24 +++ ChangeLog 31 Jan 2014 08:17:35 -0000 1.83
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-forensics/sleuthkit
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.82 2013/11/10 07:54:59 radhermit Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.83 2014/01/31 08:17:35 radhermit Exp $
31 +
32 +*sleuthkit-4.1.3 (31 Jan 2014)
33 +
34 + 31 Jan 2014; Tim Harder <radhermit@g.o> +sleuthkit-4.1.3.ebuild:
35 + Version bump.
36
37 *sleuthkit-4.1.2 (10 Nov 2013)
38
39
40
41
42 1.1 app-forensics/sleuthkit/sleuthkit-4.1.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/sleuthkit-4.1.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/sleuthkit-4.1.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: sleuthkit-4.1.3.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-4.1.3.ebuild,v 1.1 2014/01/31 08:17:35 radhermit Exp $
52
53 EAPI=5
54 AUTOTOOLS_AUTORECONF=1
55 AUTOTOOLS_IN_SOURCE_BUILD=1
56
57 inherit autotools-utils
58
59 DESCRIPTION="A collection of file system and media management forensic analysis tools"
60 HOMEPAGE="http://www.sleuthkit.org/sleuthkit/"
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
62
63 LICENSE="GPL-2 IBM"
64 SLOT="0/10" # subslot = major soname version
65 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
66 IUSE="aff ewf static-libs"
67
68 DEPEND="dev-db/sqlite:3
69 ewf? ( app-forensics/libewf )
70 aff? ( app-forensics/afflib )"
71 RDEPEND="${DEPEND}
72 dev-perl/DateManip"
73
74 DOCS=( NEWS.txt README.txt )
75
76 PATCHES=(
77 "${FILESDIR}"/${PN}-4.1.0-system-sqlite.patch
78 "${FILESDIR}"/${PN}-4.1.0-tools-shared-libs.patch
79 )
80
81 src_configure() {
82 local myeconfargs=(
83 $(use_with aff afflib)
84 $(use_with ewf libewf)
85 )
86 autotools-utils_src_configure
87 }