Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-tv/tvtime: ChangeLog tvtime-1.0.2-r2.ebuild
Date: Wed, 01 Dec 2010 05:10:57
Message-Id: 20101201051042.BF8F020054@flycatcher.gentoo.org
1 flameeyes 10/12/01 05:10:42
2
3 Modified: ChangeLog tvtime-1.0.2-r2.ebuild
4 Log:
5 Fix (twice) the build problems with libtool 2.4 and automake 1.7: don't require libtool at all (since there are no libraries built), but also allow building with automake 1.11; both fixes are actually needed, since disabling libtool causes a couple of side problems.
6
7 (Portage version: 2.2.0_alpha6/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.48 media-tv/tvtime/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/tvtime/ChangeLog?rev=1.48&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/tvtime/ChangeLog?rev=1.48&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/tvtime/ChangeLog?r1=1.47&r2=1.48
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-tv/tvtime/ChangeLog,v
19 retrieving revision 1.47
20 retrieving revision 1.48
21 diff -u -r1.47 -r1.48
22 --- ChangeLog 3 May 2010 23:26:07 -0000 1.47
23 +++ ChangeLog 1 Dec 2010 05:10:42 -0000 1.48
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-tv/tvtime
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-tv/tvtime/ChangeLog,v 1.47 2010/05/03 23:26:07 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvtime/ChangeLog,v 1.48 2010/12/01 05:10:42 flameeyes Exp $
29 +
30 + 01 Dec 2010; Diego E. Pettenò <flameeyes@g.o> tvtime-1.0.2-r2.ebuild,
31 + +files/tvtime-1.0.2-autotools.patch:
32 + Fix (twice) the build problems with libtool 2.4 and automake 1.7: don't
33 + require libtool at all (since there are no libraries built), but also allow
34 + building with automake 1.11; both fixes are actually needed, since disabling
35 + libtool causes a couple of side problems.
36
37 03 May 2010; Samuli Suominen <ssuominen@g.o>
38 tvtime-1.0.2-r2.ebuild:
39
40
41
42 1.7 media-tv/tvtime/tvtime-1.0.2-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/tvtime/tvtime-1.0.2-r2.ebuild?rev=1.7&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/tvtime/tvtime-1.0.2-r2.ebuild?rev=1.7&content-type=text/plain
46 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/tvtime/tvtime-1.0.2-r2.ebuild?r1=1.6&r2=1.7
47
48 Index: tvtime-1.0.2-r2.ebuild
49 ===================================================================
50 RCS file: /var/cvsroot/gentoo-x86/media-tv/tvtime/tvtime-1.0.2-r2.ebuild,v
51 retrieving revision 1.6
52 retrieving revision 1.7
53 diff -u -r1.6 -r1.7
54 --- tvtime-1.0.2-r2.ebuild 3 May 2010 23:26:07 -0000 1.6
55 +++ tvtime-1.0.2-r2.ebuild 1 Dec 2010 05:10:42 -0000 1.7
56 @@ -1,9 +1,6 @@
57 # Copyright 1999-2010 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/media-tv/tvtime/tvtime-1.0.2-r2.ebuild,v 1.6 2010/05/03 23:26:07 ssuominen Exp $
60 -
61 -WANT_AUTOMAKE=1.7
62 -WANT_AUTOCONF=2.5
63 +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvtime/tvtime-1.0.2-r2.ebuild,v 1.7 2010/12/01 05:10:42 flameeyes Exp $
64
65 inherit eutils autotools
66
67 @@ -33,7 +30,8 @@
68 nls? ( virtual/libintl )"
69
70 DEPEND="${RDEPEND}
71 - nls? ( sys-devel/gettext )"
72 + nls? ( sys-devel/gettext )
73 + dev-util/pkgconfig"
74
75 src_unpack() {
76 unpack ${A}
77 @@ -56,6 +54,8 @@
78
79 epatch "${FILESDIR}/${P}-libsupc++.patch"
80
81 + epatch "${FILESDIR}/${P}-autotools.patch"
82 +
83 AT_M4DIR="m4" eautoreconf
84 }