| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/app-forensics/mac-robber/mac-robber-1.02.ebuild,v 1.1 2011/06/26 06:27:48 radhermit Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
inherit toolchain-funcs
|
| 8 |
|
| 9 |
DESCRIPTION="mac-robber is a digital forensics and incident response tool that collects data"
|
| 10 |
HOMEPAGE="http://www.sleuthkit.org/mac-robber/index.php"
|
| 11 |
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
| 12 |
|
| 13 |
LICENSE="GPL-2"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="~amd64 ~ppc x86"
|
| 16 |
IUSE=""
|
| 17 |
|
| 18 |
src_prepare() {
|
| 19 |
sed -i -e 's:$(GCC_CFLAGS):\0 $(LDFLAGS):' Makefile || die
|
| 20 |
}
|
| 21 |
|
| 22 |
src_compile() {
|
| 23 |
emake CC="$(tc-getCC)" GCC_OPT="${CFLAGS}"
|
| 24 |
}
|
| 25 |
|
| 26 |
src_install() {
|
| 27 |
dobin mac-robber
|
| 28 |
dodoc CHANGES README
|
| 29 |
}
|