Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/dvgrab: ChangeLog dvgrab-3.4.ebuild
Date: Mon, 29 Jun 2009 19:32:24
Message-Id: E1MLMaT-0002So-Uo@stork.gentoo.org
1 aballier 09/06/29 19:32:21
2
3 Modified: ChangeLog dvgrab-3.4.ebuild
4 Log:
5 Fix build with gcc 4.4, bug #272851 by hirakendu <hirakendu@×××××.com>
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.36 media-video/dvgrab/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/dvgrab/ChangeLog?rev=1.36&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/dvgrab/ChangeLog?rev=1.36&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/dvgrab/ChangeLog?r1=1.35&r2=1.36
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-video/dvgrab/ChangeLog,v
18 retrieving revision 1.35
19 retrieving revision 1.36
20 diff -u -r1.35 -r1.36
21 --- ChangeLog 29 Jun 2009 19:28:59 -0000 1.35
22 +++ ChangeLog 29 Jun 2009 19:32:21 -0000 1.36
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-video/dvgrab
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvgrab/ChangeLog,v 1.35 2009/06/29 19:28:59 aballier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvgrab/ChangeLog,v 1.36 2009/06/29 19:32:21 aballier Exp $
28 +
29 + 29 Jun 2009; Alexis Ballier <aballier@g.o> dvgrab-3.4.ebuild,
30 + +files/dvgrab-3.4-gcc44.patch:
31 + Fix build with gcc 4.4, bug #272851 by hirakendu <hirakendu@×××××.com>
32
33 29 Jun 2009; Alexis Ballier <aballier@g.o>
34 -files/dvgrab-2.1-automagic.patch, -dvgrab-3.0.ebuild:
35
36
37
38 1.2 media-video/dvgrab/dvgrab-3.4.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/dvgrab/dvgrab-3.4.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/dvgrab/dvgrab-3.4.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/dvgrab/dvgrab-3.4.ebuild?r1=1.1&r2=1.2
43
44 Index: dvgrab-3.4.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-video/dvgrab/dvgrab-3.4.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- dvgrab-3.4.ebuild 8 Mar 2009 20:04:36 -0000 1.1
51 +++ dvgrab-3.4.ebuild 29 Jun 2009 19:32:21 -0000 1.2
52 @@ -1,6 +1,8 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvgrab/dvgrab-3.4.ebuild,v 1.1 2009/03/08 20:04:36 aballier Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvgrab/dvgrab-3.4.ebuild,v 1.2 2009/06/29 19:32:21 aballier Exp $
57 +
58 +inherit eutils
59
60 DESCRIPTION="Digital Video (DV) grabber for GNU/Linux"
61 HOMEPAGE="http://www.kinodv.org/"
62 @@ -20,6 +22,13 @@
63 DEPEND="${RDEPEND}
64 dev-util/pkgconfig"
65
66 +
67 +src_unpack() {
68 + unpack ${A}
69 + cd "${S}"
70 + epatch "${FILESDIR}/${P}-gcc44.patch"
71 +}
72 +
73 src_compile() {
74 econf $(use_with quicktime libquicktime) $(use_with jpeg libjpeg)
75 emake || die "emake failed."