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