Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/openexr_ctl: ChangeLog openexr_ctl-1.0.1-r1.ebuild
Date: Thu, 30 Jul 2009 08:47:58
Message-Id: E1MWRIV-0002uc-4D@stork.gentoo.org
1 ssuominen 09/07/30 08:47:35
2
3 Modified: ChangeLog openexr_ctl-1.0.1-r1.ebuild
4 Log:
5 Fix building with GCC 4.4 wrt #275903.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.18 media-libs/openexr_ctl/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openexr_ctl/ChangeLog?rev=1.18&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openexr_ctl/ChangeLog?rev=1.18&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openexr_ctl/ChangeLog?r1=1.17&r2=1.18
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/openexr_ctl/ChangeLog,v
18 retrieving revision 1.17
19 retrieving revision 1.18
20 diff -u -r1.17 -r1.18
21 --- ChangeLog 17 Dec 2008 07:50:00 -0000 1.17
22 +++ ChangeLog 30 Jul 2009 08:47:35 -0000 1.18
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-libs/openexr_ctl
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr_ctl/ChangeLog,v 1.17 2008/12/17 07:50:00 ssuominen Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr_ctl/ChangeLog,v 1.18 2009/07/30 08:47:35 ssuominen Exp $
29 +
30 + 30 Jul 2009; Samuli Suominen <ssuominen@g.o>
31 + openexr_ctl-1.0.1-r1.ebuild, +files/openexr_ctl-1.0.1-gcc44.patch:
32 + Fix building with GCC 4.4 wrt #275903.
33
34 17 Dec 2008; <ssuominen@g.o> openexr_ctl-1.0.1-r1.ebuild:
35 x86 stable wrt #207663, Comment #14.
36
37
38
39 1.4 media-libs/openexr_ctl/openexr_ctl-1.0.1-r1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openexr_ctl/openexr_ctl-1.0.1-r1.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openexr_ctl/openexr_ctl-1.0.1-r1.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openexr_ctl/openexr_ctl-1.0.1-r1.ebuild?r1=1.3&r2=1.4
44
45 Index: openexr_ctl-1.0.1-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-libs/openexr_ctl/openexr_ctl-1.0.1-r1.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- openexr_ctl-1.0.1-r1.ebuild 17 Dec 2008 07:50:00 -0000 1.3
52 +++ openexr_ctl-1.0.1-r1.ebuild 30 Jul 2009 08:47:35 -0000 1.4
53 @@ -1,8 +1,9 @@
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/media-libs/openexr_ctl/openexr_ctl-1.0.1-r1.ebuild,v 1.3 2008/12/17 07:50:00 ssuominen Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr_ctl/openexr_ctl-1.0.1-r1.ebuild,v 1.4 2009/07/30 08:47:35 ssuominen Exp $
59
60 -inherit eutils autotools
61 +EAPI=2
62 +inherit autotools eutils
63
64 DESCRIPTION="OpenEXR CTL libraries"
65 HOMEPAGE="http://sourceforge.net/projects/ampasctl"
66 @@ -19,16 +20,15 @@
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig"
69
70 -src_unpack() {
71 - unpack ${A}
72 - cd "${S}"
73 - epatch "${FILESDIR}"/${P}-gcc43.patch
74 - epatch "${FILESDIR}"/${P}-configure_gcc43.patch
75 - epatch "${FILESDIR}"/${P}-pkgconfig.patch
76 +src_prepare() {
77 + epatch "${FILESDIR}"/${P}-gcc43.patch \
78 + "${FILESDIR}"/${P}-configure_gcc43.patch \
79 + "${FILESDIR}"/${P}-pkgconfig.patch \
80 + "${FILESDIR}"/${P}-gcc44.patch
81 eautoreconf
82 }
83
84 src_install() {
85 - emake DESTDIR="${D}" install || die "install failed"
86 + emake DESTDIR="${D}" install || die "emake install failed"
87 dodoc AUTHORS ChangeLog NEWS README
88 }