Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/dwdiff: dwdiff-2.0.2.ebuild ChangeLog
Date: Tue, 03 Jan 2012 09:49:39
Message-Id: 20120103094923.6D7DC2004B@flycatcher.gentoo.org
1 ssuominen 12/01/03 09:49:23
2
3 Modified: ChangeLog
4 Added: dwdiff-2.0.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 dev-util/dwdiff/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dwdiff/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dwdiff/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dwdiff/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 5 Jun 2011 13:32:40 -0000 1.3
24 +++ ChangeLog 3 Jan 2012 09:49:23 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/dwdiff
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v 1.3 2011/06/05 13:32:40 xarthisius Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v 1.4 2012/01/03 09:49:23 ssuominen Exp $
31 +
32 +*dwdiff-2.0.2 (03 Jan 2012)
33 +
34 + 03 Jan 2012; Samuli Suominen <ssuominen@g.o> +dwdiff-2.0.2.ebuild:
35 + Version bump.
36
37 05 Jun 2011; Kacper Kowalik <xarthisius@g.o> dwdiff-1.9.ebuild:
38 Bump to EAPI4, drop no longer necessary prepalldocs
39
40
41
42 1.1 dev-util/dwdiff/dwdiff-2.0.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dwdiff/dwdiff-2.0.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dwdiff/dwdiff-2.0.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: dwdiff-2.0.2.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/dev-util/dwdiff/dwdiff-2.0.2.ebuild,v 1.1 2012/01/03 09:49:23 ssuominen Exp $
52
53 EAPI=4
54 inherit 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}.tgz"
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 }