Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/dd-rescue: dd-rescue-1.40.ebuild ChangeLog
Date: Wed, 28 Aug 2013 02:37:23
Message-Id: 20130828023716.071B32004E@flycatcher.gentoo.org
1 vapier 13/08/28 02:37:15
2
3 Modified: ChangeLog
4 Added: dd-rescue-1.40.ebuild
5 Log:
6 Version bump #479608 by Jonas Stein.
7
8 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
9
10 Revision Changes Path
11 1.33 sys-fs/dd-rescue/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dd-rescue/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dd-rescue/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dd-rescue/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 11 Jun 2013 21:09:46 -0000 1.32
24 +++ ChangeLog 28 Aug 2013 02:37:15 -0000 1.33
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-fs/dd-rescue
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/ChangeLog,v 1.32 2013/06/11 21:09:46 chainsaw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/ChangeLog,v 1.33 2013/08/28 02:37:15 vapier Exp $
30 +
31 +*dd-rescue-1.40 (28 Aug 2013)
32 +
33 + 28 Aug 2013; Mike Frysinger <vapier@g.o> +dd-rescue-1.40.ebuild:
34 + Version bump #479608 by Jonas Stein.
35
36 *dd-rescue-1.33 (11 Jun 2013)
37
38
39
40
41 1.1 sys-fs/dd-rescue/dd-rescue-1.40.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dd-rescue/dd-rescue-1.40.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dd-rescue/dd-rescue-1.40.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dd-rescue-1.40.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.40.ebuild,v 1.1 2013/08/28 02:37:15 vapier 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 }