Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/ddrescue: ChangeLog ddrescue-1.11.ebuild
Date: Sat, 01 Aug 2009 19:45:33
Message-Id: E1MXKWJ-000739-86@stork.gentoo.org
1 hanno 09/08/01 19:45:31
2
3 Modified: ChangeLog
4 Added: ddrescue-1.11.ebuild
5 Log:
6 ddrescue bump
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.19 sys-fs/ddrescue/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ddrescue/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ddrescue/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ddrescue/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 8 Jul 2009 22:05:00 -0000 1.18
23 +++ ChangeLog 1 Aug 2009 19:45:31 -0000 1.19
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-fs/ddrescue
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.18 2009/07/08 22:05:00 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.19 2009/08/01 19:45:31 hanno Exp $
29 +
30 +*ddrescue-1.11 (01 Aug 2009)
31 +
32 + 01 Aug 2009; Hanno Boeck <hanno@g.o> +ddrescue-1.11.ebuild:
33 + Version bump.
34
35 08 Jul 2009; Christian Faulhammer <fauli@g.o> ddrescue-1.9.ebuild:
36 fix QA warnings: Assign RDEPEND and shorten description
37
38
39
40 1.1 sys-fs/ddrescue/ddrescue-1.11.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ddrescue/ddrescue-1.11.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ddrescue/ddrescue-1.11.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ddrescue-1.11.ebuild
46 ===================================================================
47 # Copyright 1999-2009 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.11.ebuild,v 1.1 2009/08/01 19:45:31 hanno 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 ~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 }