blob: 88d635038995cf6c68dd552f5a00484945d3bf28 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/dd-rescue-1.14.ebuild,v 1.1 2007/09/30 02:23:54 vapier Exp $
MY_PN=${PN/-/_}
MY_P=${MY_PN}-${PV}
DESCRIPTION="similar to dd but can copy from source with errors"
HOMEPAGE="http://www.garloff.de/kurt/linux/ddrescue/"
SRC_URI="http://www.garloff.de/kurt/linux/ddrescue/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
IUSE="static"
RDEPEND=""
DEPEND=""
S=${WORKDIR}/${MY_PN}
src_compile() {
use static && append-flags -static
emake RPM_OPT_FLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" INSTALLFLAGS="" install || die "make install failed"
dodoc README.dd_rescue
}
|