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