blob: 686e197ca9fcf3c5f6b098185460e85fb8f8f347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.2.1.ebuild,v 1.6 2011/10/11 17:10:26 jer Exp $
EAPI="4"
DESCRIPTION="A collection of file system and media management forensic analysis tools"
HOMEPAGE="http://www.sleuthkit.org/sleuthkit/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2 IBM"
SLOT=0
KEYWORDS="amd64 hppa ~ppc x86"
IUSE="aff ewf"
DEPEND="ewf? ( app-forensics/libewf )
aff? ( app-forensics/afflib )"
RDEPEND="${DEPEND}
dev-perl/DateManip"
src_configure() {
econf \
$(use_with aff afflib) \
$(use_with ewf libewf)
}
src_install() {
default
dodoc docs/*.txt README.txt
}
|