Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-themes/qtcurve-qt4: qtcurve-qt4-0.61.4.ebuild ChangeLog
Date: Mon, 02 Mar 2009 13:55:09
Message-Id: E1Le8bs-0001YD-3a@stork.gentoo.org
1 yngwin 09/03/02 13:55:08
2
3 Modified: ChangeLog
4 Added: qtcurve-qt4-0.61.4.ebuild
5 Log:
6 Version bump, add kde4-base inherit to fix kdeprefix install
7 (Portage version: 2.2_rc23/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.56 x11-themes/qtcurve-qt4/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog?rev=1.56&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog?rev=1.56&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog?r1=1.55&r2=1.56
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog,v
19 retrieving revision 1.55
20 retrieving revision 1.56
21 diff -u -r1.55 -r1.56
22 --- ChangeLog 25 Feb 2009 07:02:42 -0000 1.55
23 +++ ChangeLog 2 Mar 2009 13:55:08 -0000 1.56
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-themes/qtcurve-qt4
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog,v 1.55 2009/02/25 07:02:42 yngwin Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog,v 1.56 2009/03/02 13:55:08 yngwin Exp $
29 +
30 +*qtcurve-qt4-0.61.4 (02 Mar 2009)
31 +
32 + 02 Mar 2009; Ben de Groot <yngwin@g.o> +qtcurve-qt4-0.61.4.ebuild:
33 + Version bump. Add inherit kde4-base to fix kdeprefix, see bug 260270.
34
35 25 Feb 2009; Ben de Groot <yngwin@g.o> qtcurve-qt4-0.61.2:
36 Add fix for compilation with Qt 4.5, thanks to Alex Alexander. Move sedding
37
38
39
40 1.1 x11-themes/qtcurve-qt4/qtcurve-qt4-0.61.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/qtcurve-qt4/qtcurve-qt4-0.61.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/qtcurve-qt4/qtcurve-qt4-0.61.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: qtcurve-qt4-0.61.4.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve-qt4/qtcurve-qt4-0.61.4.ebuild,v 1.1 2009/03/02 13:55:08 yngwin Exp $
50
51 EAPI="2"
52 inherit flag-o-matic cmake-utils kde4-base
53
54 MY_P="${P/qtcurve-qt4/QtCurve-KDE4}"
55 DESCRIPTION="A set of widget styles for Qt4 based apps, also available for KDE3 and GTK2"
56 HOMEPAGE="http://www.kde-look.org/content/show.php?content=40492"
57 SRC_URI="http://home.freeuk.com/cpdrummond/${MY_P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="kde"
63
64 DEPEND="x11-libs/qt-gui:4[dbus]
65 kde? ( >=kde-base/kwin-4.1.0 )"
66 RDEPEND="${DEPEND}"
67
68 S="${WORKDIR}/${MY_P}"
69 DOCS="ChangeLog README TODO"
70
71 src_prepare() {
72 if has_version '>=x11-libs/qt-gui-4.5.0_rc1'; then
73 sed -i "s/QStyleOptionTabV2/QStyleOptionTabV3/" "${S}"/style/qtcurve.cpp
74 fi
75 if use !kde ; then
76 append-cppflags "-DQTC_NO_KDE4_LINKING=true -DQTC_DISABLE_KDEFILEDIALOG_CALLS=true";
77 sed -i "s/find_package(KDE4)/#&/" "${S}"/CMakeLists.txt
78 fi
79 }