Gentoo Archives: gentoo-commits

From: "Patrice Clement (monsieurp)" <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/dwdiff: dwdiff-2.1.0.ebuild ChangeLog
Date: Wed, 24 Jun 2015 14:13:09
Message-Id: 20150624141301.B6B30A51@oystercatcher.gentoo.org
1 monsieurp 15/06/24 14:13:01
2
3 Modified: ChangeLog
4 Added: dwdiff-2.1.0.ebuild
5 Log:
6 Version bump.
7
8 Signed-off-by: Patrice Clement <monsieurp@g.o>
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 93491BB8)
10
11 Revision Changes Path
12 1.16 dev-util/dwdiff/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dwdiff/ChangeLog?rev=1.16&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dwdiff/ChangeLog?rev=1.16&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dwdiff/ChangeLog?r1=1.15&r2=1.16
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v
21 retrieving revision 1.15
22 retrieving revision 1.16
23 diff -u -r1.15 -r1.16
24 --- ChangeLog 25 Apr 2015 07:23:19 -0000 1.15
25 +++ ChangeLog 24 Jun 2015 14:13:01 -0000 1.16
26 @@ -1,6 +1,11 @@
27 # ChangeLog for dev-util/dwdiff
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v 1.15 2015/04/25 07:23:19 monsieurp Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v 1.16 2015/06/24 14:13:01 monsieurp Exp $
31 +
32 +*dwdiff-2.1.0 (24 Jun 2015)
33 +
34 + 24 Jun 2015; Patrice Clement <monsieurp@g.o> +dwdiff-2.1.0.ebuild:
35 + Version bump.
36
37 *dwdiff-2.0.10 (25 Apr 2015)
38
39
40
41
42 1.1 dev-util/dwdiff/dwdiff-2.1.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dwdiff/dwdiff-2.1.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dwdiff/dwdiff-2.1.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: dwdiff-2.1.0.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/dwdiff-2.1.0.ebuild,v 1.1 2015/06/24 14:13:01 monsieurp Exp $
52
53 EAPI=5
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="A front-end for the diff program that operates at the word level instead of the line level"
57 HOMEPAGE="http://os.ghalkes.nl/dwdiff.html"
58 SRC_URI="http://os.ghalkes.nl/dist/${P}.tar.bz2"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="nls"
64
65 COMMON_DEPEND="dev-libs/icu:="
66 RDEPEND="${COMMON_DEPEND}
67 sys-apps/diffutils"
68 DEPEND="${COMMON_DEPEND}
69 nls? ( sys-devel/gettext )"
70
71 src_prepare() {
72 sed -i \
73 -e '/INSTALL/s:COPYING::' \
74 Makefile.in || die
75 }
76
77 src_configure() {
78 ./configure \
79 --prefix=/usr \
80 $(use_with nls gettext) || die
81 }
82
83 src_compile() {
84 emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
85 }
86
87 src_install() {
88 emake prefix="${D}/usr" docdir="${D}/usr/share/doc/${PF}" install
89 }