Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-forensics/sleuthkit: ChangeLog sleuthkit-3.1.0.ebuild
Date: Fri, 19 Feb 2010 15:06:38
Message-Id: E1NiUR7-0004Xx-78@stork.gentoo.org
1 patrick 10/02/19 15:06:33
2
3 Modified: ChangeLog
4 Added: sleuthkit-3.1.0.ebuild
5 Log:
6 Bump
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.44 app-forensics/sleuthkit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/sleuthkit/ChangeLog?rev=1.44&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/sleuthkit/ChangeLog?rev=1.44&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/sleuthkit/ChangeLog?r1=1.43&r2=1.44
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v
19 retrieving revision 1.43
20 retrieving revision 1.44
21 diff -u -r1.43 -r1.44
22 --- ChangeLog 1 May 2009 19:08:42 -0000 1.43
23 +++ ChangeLog 19 Feb 2010 15:06:32 -0000 1.44
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-forensics/sleuthkit
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.43 2009/05/01 19:08:42 armin76 Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.44 2010/02/19 15:06:32 patrick Exp $
30 +
31 +*sleuthkit-3.1.0 (19 Feb 2010)
32 +
33 + 19 Feb 2010; Patrick Lauer <patrick@g.o> +sleuthkit-3.1.0.ebuild:
34 + Bump
35
36 01 May 2009; Raúl Porcel <armin76@g.o> sleuthkit-3.0.0-r1.ebuild,
37 sleuthkit-3.0.1.ebuild:
38
39
40
41 1.1 app-forensics/sleuthkit/sleuthkit-3.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sleuthkit-3.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.1.0.ebuild,v 1.1 2010/02/19 15:06:32 patrick Exp $
51
52 inherit eutils flag-o-matic autotools
53
54 SLOT=0
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/sleuthkit/${P}.tar.gz"
59
60 LICENSE="GPL-2 IBM"
61 KEYWORDS="~amd64 ~arm ~hppa ~s390 ~sparc ~x86"
62
63 DEPEND="ewf? ( app-forensics/libewf )
64 aff? ( app-forensics/afflib )"
65 RDEPEND="${DEPEND}
66 dev-perl/DateManip"
67
68 IUSE="aff ewf"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 # AC_FUNC_REALLOC in configure.ac that hasn't been propagated
74 eautoreconf
75 }
76
77 src_compile() {
78 econf || die "configure failed"
79 emake || die "make failed"
80 }
81
82 src_install() {
83 emake install DESTDIR="${D}" || die
84 dodoc docs/*.txt README.txt CHANGES.txt TODO.txt
85 }