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-gfx/monica: ChangeLog monica-3.7.ebuild
Date: Fri, 24 Jul 2009 17:44:56
Message-Id: E1MUOpB-0001Az-0s@stork.gentoo.org
1 ssuominen 09/07/24 17:44:53
2
3 Modified: ChangeLog monica-3.7.ebuild
4 Log:
5 Fix building with GCC 4.4 wrt #277770.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.4 media-gfx/monica/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/monica/ChangeLog?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/monica/ChangeLog?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/monica/ChangeLog?r1=1.3&r2=1.4
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-gfx/monica/ChangeLog,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- ChangeLog 14 Nov 2008 20:59:15 -0000 1.3
22 +++ ChangeLog 24 Jul 2009 17:44:52 -0000 1.4
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-gfx/monica
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/monica/ChangeLog,v 1.3 2008/11/14 20:59:15 robbat2 Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/monica/ChangeLog,v 1.4 2009/07/24 17:44:52 ssuominen Exp $
29 +
30 + 24 Jul 2009; Samuli Suominen <ssuominen@g.o> monica-3.7.ebuild,
31 + +files/monica-3.7-gcc44.patch:
32 + Fix building with GCC 4.4 wrt #277770.
33
34 14 Nov 2008; Robin H. Johnson <robbat2@g.o> monica-3.6.ebuild,
35 monica-3.7.ebuild:
36
37
38
39 1.3 media-gfx/monica/monica-3.7.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/monica/monica-3.7.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/monica/monica-3.7.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/monica/monica-3.7.ebuild?r1=1.2&r2=1.3
44
45 Index: monica-3.7.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-gfx/monica/monica-3.7.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- monica-3.7.ebuild 14 Nov 2008 20:59:15 -0000 1.2
52 +++ monica-3.7.ebuild 24 Jul 2009 17:44:52 -0000 1.3
53 @@ -1,32 +1,35 @@
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-gfx/monica/monica-3.7.ebuild,v 1.2 2008/11/14 20:59:15 robbat2 Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/monica/monica-3.7.ebuild,v 1.3 2009/07/24 17:44:52 ssuominen Exp $
59
60 inherit eutils
61
62 DESCRIPTION="Monica is a Monitor Calibration Tool"
63 HOMEPAGE="http://www.pcbypaul.com/software/monica.html"
64 SRC_URI="http://www.pcbypaul.com/software/dl/${P}.tar.bz2"
65 +
66 LICENSE="BSD"
67 SLOT="0"
68 -KEYWORDS="~x86 ~ppc ~amd64"
69 +KEYWORDS="~amd64 ~ppc ~x86"
70 IUSE=""
71 +
72 DEPEND="<x11-libs/fltk-2"
73 -RDEPEND="x11-apps/xgamma
74 - ${DEPEND}"
75 +RDEPEND="${DEPEND}
76 + x11-apps/xgamma"
77
78 src_unpack() {
79 unpack ${A}
80 cd "${S}"
81 epatch "${FILESDIR}"/${PN}-3.6-makefile-cleanup.patch
82 - make clean
83 + epatch "${FILESDIR}"/${P}-gcc44.patch
84 + emake clean || die "emake clean failed"
85 }
86
87 src_compile() {
88 - emake CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
89 + emake CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" || die "emake failed"
90 }
91
92 src_install() {
93 - dobin monica || die "installing failed"
94 + dobin monica || die "dobin failed"
95 dodoc authors ChangeLog news readme
96 }