Gentoo Archives: gentoo-commits

From: "Alex Alexander (wired)" <wired@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/smoke: smoke-4.3.3.ebuild ChangeLog
Date: Mon, 02 Nov 2009 22:11:16
Message-Id: E1N557K-0000Bu-N4@stork.gentoo.org
1 wired 09/11/02 22:11:14
2
3 Modified: ChangeLog
4 Added: smoke-4.3.3.ebuild
5 Log:
6 Version bump KDE 4.3.3
7 (Portage version: 2.2_rc48/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.79 kde-base/smoke/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/smoke/ChangeLog?rev=1.79&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/smoke/ChangeLog?rev=1.79&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/smoke/ChangeLog?r1=1.78&r2=1.79
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/smoke/ChangeLog,v
19 retrieving revision 1.78
20 retrieving revision 1.79
21 diff -u -r1.78 -r1.79
22 --- ChangeLog 26 Oct 2009 21:31:59 -0000 1.78
23 +++ ChangeLog 2 Nov 2009 22:11:14 -0000 1.79
24 @@ -1,6 +1,11 @@
25 # ChangeLog for kde-base/smoke
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/kde-base/smoke/ChangeLog,v 1.78 2009/10/26 21:31:59 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/smoke/ChangeLog,v 1.79 2009/11/02 22:11:14 wired Exp $
29 +
30 +*smoke-4.3.3 (02 Nov 2009)
31 +
32 + 02 Nov 2009; Alex Alexander <wired@g.o> +smoke-4.3.3.ebuild:
33 + Version bump
34
35 26 Oct 2009; Jeroen Roovers <jer@g.o> smoke-4.3.1.ebuild,
36 smoke-4.3.2.ebuild:
37
38
39
40 1.1 kde-base/smoke/smoke-4.3.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/smoke/smoke-4.3.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/smoke/smoke-4.3.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: smoke-4.3.3.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/kde-base/smoke/smoke-4.3.3.ebuild,v 1.1 2009/11/02 22:11:14 wired Exp $
50
51 EAPI="2"
52
53 KMNAME="kdebindings"
54 WEBKIT_REQUIRED="optional"
55 inherit kde4-meta
56
57 DESCRIPTION="Scripting Meta Object Kompiler Engine"
58 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
59 IUSE="akonadi kdevplatform +phonon qscintilla qwt +semantic-desktop"
60 # okular
61
62 COMMON_DEPEND="
63 >=kde-base/qimageblitz-0.0.4
64 akonadi? (
65 app-office/akonadi-server
66 $(add_kdebase_dep kdepimlibs)
67 )
68 kdevplatform? ( dev-util/kdevplatform:4 )
69 phonon? ( >=media-sound/phonon-4.4_pre[xcb] )
70 qscintilla? ( x11-libs/qscintilla[qt4] )
71 qwt? ( x11-libs/qwt:5 )
72 semantic-desktop? (
73 dev-libs/soprano
74 $(add_kdebase_dep nepomuk)
75 )
76 "
77 # okular? ( kde-base/okular) -- it can't find it anyway
78
79 DEPEND="${COMMON_DEPEND}
80 dev-lang/perl
81 "
82 RDEPEND="${COMMON_DEPEND}"
83
84 KMEXTRACTONLY="kalyptus/"
85
86 PATCHES=( "${FILESDIR}"/${PN}-phonon-fix.patch )
87
88 src_configure() {
89 local mycmakeargs="
90 $(cmake-utils_use_enable webkit QTWEBKIT_SMOKE)
91 $(cmake-utils_use_enable qwt QWT_SMOKE)
92 $(cmake-utils_use_enable qscintilla QSCI_SMOKE)
93 $(cmake-utils_use_enable phonon PHONON_SMOKE)
94 $(cmake-utils_use_enable kdevplatform KDEVPLATFORM_SMOKE)
95 $(cmake-utils_use_enable semantic-desktop Nepomuk)
96 $(cmake-utils_use_enable semantic-desktop Soprano)
97 $(cmake-utils_use_enable akonadi Kdepimlibs)
98 $(cmake-utils_use_enable akonadi)
99 -DENABLE_Okular=OFF
100 "
101 # $(cmake-utils_use_enable okular)
102 kde4-meta_src_configure
103 }