blob: 1b0a91178b9b48b4837e601d0b1fa2ea991f1f75 (
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
26
27
28
29
30
|
# Copyright 1999-2005 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.ebuild,v 1.1 2005/01/26 03:00:07 dragonheart Exp $
inherit 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="x86"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
./configure ||die "fake configure script failed"
emake CC="$(tc-getCC)" GCC_OPT="${CFLAGS}" \
|| die "make failed"
}
src_install() {
dodir usr
make PREFIX=${D}/usr install || die "install failed"
mv ${D}/usr/man ${D}/usr/share
}
|