diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-forensics/autopsy | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-forensics/autopsy')
-rw-r--r-- | app-forensics/autopsy/Manifest | 1 | ||||
-rw-r--r-- | app-forensics/autopsy/autopsy-2.24-r1.ebuild | 61 | ||||
-rw-r--r-- | app-forensics/autopsy/metadata.xml | 8 |
3 files changed, 70 insertions, 0 deletions
diff --git a/app-forensics/autopsy/Manifest b/app-forensics/autopsy/Manifest new file mode 100644 index 000000000000..45a46dcdebbd --- /dev/null +++ b/app-forensics/autopsy/Manifest @@ -0,0 +1 @@ +DIST autopsy-2.24.tar.gz 387873 SHA256 ab787f519942783d43a561d12be0554587f11f22bc55ab79d34d8da703edc09e SHA512 09cd337c2c6e095c533cba449684b36e4a926cbe5736be6da4f644e733525069984550b5b76a902a32d797ac311218a2ec88626603f1dd4381d52f3f94d3cedb WHIRLPOOL 3dbc39cf3a16920f6816b7a0bf50939624d8d4ce455342ba3e6114a3993ffa3df2518612c96c885cad93f59d574994c46056cf8e686d389aebb2005d0d8bc9c7 diff --git a/app-forensics/autopsy/autopsy-2.24-r1.ebuild b/app-forensics/autopsy/autopsy-2.24-r1.ebuild new file mode 100644 index 000000000000..df58e624c407 --- /dev/null +++ b/app-forensics/autopsy/autopsy-2.24-r1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +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_configure() { + ./configure 2>&1 >/dev/null <<-EOF + n + /tmp + EOF + + cat <<-EOF > autopsy + #!/usr/bin/perl -wT + use lib '/usr/lib/autopsy/'; + use lib '/usr/lib/autopsy/lib/'; + EOF + 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_compile() { :; } + +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/metadata.xml b/app-forensics/autopsy/metadata.xml new file mode 100644 index 000000000000..a0f79f2db3b1 --- /dev/null +++ b/app-forensics/autopsy/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>forensics</herd> + <upstream> + <remote-id type="sourceforge">autopsy</remote-id> + </upstream> +</pkgmetadata> |