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