| 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/magicrescue/magicrescue-1.1.9.ebuild,v 1.5 2012/03/06 07:30:06 patrick Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
inherit eutils toolchain-funcs
|
| 8 |
|
| 9 |
DESCRIPTION="Find deleted files in block devices"
|
| 10 |
HOMEPAGE="http://www.itu.dk/people/jobr/magicrescue/"
|
| 11 |
SRC_URI="http://www.itu.dk/people/jobr/magicrescue/release/${P}.tar.gz"
|
| 12 |
|
| 13 |
LICENSE="GPL-2"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="amd64 ~ppc x86"
|
| 16 |
IUSE=""
|
| 17 |
|
| 18 |
DEPEND="|| ( sys-libs/gdbm sys-libs/db )"
|
| 19 |
RDEPEND="${DEPEND}"
|
| 20 |
|
| 21 |
src_prepare() {
|
| 22 |
epatch "${FILESDIR}"/${P}-makefile.patch
|
| 23 |
tc-export CC
|
| 24 |
}
|
| 25 |
|
| 26 |
src_configure() {
|
| 27 |
# Not autotools, just looks like it sometimes
|
| 28 |
./configure --prefix=/usr || die
|
| 29 |
}
|