Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/icecc: ChangeLog icecc-2.9.ebuild
Date: Mon, 04 Jan 2010 10:14:16
Message-Id: E1NRjww-0000iD-Qc@stork.gentoo.org
1 ssuominen 10/01/04 10:14:10
2
3 Modified: ChangeLog icecc-2.9.ebuild
4 Log:
5 Block sys-devel/icecream wrt #299564, thanks to Joost Ruis for reporting.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.29 x11-misc/icecc/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/icecc/ChangeLog?rev=1.29&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/icecc/ChangeLog?rev=1.29&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/icecc/ChangeLog?r1=1.28&r2=1.29
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-misc/icecc/ChangeLog,v
18 retrieving revision 1.28
19 retrieving revision 1.29
20 diff -u -r1.28 -r1.29
21 --- ChangeLog 8 May 2008 12:24:40 -0000 1.28
22 +++ ChangeLog 4 Jan 2010 10:14:10 -0000 1.29
23 @@ -1,6 +1,9 @@
24 # ChangeLog for x11-misc/icecc
25 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/ChangeLog,v 1.28 2008/05/08 12:24:40 phosphan Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/ChangeLog,v 1.29 2010/01/04 10:14:10 ssuominen Exp $
29 +
30 + 04 Jan 2010; Samuli Suominen <ssuominen@g.o> icecc-2.9.ebuild:
31 + Block sys-devel/icecream wrt #299564, thanks to Joost Ruis for reporting.
32
33 08 May 2008; Patrick Kursawe <phosphan@g.o> icecc-2.9.ebuild:
34 QA fixes for bug #220094
35
36
37
38 1.9 x11-misc/icecc/icecc-2.9.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/icecc/icecc-2.9.ebuild?rev=1.9&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/icecc/icecc-2.9.ebuild?rev=1.9&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/icecc/icecc-2.9.ebuild?r1=1.8&r2=1.9
43
44 Index: icecc-2.9.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/x11-misc/icecc/icecc-2.9.ebuild,v
47 retrieving revision 1.8
48 retrieving revision 1.9
49 diff -u -r1.8 -r1.9
50 --- icecc-2.9.ebuild 8 May 2008 12:24:40 -0000 1.8
51 +++ icecc-2.9.ebuild 4 Jan 2010 10:14:10 -0000 1.9
52 @@ -1,39 +1,37 @@
53 -# Copyright 1999-2008 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/icecc-2.9.ebuild,v 1.8 2008/05/08 12:24:40 phosphan Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/icecc-2.9.ebuild,v 1.9 2010/01/04 10:14:10 ssuominen Exp $
58
59 -inherit eutils
60 +EAPI=2
61
62 DESCRIPTION="IceWM Control Center (only main program, see icewm-tools for the rest)"
63 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
64 HOMEPAGE="http://icecc.sourceforge.net/"
65 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
66
67 LICENSE="GPL-2"
68 -KEYWORDS="x86 ppc ~amd64"
69 -IUSE=""
70 SLOT="0"
71 +KEYWORDS="~amd64 ppc x86"
72 +IUSE=""
73
74 -DEPEND="=x11-libs/qt-3*"
75 +DEPEND="x11-libs/qt:3
76 + !sys-devel/icecream"
77
78 -src_unpack() {
79 - unpack ${A}
80 - cd "${S}"
81 - sed -e "s:/usr/local:/usr:" -i ${PN}.pro || die "sed failed"
82 +src_prepare() {
83 + sed -e "s:/usr/local:/usr:" -i ${PN}.pro || die
84 echo >> ${PN}.pro -e "QMAKE_CXXFLAGS_RELEASE += ${CXXFLAGS}\nQMAKE_CFLAGS_RELEASE += ${CFLAGS}"
85 }
86
87 -src_compile() {
88 +src_configure() {
89 ${QTDIR}/bin/qmake || die
90 +}
91 +
92 +src_compile() {
93 emake || die
94 }
95
96 src_install() {
97 - make INSTALL_ROOT="${D}" install_themes install_help || die
98 + emake INSTALL_ROOT="${D}" install_themes install_help || die
99 # avoid pre-stripping, see bug #220094
100 - dobin icecc icecchelp
101 + dobin icecc icecchelp || die
102 dodoc AUTHORS ChangeLog
103 }
104 -
105 -pkg_postinst() {
106 - einfo "emerge icewm-tools for the control center helper tools"
107 -}