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.18.ebuild
Date: Tue, 10 Jun 2014 09:42:06
Message-Id: 20140610094200.A479B2004E@flycatcher.gentoo.org
1 polynomial-c 14/06/10 09:42:00
2
3 Modified: ChangeLog
4 Added: ddrescue-1.18.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.47 sys-fs/ddrescue/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ddrescue/ChangeLog?rev=1.47&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ddrescue/ChangeLog?rev=1.47&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ddrescue/ChangeLog?r1=1.46&r2=1.47
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v
20 retrieving revision 1.46
21 retrieving revision 1.47
22 diff -u -r1.46 -r1.47
23 --- ChangeLog 27 Feb 2014 21:08:15 -0000 1.46
24 +++ ChangeLog 10 Jun 2014 09:42:00 -0000 1.47
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-fs/ddrescue
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.46 2014/02/27 21:08:15 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.47 2014/06/10 09:42:00 polynomial-c Exp $
30 +
31 +*ddrescue-1.18 (10 Jun 2014)
32 +
33 + 10 Jun 2014; Lars Wendler <polynomial-c@g.o> +ddrescue-1.18.ebuild:
34 + Version bump.
35
36 27 Feb 2014; Samuli Suominen <ssuominen@g.o> ddrescue-1.17-r1.ebuild:
37 Use the unpacker_src_uri_depends() function to pull in either pdlzip or lzip
38
39
40
41 1.1 sys-fs/ddrescue/ddrescue-1.18.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ddrescue/ddrescue-1.18.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ddrescue/ddrescue-1.18.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ddrescue-1.18.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/ddrescue/ddrescue-1.18.ebuild,v 1.1 2014/06/10 09:42:00 polynomial-c Exp $
51
52 EAPI=5
53
54 inherit toolchain-funcs flag-o-matic unpacker
55
56 DESCRIPTION="Copy data from one file or block device to another with read-error recovery"
57 HOMEPAGE="http://www.gnu.org/software/ddrescue/ddrescue.html"
58 SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux"
63 IUSE="static"
64
65 DEPEND="$(unpacker_src_uri_depends)"
66 RDEPEND=""
67
68 src_configure() {
69 use static && append-ldflags -static
70
71 # not a normal configure script
72 econf \
73 --prefix="${EPREFIX}"/usr \
74 CC="$(tc-getCC)" \
75 CXX="$(tc-getCXX)" \
76 CPPFLAGS="${CPPFLAGS}" \
77 CFLAGS="${CFLAGS}" \
78 CXXFLAGS="${CXXFLAGS}" \
79 LDFLAGS="${LDFLAGS}"
80 }
81
82 src_test() {
83 ./testsuite/check.sh "${S}"/testsuite || die
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install install-man
88 dodoc ChangeLog README NEWS AUTHORS
89 }