Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libtranslate: ChangeLog libtranslate-0.99.ebuild
Date: Sun, 06 Sep 2009 21:54:46
Message-Id: E1MkPh6-0006r9-Qf@stork.gentoo.org
1 vostorga 09/09/06 21:54:44
2
3 Modified: ChangeLog libtranslate-0.99.ebuild
4 Log:
5 Adding patch to build against net-libs/libsoup:2.4
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.7 dev-libs/libtranslate/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtranslate/ChangeLog?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtranslate/ChangeLog?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtranslate/ChangeLog?r1=1.6&r2=1.7
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtranslate/ChangeLog,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- ChangeLog 5 May 2008 15:07:37 -0000 1.6
22 +++ ChangeLog 6 Sep 2009 21:54:44 -0000 1.7
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-libs/libtranslate
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtranslate/ChangeLog,v 1.6 2008/05/05 15:07:37 drac Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtranslate/ChangeLog,v 1.7 2009/09/06 21:54:44 vostorga Exp $
29 +
30 + 06 Sep 2009; VĂ­ctor Ostorga <vostorga@g.o>
31 + libtranslate-0.99.ebuild, +files/libtranslate-0.99-libsoup24.diff:
32 + Adding patch to build against net-libs/libsoup:2.4
33
34 05 May 2008; Samuli Suominen <drac@g.o> libtranslate-0.99.ebuild:
35 Move pkgconfig to DEPEND wrt #217278.
36
37
38
39 1.5 dev-libs/libtranslate/libtranslate-0.99.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtranslate/libtranslate-0.99.ebuild?rev=1.5&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtranslate/libtranslate-0.99.ebuild?rev=1.5&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libtranslate/libtranslate-0.99.ebuild?r1=1.4&r2=1.5
44
45 Index: libtranslate-0.99.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtranslate/libtranslate-0.99.ebuild,v
48 retrieving revision 1.4
49 retrieving revision 1.5
50 diff -u -r1.4 -r1.5
51 --- libtranslate-0.99.ebuild 5 May 2008 15:07:37 -0000 1.4
52 +++ libtranslate-0.99.ebuild 6 Sep 2009 21:54:44 -0000 1.5
53 @@ -1,10 +1,10 @@
54 -# Copyright 1999-2008 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtranslate/libtranslate-0.99.ebuild,v 1.4 2008/05/05 15:07:37 drac Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtranslate/libtranslate-0.99.ebuild,v 1.5 2009/09/06 21:54:44 vostorga Exp $
59
60 EAPI=1
61
62 -inherit eutils
63 +inherit eutils autotools
64
65 DESCRIPTION="Library for translating text and web pages between natural languages."
66 HOMEPAGE="http://www.nongnu.org/libtranslate"
67 @@ -19,11 +19,12 @@
68 RESTRICT="test"
69
70 RDEPEND=">=dev-libs/glib-2.4
71 - net-libs/libsoup:2.2
72 + net-libs/libsoup:2.4
73 >=dev-libs/libxml2-2
74 >=app-text/talkfilters-2.3.4-r1"
75 DEPEND="${RDEPEND}
76 - dev-util/pkgconfig"
77 + dev-util/pkgconfig
78 + dev-util/intltool"
79
80 src_unpack() {
81 unpack ${A}
82 @@ -32,7 +33,12 @@
83 epatch "${FILESDIR}"/${P}-charsetparse.diff \
84 "${FILESDIR}"/${P}-condfix.diff \
85 "${FILESDIR}"/${P}-int64.diff \
86 - "${FILESDIR}"/${P}-man-page.diff
87 + "${FILESDIR}"/${P}-man-page.diff \
88 + "${FILESDIR}"/${P}-libsoup24.diff
89 +
90 + einfo "Running intltoolize --force --copy --automake"
91 + intltoolize --force --copy --automake || die "intltoolize failed"
92 + AT_M4DIR="${S}/m4" eautoreconf
93 }
94
95 src_install() {