summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-06-25 19:34:04 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-06-25 19:57:39 +0200
commit847da4796eaa12346d6515ae28d5e30ccda8130d (patch)
treeff0bafe6d321aaa450685295f6f48da438821164
parentwww-apps/karma-bin: 0.39 bump (diff)
downloadgentoo-847da479.tar.gz
gentoo-847da479.tar.bz2
gentoo-847da479.zip
app-forensics/memdump: remove old
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/12328 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--app-forensics/memdump/memdump-1.01.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/app-forensics/memdump/memdump-1.01.ebuild b/app-forensics/memdump/memdump-1.01.ebuild
deleted file mode 100644
index efa73c2f97fd..000000000000
--- a/app-forensics/memdump/memdump-1.01.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit toolchain-funcs eutils
-
-DESCRIPTION="Simple memory dumper for UNIX-Like systems"
-HOMEPAGE="http://www.porcupine.org/forensics"
-SRC_URI="http://www.porcupine.org/forensics/${P}.tar.gz"
-
-LICENSE="IBM"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-src_prepare() {
- sed -i -e 's:$(CFLAGS):\0 $(LDFLAGS):' Makefile || die
- epatch "${FILESDIR}"/${P}-linux3.patch
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" XFLAGS="${CFLAGS}" OPT= DEBUG=
-}
-
-src_test() {
- if [[ ${EUID} -ne 0 ]];
- then
- einfo "Cannot test with FEATURES=userpriv"
- elif [ -x /bin/wc ];
- then
- einfo "testing"
- if [ "`./memdump -s 344 | wc -c`" = "344" ];
- then
- einfo "passed test"
- else
- die "failed test"
- fi
- fi
-}
-
-src_install() {
- dosbin memdump
- dodoc README
- doman memdump.1
-}