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/memdump/
Date: Tue, 25 Jun 2019 17:57:54
Message-Id: 1561485459.847da4796eaa12346d6515ae28d5e30ccda8130d.asturm@gentoo
1 commit: 847da4796eaa12346d6515ae28d5e30ccda8130d
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Jun 25 17:34:04 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 25 17:57:39 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=847da479
7
8 app-forensics/memdump: remove old
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/12328
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 app-forensics/memdump/memdump-1.01.ebuild | 46 -------------------------------
15 1 file changed, 46 deletions(-)
16
17 diff --git a/app-forensics/memdump/memdump-1.01.ebuild b/app-forensics/memdump/memdump-1.01.ebuild
18 deleted file mode 100644
19 index efa73c2f97f..00000000000
20 --- a/app-forensics/memdump/memdump-1.01.ebuild
21 +++ /dev/null
22 @@ -1,46 +0,0 @@
23 -# Copyright 1999-2012 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=4
27 -
28 -inherit toolchain-funcs eutils
29 -
30 -DESCRIPTION="Simple memory dumper for UNIX-Like systems"
31 -HOMEPAGE="http://www.porcupine.org/forensics"
32 -SRC_URI="http://www.porcupine.org/forensics/${P}.tar.gz"
33 -
34 -LICENSE="IBM"
35 -SLOT="0"
36 -KEYWORDS="amd64 ppc x86"
37 -IUSE=""
38 -
39 -src_prepare() {
40 - sed -i -e 's:$(CFLAGS):\0 $(LDFLAGS):' Makefile || die
41 - epatch "${FILESDIR}"/${P}-linux3.patch
42 -}
43 -
44 -src_compile() {
45 - emake CC="$(tc-getCC)" XFLAGS="${CFLAGS}" OPT= DEBUG=
46 -}
47 -
48 -src_test() {
49 - if [[ ${EUID} -ne 0 ]];
50 - then
51 - einfo "Cannot test with FEATURES=userpriv"
52 - elif [ -x /bin/wc ];
53 - then
54 - einfo "testing"
55 - if [ "`./memdump -s 344 | wc -c`" = "344" ];
56 - then
57 - einfo "passed test"
58 - else
59 - die "failed test"
60 - fi
61 - fi
62 -}
63 -
64 -src_install() {
65 - dosbin memdump
66 - dodoc README
67 - doman memdump.1
68 -}