Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/smoke: ChangeLog smoke-4.6.3.ebuild
Date: Sat, 07 May 2011 11:03:58
Message-Id: 20110507104755.7931C20065@flycatcher.gentoo.org
1 scarabeus 11/05/07 10:47:55
2
3 Modified: ChangeLog
4 Added: smoke-4.6.3.ebuild
5 Log:
6 Version bump to KDE SC 4.6.3.
7
8 (Portage version: 2.2.0_alpha31/cvs/Linux x86_64, RepoMan options: --force)
9
10 Revision Changes Path
11 1.129 kde-base/smoke/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/smoke/ChangeLog?rev=1.129&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/smoke/ChangeLog?rev=1.129&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/smoke/ChangeLog?r1=1.128&r2=1.129
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-base/smoke/ChangeLog,v
20 retrieving revision 1.128
21 retrieving revision 1.129
22 diff -u -r1.128 -r1.129
23 --- ChangeLog 17 Apr 2011 12:25:32 -0000 1.128
24 +++ ChangeLog 7 May 2011 10:47:55 -0000 1.129
25 @@ -1,6 +1,11 @@
26 # ChangeLog for kde-base/smoke
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-base/smoke/ChangeLog,v 1.128 2011/04/17 12:25:32 tomka Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/smoke/ChangeLog,v 1.129 2011/05/07 10:47:55 scarabeus Exp $
30 +
31 +*smoke-4.6.3 (07 May 2011)
32 +
33 + 07 May 2011; Tomáš Chvátal <scarabeus@g.o> +smoke-4.6.3.ebuild:
34 + Version bump KDE SC 4.6.3
35
36 17 Apr 2011; Thomas Kahle <tomka@g.o> smoke-4.4.5-r1.ebuild:
37 x86 stable per bug 354569
38
39
40
41 1.1 kde-base/smoke/smoke-4.6.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/smoke/smoke-4.6.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/smoke/smoke-4.6.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: smoke-4.6.3.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/kde-base/smoke/smoke-4.6.3.ebuild,v 1.1 2011/05/07 10:47:55 scarabeus Exp $
51
52 EAPI=4
53
54 DECLARATIVE_REQUIRED="optional"
55 MULTIMEDIA_REQUIRED="optional"
56 QTHELP_REQUIRED="optional"
57 WEBKIT_REQUIRED="optional"
58
59 KDE_SCM="git"
60 if [[ ${PV} == *9999 ]]; then
61 eclass=kde4-base
62 else
63 KMNAME="kdebindings"
64 eclass=kde4-meta
65 fi
66
67 inherit ${eclass}
68
69 DESCRIPTION="Scripting Meta Object Kompiler Engine"
70 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
71 IUSE="akonadi attica debug kate okular +phonon qimageblitz qscintilla qwt semantic-desktop"
72
73 COMMON_DEPEND="
74 $(add_kdebase_dep kdelibs 'semantic-desktop=')
75 akonadi? ( $(add_kdebase_dep kdepimlibs) )
76 attica? ( dev-libs/libattica )
77 kate? ( $(add_kdebase_dep kate) )
78 okular? ( $(add_kdebase_dep okular) )
79 phonon? ( >=media-libs/phonon-4.4.3 )
80 qimageblitz? ( >=media-libs/qimageblitz-0.0.4 )
81 qscintilla? ( x11-libs/qscintilla )
82 qwt? ( x11-libs/qwt:5 )
83 "
84 DEPEND="${COMMON_DEPEND}"
85 RDEPEND="${COMMON_DEPEND}"
86
87 KMEXTRA="generator/"
88
89 KMSAVELIBS=1
90
91 src_configure() {
92 mycmakeargs=(
93 -DDISABLE_Qt3Support=ON
94 $(cmake-utils_use_with akonadi)
95 $(cmake-utils_use_with akonadi KdepimLibs)
96 $(cmake-utils_use_with attica LibAttica)
97 $(cmake-utils_use_disable declarative QtDeclarative)
98 $(cmake-utils_use_disable kate)
99 $(cmake-utils_use_disable multimedia QtMultimedia)
100 $(cmake-utils_use_with okular)
101 $(cmake-utils_use_with phonon)
102 $(cmake-utils_use_with qimageblitz QImageBlitz)
103 $(cmake-utils_use_with qscintilla QScintilla)
104 $(cmake-utils_use_disable qthelp QtHelp)
105 $(cmake-utils_use_disable qwt)
106 $(cmake-utils_use_with semantic-desktop Nepomuk)
107 $(cmake-utils_use_with semantic-desktop Soprano)
108 $(cmake-utils_use_disable webkit QtWebKit)
109 )
110 ${eclass}_src_configure
111 }