blob: b6c1d00f1aa5d34da83df3279ac23dc2fb6b56a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/magicrescue/magicrescue-1.1.4-r1.ebuild,v 1.4 2009/11/25 22:27:50 maekke Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Find deleted files in block devices"
HOMEPAGE="http://jbj.rapanden.dk/magicrescue/"
SRC_URI="http://jbj.rapanden.dk/magicrescue/release/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
src_compile() {
CC="$(tc-getCC)" ./configure --prefix=/usr || die "configure script failed"
emake || die "emake failed"
}
src_install() {
dodir /usr
make PREFIX="${D}/usr" install || die "make install failed"
mv "${D}/usr/man" "${D}/usr/share"
}
|