View Raw Ebuild
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
DESCRIPTION="A simple utility to dump all memory of a running process"
HOMEPAGE="http://lcamtuf.coredump.cx/"
SRC_URI="http://lcamtuf.coredump.cx/soft/${PN}.tgz"
RESTRICT="mirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}/${PN}"
src_prepare () {
sed -e "s:asm/page:sys/user:" -i memfetch.c || die "sed failed"
}
src_compile() {
emake
}
src_install() {
dobin memfetch mffind.pl
dodoc README
}