You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild

43 lines
993 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild,v 1.7 2012/07/03 20:15:33 jer Exp $
EAPI="4"
inherit eutils autotools
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 static-libs"
DEPEND="dev-db/sqlite:3
ewf? ( app-forensics/libewf[-ewf2] )
aff? ( app-forensics/afflib )"
RDEPEND="${DEPEND}
dev-perl/DateManip"
DOCS=( NEWS.txt README.txt )
src_prepare() {
epatch "${FILESDIR}"/${P}-system-sqlite.patch
epatch "${FILESDIR}"/${P}-tools-shared-libs.patch
eautoreconf
}
src_configure() {
econf \
$(use_with aff afflib) \
$(use_with ewf libewf) \
$(use_enable static-libs static)
}
src_install() {
default
prune_libtool_files
}