summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-03-08 09:31:56 +0000
committerTim Harder <radhermit@gentoo.org>2012-03-08 09:31:56 +0000
commitebf678b47d6fd4ee571aad1cf01b17c9903d4d27 (patch)
treece9827188a4ec79bb1e462872b4745c5e74f1c14 /app-forensics/autopsy
parentRevbump updating plugin/javaws to icedtea-web-1.2. (diff)
downloadgentoo-2-ebf678b47d6fd4ee571aad1cf01b17c9903d4d27.tar.gz
gentoo-2-ebf678b47d6fd4ee571aad1cf01b17c9903d4d27.tar.bz2
gentoo-2-ebf678b47d6fd4ee571aad1cf01b17c9903d4d27.zip
Remove old.
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'app-forensics/autopsy')
-rw-r--r--app-forensics/autopsy/ChangeLog6
-rw-r--r--app-forensics/autopsy/autopsy-2.03.ebuild58
-rw-r--r--app-forensics/autopsy/autopsy-2.21.ebuild57
-rw-r--r--app-forensics/autopsy/autopsy-2.23.ebuild57
-rw-r--r--app-forensics/autopsy/files/autopsy.pl29
5 files changed, 5 insertions, 202 deletions
diff --git a/app-forensics/autopsy/ChangeLog b/app-forensics/autopsy/ChangeLog
index 44941fb202b2..a0ab3fe7c00f 100644
--- a/app-forensics/autopsy/ChangeLog
+++ b/app-forensics/autopsy/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-forensics/autopsy
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/autopsy/ChangeLog,v 1.23 2012/03/08 09:27:54 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/autopsy/ChangeLog,v 1.24 2012/03/08 09:31:55 radhermit Exp $
+
+ 08 Mar 2012; Tim Harder <radhermit@gentoo.org> -autopsy-2.03.ebuild,
+ -autopsy-2.21.ebuild, -autopsy-2.23.ebuild, -files/autopsy.pl:
+ Remove old.
*autopsy-2.24-r1 (08 Mar 2012)
diff --git a/app-forensics/autopsy/autopsy-2.03.ebuild b/app-forensics/autopsy/autopsy-2.03.ebuild
deleted file mode 100644
index 364d2176fb7f..000000000000
--- a/app-forensics/autopsy/autopsy-2.03.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/autopsy/autopsy-2.03.ebuild,v 1.10 2011/07/24 18:21:20 armin76 Exp $
-
-inherit eutils
-
-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 ppc x86"
-IUSE=""
-
-# Runtime depend on grep and file deliberate
-RDEPEND="dev-lang/perl
- app-forensics/sleuthkit
- sys-apps/grep
- sys-apps/file"
-DEPEND="dev-lang/perl
- app-forensics/sleuthkit
- >=sys-apps/sed-4"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- echo "#!/usr/bin/perl -wT" > autopsy
- echo "use lib '/usr/lib/autopsy/';" >> autopsy
- echo "use lib '/usr/lib/autopsy/lib/';" >> autopsy
- cat base/autopsy.base >> autopsy
- sed -i 's:conf.pl:/etc/autopsy.pl:' autopsy lib/Main.pm
-}
-
-src_compile() {
- einfo "nothing to compile"
-}
-
-src_install() {
- insinto /usr/lib/autopsy
- doins autopsy
- insinto /usr/lib/autopsy/help
- doins help/*
- insinto /usr/lib/autopsy/lib
- doins lib/*
- insinto /usr/lib/autopsy/pict
- doins pict/*
- insinto /etc
- doins ${FILESDIR}/autopsy.pl
-
- dodir /usr/bin
- dosym /usr/lib/autopsy/autopsy /usr/bin/autopsy
- fperms +x /usr/lib/autopsy/autopsy
-
- doman man/man1/autopsy.1
- dodoc CHANGES.txt README.txt TODO.txt docs/sleuthkit-informer-13.txt
-}
diff --git a/app-forensics/autopsy/autopsy-2.21.ebuild b/app-forensics/autopsy/autopsy-2.21.ebuild
deleted file mode 100644
index 2b367181733f..000000000000
--- a/app-forensics/autopsy/autopsy-2.21.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/autopsy/autopsy-2.21.ebuild,v 1.2 2011/07/24 18:21:20 armin76 Exp $
-
-inherit eutils
-
-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_compile() {
- ./configure 2>&1 >/dev/null << EOF
-n
-/tmp
-EOF
-
- echo "#!/usr/bin/perl -wT" > autopsy
- echo "use lib '/usr/lib/autopsy/';" >> autopsy
- echo "use lib '/usr/lib/autopsy/lib/';" >> autopsy
- 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_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
-}
diff --git a/app-forensics/autopsy/autopsy-2.23.ebuild b/app-forensics/autopsy/autopsy-2.23.ebuild
deleted file mode 100644
index 88c10be813cf..000000000000
--- a/app-forensics/autopsy/autopsy-2.23.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/autopsy/autopsy-2.23.ebuild,v 1.2 2011/07/24 18:21:20 armin76 Exp $
-
-inherit eutils
-
-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_compile() {
- ./configure 2>&1 >/dev/null << EOF
-n
-/tmp
-EOF
-
- echo "#!/usr/bin/perl -wT" > autopsy
- echo "use lib '/usr/lib/autopsy/';" >> autopsy
- echo "use lib '/usr/lib/autopsy/lib/';" >> autopsy
- 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_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
-}
diff --git a/app-forensics/autopsy/files/autopsy.pl b/app-forensics/autopsy/files/autopsy.pl
deleted file mode 100644
index afafe972048d..000000000000
--- a/app-forensics/autopsy/files/autopsy.pl
+++ /dev/null
@@ -1,29 +0,0 @@
-# Autopsy configuration settings
-
-# when set to 1, the server will stop after it receives no
-# connections for STIMEOUT seconds.
-$USE_STIMEOUT = 0;
-$STIMEOUT = 3600;
-
-# number of seconds that child waits for input from client
-$CTIMEOUT = 15;
-
-# set to 1 to save the cookie value in a file (for scripting)
-$SAVE_COOKIE = 1;
-
-$INSTALLDIR = '/usr/lib/autopsy';
-
-# System Utilities
-$STRINGS_EXE = '/usr/bin/strings';
-$GREP_EXE = '/bin/grep';
-$FILE_EXE = '/usr/bin/file';
-
-# Directories
-# Where sleuthkit is installed (leave this alone)
-$TSKDIR = '/usr/bin/';
-
-# National Software Reference Library (NSRL) Database
-$NSRLDB = '';
-
-# Evidence Locker (where autopsy stores stuff)
-$LOCKDIR = '/tmp';