Gentoo Archives: gentoo-commits

From: Chris Reffett <creffett@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: plasma-active/bodega-client/
Date: Thu, 03 Oct 2013 23:28:40
Message-Id: 1380836732.0e815d930d98b30c21f1e6525c4cab2f9c5c95bc.creffett@gentoo
1 commit: 0e815d930d98b30c21f1e6525c4cab2f9c5c95bc
2 Author: Chris Reffett <creffett <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 3 21:45:32 2013 +0000
4 Commit: Chris Reffett <creffett <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 3 21:45:32 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0e815d93
7
8 [plasma-active/bodega-client] Bump to 0.2 (plasma-active 4.0)
9
10 Package-Manager: portage-2.2.7
11
12 ---
13 .../bodega-client/bodega-client-0.2.ebuild | 30 ++++++++++++++++++++++
14 1 file changed, 30 insertions(+)
15
16 diff --git a/plasma-active/bodega-client/bodega-client-0.2.ebuild b/plasma-active/bodega-client/bodega-client-0.2.ebuild
17 new file mode 100644
18 index 0000000..6b84316
19 --- /dev/null
20 +++ b/plasma-active/bodega-client/bodega-client-0.2.ebuild
21 @@ -0,0 +1,30 @@
22 +# Copyright 1999-2013 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Header: $
25 +
26 +EAPI=5
27 +
28 +inherit kde4-base
29 +DESCRIPTION="A content publishing and distribution platform for Plasma Active"
30 +HOMEPAGE="http://www.kde.org/"
31 +SRC_URI="mirror://kde/stable/active/4.0/src/${P}.tar.xz"
32 +
33 +LICENSE="GPL-2+ LGPL-2+"
34 +SLOT="4"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="epub"
37 +
38 +DEPEND="
39 + dev-libs/qjson
40 + epub? ( dev-libs/soprano $(add_kdebase_dep nepomuk-core epub) )
41 +"
42 +RDEPEND="${DEPEND}"
43 +
44 +src_configure() {
45 + local mycmakeargs=(
46 + "-DCMAKE_DISABLE_FIND_PACKAGE_Soprano=FALSE"
47 + $(cmake-utils_use_find_package epub Soprano)
48 + $(cmake-utils_use_find_package epub NepomukCore)
49 + )
50 + kde4-base_src_configure
51 +}