diff options
author | 2014-01-31 08:17:35 +0000 | |
---|---|---|
committer | 2014-01-31 08:17:35 +0000 | |
commit | 2ed823b51e11b8106f0751edf2084b116e2ec008 (patch) | |
tree | b74c4870d87218544652c0134f0e03fc3ad49c57 /app-forensics/sleuthkit | |
parent | Convert myconf to an array to make it easier to maintain. (diff) | |
download | gentoo-2-2ed823b51e11b8106f0751edf2084b116e2ec008.tar.gz gentoo-2-2ed823b51e11b8106f0751edf2084b116e2ec008.tar.bz2 gentoo-2-2ed823b51e11b8106f0751edf2084b116e2ec008.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'app-forensics/sleuthkit')
-rw-r--r-- | app-forensics/sleuthkit/ChangeLog | 9 | ||||
-rw-r--r-- | app-forensics/sleuthkit/sleuthkit-4.1.3.ebuild | 39 |
2 files changed, 46 insertions, 2 deletions
diff --git a/app-forensics/sleuthkit/ChangeLog b/app-forensics/sleuthkit/ChangeLog index 87dc785adf2f..aed0789163c1 100644 --- a/app-forensics/sleuthkit/ChangeLog +++ b/app-forensics/sleuthkit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-forensics/sleuthkit -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.82 2013/11/10 07:54:59 radhermit Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.83 2014/01/31 08:17:35 radhermit Exp $ + +*sleuthkit-4.1.3 (31 Jan 2014) + + 31 Jan 2014; Tim Harder <radhermit@gentoo.org> +sleuthkit-4.1.3.ebuild: + Version bump. *sleuthkit-4.1.2 (10 Nov 2013) diff --git a/app-forensics/sleuthkit/sleuthkit-4.1.3.ebuild b/app-forensics/sleuthkit/sleuthkit-4.1.3.ebuild new file mode 100644 index 000000000000..37882b0e2036 --- /dev/null +++ b/app-forensics/sleuthkit/sleuthkit-4.1.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-4.1.3.ebuild,v 1.1 2014/01/31 08:17:35 radhermit Exp $ + +EAPI=5 +AUTOTOOLS_AUTORECONF=1 +AUTOTOOLS_IN_SOURCE_BUILD=1 + +inherit autotools-utils + +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/10" # subslot = major soname version +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="aff ewf static-libs" + +DEPEND="dev-db/sqlite:3 + ewf? ( app-forensics/libewf ) + aff? ( app-forensics/afflib )" +RDEPEND="${DEPEND} + dev-perl/DateManip" + +DOCS=( NEWS.txt README.txt ) + +PATCHES=( + "${FILESDIR}"/${PN}-4.1.0-system-sqlite.patch + "${FILESDIR}"/${PN}-4.1.0-tools-shared-libs.patch +) + +src_configure() { + local myeconfargs=( + $(use_with aff afflib) + $(use_with ewf libewf) + ) + autotools-utils_src_configure +} |