blob: ce73c209bc9c29f90d92c3515e265796e91db9a3 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-2.09.ebuild,v 1.3 2007/08/30 03:10:26 jer Exp $
inherit toolchain-funcs eutils
DESCRIPTION="A collection of file system and media management forensic analysis tools"
HOMEPAGE="http://www.sleuthkit.org/sleuthkit/"
SRC_URI="mirror://sourceforge/sleuthkit/${P}.tar.gz
dbtool? ( mirror://gentoo/${P}_dbtool.patch.bz2 ) "
LICENSE="GPL-2 IBM"
SLOT="0"
KEYWORDS="~amd64 ~arm hppa ppc ~s390 ~sparc ~x86"
IUSE="dbtool"
RDEPEND="dev-perl/DateManip"
src_unpack() {
unpack ${A}
cd ${S}
use dbtool && epatch "${WORKDIR}/${P}_dbtool.patch"
epatch "${FILESDIR}/${PN}-makefiles_fix.patch"
epatch "${FILESDIR}/${PN}-fscheck.c_fix.patch"
sed -i '63,69d' src/timeline/config-perl || die "sed config-perl failed"
sed -i 's:`cd ../..; pwd`:/usr:' src/sorter/install \
|| die "sed install failed"
}
src_compile() {
export CC="$(tc-getCC)" OPT="${CFLAGS}"
# Targets: this is so it doesn't remake sys-apps/file
# -j1: it really doesn't compile well with -j2 or more,
# even after having fixed the Makefiles... :(
env -u CFLAGS \
emake -j1 -e bin no-perl sorter mactime || die "make failed"
}
src_install() {
dobin bin/* || die "dobin failed"
if has_version 'sys-apps/dstat' ; then
mv ${D}/usr/bin/dstat ${D}/usr/bin/dstat-dsk
echo
ewarn "You are installing sleuthkit while you have sys-apps/dstat"
ewarn "already installed."
ewarn "app-forensics/sleuthkit provides /usr/bin/dstat which is a tool"
ewarn "that displays details of a data structure, while sys-apps/dstat"
ewarn "provides /usr/bin/dstat as a system statistics tool."
echo
ewarn "The Sleuth Kit dstat binary has been renamed to"
ewarn "/usr/bin/dstat-tsk (see bug 131268). This may cause trouble with"
ewarn "applications using sleuthkit such as Autopsy. You may prefer"
ewarn "to unmerge sys-apps/dstat and re-emerge app-forensics/sleuthkit."
echo
fi
dodoc docs/*.txt
docinto api-doc
dohtml docs/api-doc/*
insinto /usr/share/sorter
doins share/sorter/*
doman man/man1/*
}
|