Gentoo Archives: gentoo-commits

From: "Joerg Bornkessel (hd_brummy)" <hd_brummy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/vdramgw: ChangeLog vdramgw-0.0.2.ebuild
Date: Sat, 30 Jun 2012 16:03:30
Message-Id: 20120630160320.2C0C72004C@flycatcher.gentoo.org
1 hd_brummy 12/06/30 16:03:20
2
3 Modified: ChangeLog vdramgw-0.0.2.ebuild
4 Log:
5 gcc-4.7 compile fixed, bug 424101; eapi=4; fixed c++ includes; minor fixes in ebuild
6
7 (Portage version: 2.1.10.11/cvs/Linux i686)
8
9 Revision Changes Path
10 1.5 media-sound/vdramgw/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vdramgw/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vdramgw/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vdramgw/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/vdramgw/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 13 Aug 2010 21:31:17 -0000 1.4
23 +++ ChangeLog 30 Jun 2012 16:03:20 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/vdramgw
26 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/vdramgw/ChangeLog,v 1.4 2010/08/13 21:31:17 hwoarang Exp $
28 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/vdramgw/ChangeLog,v 1.5 2012/06/30 16:03:20 hd_brummy Exp $
30 +
31 + 30 Jun 2012; Joerg Bornkessel <hd_brummy@g.o> vdramgw-0.0.2.ebuild,
32 + files/vdramgw-0.0.2-gcc43.patch, +files/vdramgw-0.0.2_gcc-4.7.diff:
33 + gcc-4.7 compile fixed, bug 424101; eapi=4; fixed c++ includes; minor fixes in
34 + ebuild
35
36 13 Aug 2010; Markos Chandras <hwoarang@g.o> vdramgw-0.0.2.ebuild:
37 Respect CXX,CXXFLAGS,LDFLAGS. Bug #332543. Thanks to Diego E. 'Flameeyes'
38
39
40
41 1.6 media-sound/vdramgw/vdramgw-0.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vdramgw/vdramgw-0.0.2.ebuild?rev=1.6&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vdramgw/vdramgw-0.0.2.ebuild?rev=1.6&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vdramgw/vdramgw-0.0.2.ebuild?r1=1.5&r2=1.6
46
47 Index: vdramgw-0.0.2.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/media-sound/vdramgw/vdramgw-0.0.2.ebuild,v
50 retrieving revision 1.5
51 retrieving revision 1.6
52 diff -u -r1.5 -r1.6
53 --- vdramgw-0.0.2.ebuild 13 Aug 2010 21:31:17 -0000 1.5
54 +++ vdramgw-0.0.2.ebuild 30 Jun 2012 16:03:20 -0000 1.6
55 @@ -1,6 +1,8 @@
56 -# Copyright 1999-2010 Gentoo Foundation
57 +# Copyright 1999-2012 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/media-sound/vdramgw/vdramgw-0.0.2.ebuild,v 1.5 2010/08/13 21:31:17 hwoarang Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/media-sound/vdramgw/vdramgw-0.0.2.ebuild,v 1.6 2012/06/30 16:03:20 hd_brummy Exp $
61 +
62 +EAPI="4"
63
64 inherit eutils toolchain-funcs
65
66 @@ -16,18 +18,20 @@
67 IUSE=""
68
69 DEPEND=""
70 -RDEPEND=""
71 +RDEPEND="${DEPEND}"
72 +RDEPEND="media-sound/amarok"
73
74 S="${WORKDIR}/${MY_P#vdr-}/${PN}"
75 -RDEPEND="media-sound/amarok"
76
77 -src_unpack() {
78 - unpack ${A}
79 - epatch "${FILESDIR}"/${P}-gcc43.patch
80 +src_prepare() {
81 # Respect CC,CXXFLAGS, LDFLAGS
82 sed -i -e "/^CXX /s:?=.*:= $(tc-getCXX):" \
83 -e "/^CXXFLAGS/s:?=.*:= ${CFLAGS}:" \
84 -e "s:\$(CXXFLAGS):& \$(LDFLAGS) :" "${S}"/Makefile
85 +
86 + cd "${WORKDIR}/${MY_P#vdr-}"
87 + epatch "${FILESDIR}"/${P}-gcc43.patch
88 + epatch "${FILESDIR}/${P}_gcc-4.7.diff"
89 }
90
91 src_install() {