Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/examiner/
Date: Thu, 21 May 2020 08:14:18
Message-Id: 1590048795.22dd956fea8ca551447e998d0b7984c57eb5fff1.asturm@gentoo
1 commit: 22dd956fea8ca551447e998d0b7984c57eb5fff1
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 08:13:03 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 08:13:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22dd956f
7
8 app-forensics/examiner: Drop 0.5-r2
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-forensics/examiner/examiner-0.5-r2.ebuild | 38 ---------------------------
14 1 file changed, 38 deletions(-)
15
16 diff --git a/app-forensics/examiner/examiner-0.5-r2.ebuild b/app-forensics/examiner/examiner-0.5-r2.ebuild
17 deleted file mode 100644
18 index 52d806d9d90..00000000000
19 --- a/app-forensics/examiner/examiner-0.5-r2.ebuild
20 +++ /dev/null
21 @@ -1,38 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="4"
26 -
27 -inherit eutils
28 -
29 -DESCRIPTION="Utilizes the objdump command to disassemble and comment foreign binaries"
30 -HOMEPAGE="http://www.academicunderground.org/examiner/"
31 -SRC_URI="http://www.academicunderground.org/examiner/${P}.tar.gz"
32 -SLOT="0"
33 -LICENSE="GPL-2+"
34 -KEYWORDS="amd64 ppc x86"
35 -IUSE=""
36 -
37 -DEPEND=""
38 -RDEPEND="dev-lang/perl"
39 -
40 -src_prepare() {
41 - # Do not install docs through Makefile wrt bug #241256
42 - sed -i -e '/$(DOC)/d' Makefile || die 'sed failed'
43 - epatch "${FILESDIR}"/${P}-perl.patch
44 -}
45 -
46 -src_compile() { :; }
47 -
48 -src_install() {
49 - dodir /usr/bin /usr/share/${PN} /usr/share/man/man1
50 -
51 - emake \
52 - MAN="${D}/usr/share/man/man1" \
53 - BIN="${D}/usr/bin" \
54 - SHARE="${D}/usr/share/examiner" \
55 - install
56 -
57 - dodoc docs/{README*,BUGS,CHANGELOG,TODO,TUTORIAL}
58 - dodoc -r utils
59 -}