blob: 9b9585d03b1c4357987b86f68f69042f245dc280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rhelp/dd-rhelp-0.0.6.ebuild,v 1.2 2006/02/28 01:56:28 kumba Exp $
MY_P="${P/-/_}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Wrapper for dd_rescue that can recover damaged files/partitions from block devices"
HOMEPAGE="http://www.kalysto.org/utilities/dd_rhelp/index.en.html"
SRC_URI="http://www.kalysto.org/pkg/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~mips ~x86"
IUSE=""
DEPEND="sys-fs/dd-rescue"
src_install() {
make install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog FAQ NEWS README THANKS TODO doc/example.txt
}
|