Gentoo Archives: gentoo-commits

From: "Davide Pesavento (pesa)" <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-themes/qtcurve-qt4: qtcurve-qt4-1.8.9.ebuild ChangeLog
Date: Sun, 01 Jan 2012 21:29:16
Message-Id: 20120101212905.E53D42004B@flycatcher.gentoo.org
1 pesa 12/01/01 21:29:05
2
3 Modified: ChangeLog
4 Added: qtcurve-qt4-1.8.9.ebuild
5 Log:
6 Version bump, #395723 by Ivan S. Titov.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.130 x11-themes/qtcurve-qt4/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog?rev=1.130&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog?rev=1.130&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog?r1=1.129&r2=1.130
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog,v
20 retrieving revision 1.129
21 retrieving revision 1.130
22 diff -u -r1.129 -r1.130
23 --- ChangeLog 28 Oct 2011 20:38:26 -0000 1.129
24 +++ ChangeLog 1 Jan 2012 21:29:05 -0000 1.130
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-themes/qtcurve-qt4
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog,v 1.129 2011/10/28 20:38:26 abcd Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve-qt4/ChangeLog,v 1.130 2012/01/01 21:29:05 pesa Exp $
31 +
32 +*qtcurve-qt4-1.8.9 (01 Jan 2012)
33 +
34 + 01 Jan 2012; Davide Pesavento <pesa@g.o> +qtcurve-qt4-1.8.9.ebuild:
35 + Version bump, #395723 by Ivan S. Titov.
36
37 28 Oct 2011; Jonathan Callen <abcd@g.o> -qtcurve-qt4-1.8.4.ebuild,
38 -qtcurve-qt4-1.8.6.ebuild, -qtcurve-qt4-0.69.2.ebuild:
39
40
41
42 1.1 x11-themes/qtcurve-qt4/qtcurve-qt4-1.8.9.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve-qt4/qtcurve-qt4-1.8.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve-qt4/qtcurve-qt4-1.8.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: qtcurve-qt4-1.8.9.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve-qt4/qtcurve-qt4-1.8.9.ebuild,v 1.1 2012/01/01 21:29:05 pesa Exp $
52
53 EAPI=4
54 KDE_REQUIRED="optional"
55 inherit cmake-utils kde4-base
56
57 MY_P="${P/qtcurve-qt4/QtCurve-KDE4}"
58
59 DESCRIPTION="A set of widget styles for Qt4 based apps, also available for GTK2"
60 HOMEPAGE="http://www.kde-look.org/content/show.php?content=40492"
61 SRC_URI="http://craigd.wikispaces.com/file/view/${MY_P}.tar.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
66 IUSE="kde windeco"
67
68 DEPEND="x11-libs/qt-gui:4[dbus]
69 x11-libs/qt-svg:4
70 kde? (
71 $(add_kdebase_dep systemsettings)
72 windeco? ( $(add_kdebase_dep kwin) )
73 )"
74 RDEPEND="${DEPEND}"
75
76 S=${WORKDIR}/${MY_P}
77
78 DOCS="ChangeLog README TODO"
79
80 PATCHES=( "${FILESDIR}/${PN}_kwin_automagic_fix.patch" )
81
82 REQUIRED_USE="windeco? ( kde )"
83
84 pkg_setup() {
85 use kde && kde4-base_pkg_setup
86 }
87
88 src_configure() {
89 local mycmakeargs
90 if use kde; then
91 mycmakeargs=(
92 $(cmake-utils_use windeco QTC_KWIN)
93 )
94 kde4-base_src_configure
95 else
96 mycmakeargs=(
97 "-DQTC_QT_ONLY=true"
98 )
99 cmake-utils_src_configure
100 fi
101 }