Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gmyth: ChangeLog gmyth-0.7.ebuild
Date: Thu, 24 Jun 2010 10:13:02
Message-Id: 20100624100300.C9D0C2CF95@corvid.gentoo.org
1 hwoarang 10/06/24 10:03:00
2
3 Modified: ChangeLog gmyth-0.7.ebuild
4 Log:
5 Patch to fix --as-needed support. Fixes bug #247748. Thanks to xarthisius
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.10 media-libs/gmyth/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gmyth/ChangeLog?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gmyth/ChangeLog?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gmyth/ChangeLog?r1=1.9&r2=1.10
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/gmyth/ChangeLog,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- ChangeLog 21 May 2009 19:01:52 -0000 1.9
22 +++ ChangeLog 24 Jun 2010 10:03:00 -0000 1.10
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-libs/gmyth
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gmyth/ChangeLog,v 1.9 2009/05/21 19:01:52 ranger Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gmyth/ChangeLog,v 1.10 2010/06/24 10:03:00 hwoarang Exp $
29 +
30 + 24 Jun 2010; Markos Chandras <hwoarang@g.o> gmyth-0.7.ebuild,
31 + +files/gmyth-0.7-as-needed.patch:
32 + Patch to fix --as-needed support. Fixes bug #247748. Thanks to xarthisius
33
34 21 May 2009; Brent Baude <ranger@g.o> gmyth-0.7.ebuild:
35 Marking gmyth-0.7 ~ppc64 for bug 266986
36
37
38
39 1.8 media-libs/gmyth/gmyth-0.7.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gmyth/gmyth-0.7.ebuild?rev=1.8&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gmyth/gmyth-0.7.ebuild?rev=1.8&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gmyth/gmyth-0.7.ebuild?r1=1.7&r2=1.8
44
45 Index: gmyth-0.7.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-libs/gmyth/gmyth-0.7.ebuild,v
48 retrieving revision 1.7
49 retrieving revision 1.8
50 diff -u -r1.7 -r1.8
51 --- gmyth-0.7.ebuild 21 May 2009 19:01:52 -0000 1.7
52 +++ gmyth-0.7.ebuild 24 Jun 2010 10:03:00 -0000 1.8
53 @@ -1,8 +1,8 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gmyth/gmyth-0.7.ebuild,v 1.7 2009/05/21 19:01:52 ranger Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gmyth/gmyth-0.7.ebuild,v 1.8 2010/06/24 10:03:00 hwoarang Exp $
59
60 -inherit libtool
61 +inherit libtool autotools eutils
62
63 IUSE="debug"
64 LICENSE="LGPL-2"
65 @@ -20,6 +20,13 @@
66
67 S="${WORKDIR}/${PN}"
68
69 +src_unpack() {
70 + unpack ${A}
71 + cd "${S}"
72 + epatch "${FILESDIR}"/${P}-as-needed.patch
73 + AT_M4DIR="m4" eautoreconf
74 +}
75 +
76 src_compile() {
77 econf $(use_enable debug)
78 emake || die "emake failed."