forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autopsy-2.24-r1.ebuild
60 lines (49 loc) · 1.32 KB
/
autopsy-2.24-r1.ebuild
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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
DESCRIPTION="A graphical interface to the digital forensic analysis tools in The Sleuth Kit"
HOMEPAGE="http://www.sleuthkit.org/autopsy/"
SRC_URI="mirror://sourceforge/autopsy/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~hppa ppc x86"
IUSE=""
# Runtime depend on grep and file deliberate
RDEPEND=">=dev-lang/perl-5.8.0
>=app-forensics/sleuthkit-3.0.0
sys-apps/grep
sys-apps/file"
DEPEND=""
src_configure() {
./configure 2>&1 >/dev/null <<-EOF
n
/tmp
EOF
cat <<-EOF > autopsy
#!/usr/bin/perl -wT
use lib '/usr/lib/autopsy/';
use lib '/usr/lib/autopsy/lib/';
EOF
cat base/autopsy.base >> autopsy
sed -i 's:conf.pl:/etc/autopsy.pl:' $(grep -lr conf\.pl ./)
sed -i "s:INSTALLDIR = .*:INSTALLDIR = \'/usr/lib/autopsy\';:" conf.pl
}
src_compile() { :; }
src_install() {
insinto /usr/lib/autopsy
doins autopsy
doins global.css
insinto /usr/lib/autopsy/help
doins help/*
insinto /usr/lib/autopsy/lib
doins lib/*
insinto /usr/lib/autopsy/pict
doins pict/*
insinto /etc
newins conf.pl autopsy.pl
dodir /usr/bin
dosym /usr/lib/autopsy/autopsy /usr/bin/autopsy
fperms +x /usr/lib/autopsy/autopsy
doman $(find man/ -type f)
dodoc CHANGES.txt README* TODO.txt docs/sleuthkit-informer*.txt
}