Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/smokeqt: ChangeLog smokeqt-4.12.2.ebuild
Date: Thu, 06 Feb 2014 23:21:07
Message-Id: 20140206232010.03ADA2004C@flycatcher.gentoo.org
1 dilfridge 14/02/06 23:20:09
2
3 Modified: ChangeLog
4 Added: smokeqt-4.12.2.ebuild
5 Log:
6 Version bump KDE SC 4.12.2
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key EBE6A336BE19039C!)
9
10 Revision Changes Path
11 1.110 kde-base/smokeqt/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/smokeqt/ChangeLog?rev=1.110&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/smokeqt/ChangeLog?rev=1.110&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/smokeqt/ChangeLog?r1=1.109&r2=1.110
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-base/smokeqt/ChangeLog,v
20 retrieving revision 1.109
21 retrieving revision 1.110
22 diff -u -r1.109 -r1.110
23 --- ChangeLog 20 Jan 2014 15:00:09 -0000 1.109
24 +++ ChangeLog 6 Feb 2014 23:20:09 -0000 1.110
25 @@ -1,6 +1,12 @@
26 # ChangeLog for kde-base/smokeqt
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-base/smokeqt/ChangeLog,v 1.109 2014/01/20 15:00:09 kensington Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/smokeqt/ChangeLog,v 1.110 2014/02/06 23:20:09 dilfridge Exp $
30 +
31 +*smokeqt-4.12.2 (06 Feb 2014)
32 +
33 + 06 Feb 2014; Andreas K. Huettel <dilfridge@g.o>
34 + +smokeqt-4.12.2.ebuild:
35 + Version bump KDE SC 4.12.2
36
37 20 Jan 2014; Michael Palimaka <kensington@g.o> -smokeqt-4.12.0.ebuild:
38 Remove KDE SC 4.12.0
39
40
41
42 1.1 kde-base/smokeqt/smokeqt-4.12.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/smokeqt/smokeqt-4.12.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/smokeqt/smokeqt-4.12.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: smokeqt-4.12.2.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/kde-base/smokeqt/smokeqt-4.12.2.ebuild,v 1.1 2014/02/06 23:20:09 dilfridge Exp $
52
53 EAPI=5
54
55 DECLARATIVE_REQUIRED="optional"
56 MULTIMEDIA_REQUIRED="optional"
57 QTHELP_REQUIRED="optional"
58 OPENGL_REQUIRED="optional"
59 KDE_REQUIRED="never"
60
61 inherit kde4-base
62
63 DESCRIPTION="Scripting Meta Object Kompiler Engine - Qt bindings"
64 KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
65 IUSE="debug +phonon qimageblitz qscintilla qwt webkit"
66 HOMEPAGE="http://techbase.kde.org/Development/Languages/Smoke"
67
68 # Maybe make more of Qt optional?
69 DEPEND="
70 $(add_kdebase_dep smokegen)
71 dev-qt/qtcore:4
72 dev-qt/qtdbus:4
73 || ( ( >=dev-qt/qtgui-4.8.5:4 dev-qt/designer:4 ) <dev-qt/qtgui-4.8.5:4 )
74 dev-qt/qtscript:4
75 dev-qt/qtsql:4
76 dev-qt/qtsvg:4
77 dev-qt/qttest:4
78 phonon? ( >=media-libs/phonon-4.4.3 )
79 qimageblitz? ( >=media-libs/qimageblitz-0.0.4 )
80 qscintilla? ( x11-libs/qscintilla:= )
81 qwt? ( x11-libs/qwt:5[svg] )
82 webkit? ( dev-qt/qtwebkit:4 )
83 "
84 RDEPEND="${DEPEND}"
85
86 src_configure() {
87 mycmakeargs=(
88 -DDISABLE_Qt3Support=ON
89 -DWITH_QT3_SUPPORT=OFF
90 $(cmake-utils_use_disable declarative QtDeclarative)
91 $(cmake-utils_use_disable multimedia QtMultimedia)
92 $(cmake-utils_use_disable opengl QtOpenGL)
93 $(cmake-utils_use_with phonon)
94 $(cmake-utils_use_with qimageblitz QImageBlitz)
95 $(cmake-utils_use_with qscintilla QScintilla)
96 $(cmake-utils_use_disable qthelp QtHelp)
97 $(cmake-utils_use_disable qwt Qwt5)
98 $(cmake-utils_use_disable webkit QtWebKit)
99 )
100 kde4-base_src_configure
101 }