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/ddrescue: ChangeLog ddrescue-1.12.ebuild
Date: Thu, 06 May 2010 06:56:48
Message-Id: 20100506065643.806992950A@corvid.gentoo.org
1 polynomial-c 10/05/06 06:56:43
2
3 Modified: ChangeLog
4 Added: ddrescue-1.12.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 sys-fs/ddrescue/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ddrescue/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ddrescue/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ddrescue/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 29 Mar 2010 19:00:17 -0000 1.22
23 +++ ChangeLog 6 May 2010 06:56:43 -0000 1.23
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-fs/ddrescue
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.22 2010/03/29 19:00:17 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.23 2010/05/06 06:56:43 polynomial-c Exp $
29 +
30 +*ddrescue-1.12 (06 May 2010)
31 +
32 + 06 May 2010; Lars Wendler <polynomial-c@g.o> +ddrescue-1.12.ebuild:
33 + version bump
34
35 29 Mar 2010; Raúl Porcel <armin76@g.o> ddrescue-1.11.ebuild:
36 Add ~ia64 wrt #309331
37
38
39
40 1.1 sys-fs/ddrescue/ddrescue-1.12.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ddrescue/ddrescue-1.12.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ddrescue/ddrescue-1.12.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ddrescue-1.12.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ddrescue-1.12.ebuild,v 1.1 2010/05/06 06:56:43 polynomial-c Exp $
50
51 inherit toolchain-funcs
52
53 DESCRIPTION="Copies data from one file or block device to another with read-error recovery"
54 HOMEPAGE="http://www.gnu.org/software/ddrescue/ddrescue.html"
55 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
60 IUSE=""
61
62 DEPEND=""
63 RDEPEND=""
64
65 src_compile() {
66 # not a normal configure script
67 ./configure \
68 --prefix=/usr \
69 CC="$(tc-getCC)" \
70 CXX="$(tc-getCXX)" \
71 CPPFLAGS="${CPPFLAGS}" \
72 CFLAGS="${CFLAGS}" \
73 CXXFLAGS="${CXXFLAGS}" \
74 LDFLAGS="${LDFLAGS}" \
75 || die "configure failed"
76 emake || die "emake failed"
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install install-man || die "make install failed"
81 dodoc ChangeLog README NEWS AUTHORS
82 }