Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/dd-rescue: dd-rescue-1.44.ebuild ChangeLog
Date: Wed, 28 May 2014 13:53:24
Message-Id: 20140528135321.42BD92004E@flycatcher.gentoo.org
1 polynomial-c 14/05/28 13:53:21
2
3 Modified: ChangeLog
4 Added: dd-rescue-1.44.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
9
10 Revision Changes Path
11 1.35 sys-fs/dd-rescue/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dd-rescue/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dd-rescue/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dd-rescue/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 7 Jan 2014 09:56:11 -0000 1.34
24 +++ ChangeLog 28 May 2014 13:53:21 -0000 1.35
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-fs/dd-rescue
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/ChangeLog,v 1.34 2014/01/07 09:56:11 polynomial-c Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/ChangeLog,v 1.35 2014/05/28 13:53:21 polynomial-c Exp $
30 +
31 +*dd-rescue-1.44 (28 May 2014)
32 +
33 + 28 May 2014; Lars Wendler <polynomial-c@g.o> +dd-rescue-1.44.ebuild:
34 + Version bump.
35
36 07 Jan 2014; Lars Wendler <polynomial-c@g.o> -dd-rescue-1.10.ebuild,
37 -dd-rescue-1.24.ebuild, -dd-rescue-1.25.ebuild:
38
39
40
41 1.1 sys-fs/dd-rescue/dd-rescue-1.44.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dd-rescue/dd-rescue-1.44.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dd-rescue/dd-rescue-1.44.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dd-rescue-1.44.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/dd-rescue-1.44.ebuild,v 1.1 2014/05/28 13:53:21 polynomial-c Exp $
51
52 EAPI=5
53
54 inherit toolchain-funcs flag-o-matic autotools
55
56 MY_PN=${PN/-/_}
57 MY_P=${MY_PN}-${PV}
58
59 DESCRIPTION="Similar to dd but can copy from source with errors"
60 HOMEPAGE="http://www.garloff.de/kurt/linux/ddrescue/"
61 SRC_URI="http://www.garloff.de/kurt/linux/ddrescue/${MY_P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
66 IUSE="static"
67
68 S=${WORKDIR}/${MY_PN}
69
70 src_prepare() {
71 sed -i \
72 -e 's:-ldl:$(LDFLAGS) -ldl:' \
73 Makefile
74 eautoreconf
75 }
76
77 src_compile() {
78 use static && append-ldflags -static
79
80 # The Makefile is a mess. Override a few vars rather than patch it.
81 emake \
82 RPM_OPT_FLAGS="${CFLAGS} ${CPPFLAGS}" \
83 CFLAGS_OPT='$(CFLAGS)' \
84 CC="$(tc-getCC)"
85 }
86
87 src_install() {
88 # easier to install by hand than trying to make sense of the Makefile.
89 dobin dd_rescue
90 dodoc README.dd_rescue
91 doman dd_rescue.1
92 }