summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-01-27 07:17:45 +0000
committerTim Harder <radhermit@gentoo.org>2013-01-27 07:17:45 +0000
commit34121ff708825864a3570f611538989c301f6085 (patch)
tree4ac80ea30983839b8e8c11301cd61cf73544a388
parentVersion bump. Add subslot and zlib use flag. (diff)
downloadgentoo-2-34121ff708825864a3570f611538989c301f6085.tar.gz
gentoo-2-34121ff708825864a3570f611538989c301f6085.tar.bz2
gentoo-2-34121ff708825864a3570f611538989c301f6085.zip
Remove old.
(Portage version: 2.2.0_alpha160/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
-rw-r--r--app-forensics/sleuthkit/ChangeLog6
-rw-r--r--app-forensics/sleuthkit/files/sleuthkit-3.2.3-system-sqlite.patch23
-rw-r--r--app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild45
-rw-r--r--app-forensics/sleuthkit/sleuthkit-4.0.0.ebuild42
4 files changed, 5 insertions, 111 deletions
diff --git a/app-forensics/sleuthkit/ChangeLog b/app-forensics/sleuthkit/ChangeLog
index 254a69a264ac..f53ba613e289 100644
--- a/app-forensics/sleuthkit/ChangeLog
+++ b/app-forensics/sleuthkit/ChangeLog
@@ -1,6 +1,10 @@
# 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.74 2013/01/13 11:31:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/ChangeLog,v 1.75 2013/01/27 07:17:45 radhermit Exp $
+
+ 27 Jan 2013; Tim Harder <radhermit@gentoo.org> -sleuthkit-3.2.3.ebuild,
+ -files/sleuthkit-3.2.3-system-sqlite.patch, -sleuthkit-4.0.0.ebuild:
+ Remove old.
13 Jan 2013; Agostino Sarubbo <ago@gentoo.org> sleuthkit-4.0.1.ebuild:
Stable for x86, wrt bug #449920
diff --git a/app-forensics/sleuthkit/files/sleuthkit-3.2.3-system-sqlite.patch b/app-forensics/sleuthkit/files/sleuthkit-3.2.3-system-sqlite.patch
deleted file mode 100644
index 95aa3f270e54..000000000000
--- a/app-forensics/sleuthkit/files/sleuthkit-3.2.3-system-sqlite.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- sleuthkit-3.2.3/tsk3/auto/auto_db.cpp
-+++ sleuthkit-3.2.3/tsk3/auto/auto_db.cpp
-@@ -14,7 +14,7 @@
- */
-
- #include "tsk_auto_i.h"
--#include "sqlite3.h"
-+#include <sqlite3.h>
- #include <string.h>
-
- #define TSK_SCHEMA_VER 1
---- sleuthkit-3.2.3/tsk3/auto/Makefile.am
-+++ sleuthkit-3.2.3/tsk3/auto/Makefile.am
-@@ -3,7 +3,8 @@
-
- noinst_LTLIBRARIES = libtskauto.la
- # Note that the .h files are in the top-level Makefile
--libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp sqlite3.c sqlite3.h
-+libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp
-+libtskauto_la_LIBADD = -lsqlite3
-
- indent:
- indent *.cpp *.h
diff --git a/app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild b/app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild
deleted file mode 100644
index 582f18972f8f..000000000000
--- a/app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# 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.8 2012/10/23 09:15:55 radhermit 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-20120813[-ewf2]
- >=app-forensics/libewf-20120813[ewf]
- ) )
- 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
-}
diff --git a/app-forensics/sleuthkit/sleuthkit-4.0.0.ebuild b/app-forensics/sleuthkit/sleuthkit-4.0.0.ebuild
deleted file mode 100644
index f107da715cb4..000000000000
--- a/app-forensics/sleuthkit/sleuthkit-4.0.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# 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-4.0.0.ebuild,v 1.5 2012/12/26 18:01:08 jdhore Exp $
-
-EAPI="5"
-
-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 )
- aff? ( app-forensics/afflib )"
-RDEPEND="${DEPEND}
- dev-perl/DateManip"
-
-DOCS=( NEWS.txt README.txt )
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-system-sqlite.patch
- epatch "${FILESDIR}"/${PN}-3.2.3-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
-}