Gentoo Archives: gentoo-dev

From: Torsten Veller <ml-en@××××××.net>
To: gentoo-dev@l.g.o, patrick@g.o
Subject: [gentoo-dev] Re: gentoo-x86 commit in app-forensics/sleuthkit: ChangeLog sleuthkit-3.0.0.ebuild
Date: Mon, 05 Jan 2009 00:12:48
Message-Id: 20090105001207.GA26966@veller.net
1 * "Patrick Lauer (patrick)" <patrick@g.o>:
2 > file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.0.0.ebuild?rev=1.1&view=markup
3 > plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.0.0.ebuild?rev=1.1&content-type=text/plain
4 >
5 >
6 > inherit eutils flag-o-matic autotools
7 >
8 > SLOT=0
9 >
10 > DESCRIPTION="A collection of file system and media management forensic analysis tools"
11 > HOMEPAGE="http://www.sleuthkit.org/sleuthkit/"
12 > SRC_URI="mirror://sourceforge/sleuthkit/${P}.tar.gz"
13 >
14 > LICENSE="GPL-2 IBM"
15 > KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
16
17 no IUSE.
18
19 > # disabling until imported into portage - patrick
20 > #DEPEND="ewf? ( app-forensics/libewf )
21 > # aff? ( app-forensics/afflib )"
22 > RDEPEND="dev-perl/DateManip"
23 >
24 > src_unpack() {
25 > unpack "${A}"
26 ^ ^ often not wanted
27 > cd "${S}"
28 > # AC_FUNC_REALLOC in configure.ac that hasn't been propagated
29 > eautoreconf
30 > }
31 >
32 > src_compile() {
33 > use hfs && append-flags "-DTSK_USE_HFS"
34 ^^^^^^^
35 > econf || die "configure failed"
36 > emake || die "make failed"
37 > }
38 >
39 > src_install() {
40 > emake install DESTDIR="${D}"
41 ^ || die
42 > dodoc docs/*.txt README.txt CHANGES.txt TODO.txt
43 > }

Replies

Subject Author
Re: [gentoo-dev] Re: gentoo-x86 commit in app-forensics/sleuthkit: ChangeLog sleuthkit-3.0.0.ebuild Nirbheek Chauhan <nirbheek.chauhan@×××××.com>