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: qtcurve-1.8.14.ebuild ChangeLog
Date: Mon, 04 Nov 2013 04:52:07
Message-Id: 20131104045158.EA6532004B@flycatcher.gentoo.org
1 yngwin 13/11/04 04:51:58
2
3 Modified: ChangeLog
4 Added: qtcurve-1.8.14.ebuild
5 Log:
6 Move stable qtcurve-qt4 here to complete the move
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 0x2B2474AD43CE296E!)
9
10 Revision Changes Path
11 1.77 x11-themes/qtcurve/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/ChangeLog?rev=1.77&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/ChangeLog?rev=1.77&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/ChangeLog?r1=1.76&r2=1.77
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-themes/qtcurve/ChangeLog,v
20 retrieving revision 1.76
21 retrieving revision 1.77
22 diff -u -r1.76 -r1.77
23 --- ChangeLog 3 Nov 2013 08:17:51 -0000 1.76
24 +++ ChangeLog 4 Nov 2013 04:51:58 -0000 1.77
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-themes/qtcurve
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve/ChangeLog,v 1.76 2013/11/03 08:17:51 yngwin Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve/ChangeLog,v 1.77 2013/11/04 04:51:58 yngwin Exp $
30 +
31 +*qtcurve-1.8.14 (04 Nov 2013)
32 +
33 + 04 Nov 2013; Ben de Groot <yngwin@g.o>
34 + +files/qtcurve_kwin_automagic_fix.patch, +qtcurve-1.8.14.ebuild:
35 + Move stable qtcurve-qt4 here to complete the move
36
37 *qtcurve-1.8.17 (03 Nov 2013)
38
39
40
41
42 1.1 x11-themes/qtcurve/qtcurve-1.8.14.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/qtcurve-1.8.14.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/qtcurve-1.8.14.ebuild?rev=1.1&content-type=text/plain
46
47 Index: qtcurve-1.8.14.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve/qtcurve-1.8.14.ebuild,v 1.1 2013/11/04 04:51:58 yngwin Exp $
52
53 EAPI=4
54 KDE_REQUIRED="optional"
55 inherit cmake-utils kde4-base
56
57 MY_P="${P/qtcurve/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 REQUIRED_USE="windeco? ( kde )"
68
69 DEPEND="dev-qt/qtdbus:4
70 dev-qt/qtgui:4
71 dev-qt/qtsvg:4
72 kde? (
73 $(add_kdebase_dep systemsettings)
74 windeco? ( $(add_kdebase_dep kwin) )
75 )"
76 RDEPEND="${DEPEND}"
77
78 S=${WORKDIR}/${MY_P}
79
80 DOCS=( ChangeLog README TODO )
81 PATCHES=( "${FILESDIR}/${PN}_kwin_automagic_fix.patch" )
82
83 pkg_setup() {
84 use kde && kde4-base_pkg_setup
85 }
86
87 src_configure() {
88 local mycmakeargs
89 if use kde; then
90 mycmakeargs=(
91 $(cmake-utils_use windeco QTC_KWIN)
92 )
93 kde4-base_src_configure
94 else
95 mycmakeargs=(
96 "-DQTC_QT_ONLY=true"
97 )
98 cmake-utils_src_configure
99 fi
100 }