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.0.ebuild ChangeLog
Date: Tue, 04 Aug 2009 01:34:20
Message-Id: E1MY8uv-0006nT-Lb@stork.gentoo.org
1 wired 09/08/04 01:34:17
2
3 Modified: ChangeLog
4 Added: smoke-4.3.0.ebuild
5 Log:
6 Version bump KDE 4.3.0
7 (Portage version: 2.2_rc33/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.69 kde-base/smoke/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/smoke/ChangeLog?rev=1.69&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/smoke/ChangeLog?rev=1.69&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/smoke/ChangeLog?r1=1.68&r2=1.69
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/smoke/ChangeLog,v
19 retrieving revision 1.68
20 retrieving revision 1.69
21 diff -u -r1.68 -r1.69
22 --- ChangeLog 12 Jul 2009 09:48:56 -0000 1.68
23 +++ ChangeLog 4 Aug 2009 01:34:17 -0000 1.69
24 @@ -1,6 +1,12 @@
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.68 2009/07/12 09:48:56 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/smoke/ChangeLog,v 1.69 2009/08/04 01:34:17 wired Exp $
29 +
30 +*smoke-4.3.0 (04 Aug 2009)
31 +
32 + 04 Aug 2009; Alex Alexander <wired@g.o> +smoke-4.3.0.ebuild,
33 + +files/smoke-phonon-fix.patch:
34 + Version bump
35
36 12 Jul 2009; Raúl Porcel <armin76@g.o> smoke-3.5.10.ebuild:
37 sparc stable wrt #271889
38
39
40
41 1.1 kde-base/smoke/smoke-4.3.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/smoke/smoke-4.3.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/smoke/smoke-4.3.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: smoke-4.3.0.ebuild
47 ===================================================================
48 # Copyright 1999-2009 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.3.0.ebuild,v 1.1 2009/08/04 01:34:17 wired Exp $
51
52 EAPI="2"
53
54 KMNAME="kdebindings"
55 WEBKIT_REQUIRED="optional"
56 inherit kde4-meta
57
58 DESCRIPTION="Scripting Meta Object Kompiler Engine"
59 KEYWORDS="~amd64 ~x86"
60 IUSE="akonadi kdevplatform +phonon qscintilla qwt +semantic-desktop"
61 # okular
62
63 COMMON_DEPEND="
64 >=kde-base/qimageblitz-0.0.4
65 akonadi? (
66 app-office/akonadi-server
67 >=kde-base/kdepimlibs-${PV}:${SLOT}[kdeprefix=]
68 )
69 kdevplatform? ( dev-util/kdevplatform:4 )
70 phonon? ( >=media-sound/phonon-4.4_pre[xcb] )
71 qscintilla? ( x11-libs/qscintilla[qt4] )
72 qwt? ( x11-libs/qwt:5 )
73 semantic-desktop? (
74 dev-libs/soprano
75 >=kde-base/nepomuk-${PV}:${SLOT}[kdeprefix=]
76 )
77 "
78 # okular? ( kde-base/okular) -- it can't find it anyway
79
80 DEPEND="${COMMON_DEPEND}
81 dev-lang/perl
82 "
83 RDEPEND="${COMMON_DEPEND}"
84
85 KMEXTRACTONLY="kalyptus/"
86
87 PATCHES=( "${FILESDIR}"/${PN}-phonon-fix.patch )
88
89 src_configure() {
90 local mycmakeargs="
91 $(cmake-utils_use_enable webkit QTWEBKIT_SMOKE)
92 $(cmake-utils_use_enable qwt QWT_SMOKE)
93 $(cmake-utils_use_enable qscintilla QSCI_SMOKE)
94 $(cmake-utils_use_enable phonon PHONON_SMOKE)
95 $(cmake-utils_use_enable kdevplatform KDEVPLATFORM_SMOKE)
96 $(cmake-utils_use_enable semantic-desktop Nepomuk)
97 $(cmake-utils_use_enable semantic-desktop Soprano)
98 $(cmake-utils_use_enable akonadi Kdepimlibs)
99 $(cmake-utils_use_enable akonadi)
100 -DENABLE_Okular=OFF
101 "
102 # $(cmake-utils_use_enable okular)
103 kde4-meta_src_configure
104 }