blob: 5dd9aa800d293307eb1b5e031a0728d5dbb1fe2a (
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
31
32
33
34
35
36
37
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/dd-rescue-1.02.ebuild,v 1.1 2003/09/15 18:10:12 seemant Exp $
IUSE=""
MY_PN=${PN/-/_}
MY_P=${MY_PN}-${PV}
S=${WORKDIR}/${MY_PN}
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"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 sparc"
src_unpack() {
unpack ${A}
cd ${S}
mv Makefile Makefile.orig
sed -e "s:^CFLAGS.*:CFLAGS = ${CFLAGS}:" \
Makefile.orig > Makefile
}
src_compile() {
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc COPYING README.dd_rescue
}
|