Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde-sunset:master commit in: kde-apps/superkaramba/
Date: Tue, 31 May 2016 09:44:20
Message-Id: 1464687839.f13cbf264e5c4b865b20ea96316367b49d490962.johu@gentoo
1 commit: f13cbf264e5c4b865b20ea96316367b49d490962
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 31 09:43:59 2016 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Tue May 31 09:43:59 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=f13cbf26
7
8 kde-apps/superkaramba: Import from gentoo main tree
9
10 Package-Manager: portage-2.3.0_rc1
11
12 kde-apps/superkaramba/metadata.xml | 5 +++
13 kde-apps/superkaramba/superkaramba-15.08.3.ebuild | 42 +++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/kde-apps/superkaramba/metadata.xml b/kde-apps/superkaramba/metadata.xml
17 new file mode 100644
18 index 0000000..6f49eba
19 --- /dev/null
20 +++ b/kde-apps/superkaramba/metadata.xml
21 @@ -0,0 +1,5 @@
22 +<?xml version="1.0" encoding="UTF-8"?>
23 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
24 +<pkgmetadata>
25 +<!-- maintainer-needed -->
26 +</pkgmetadata>
27
28 diff --git a/kde-apps/superkaramba/superkaramba-15.08.3.ebuild b/kde-apps/superkaramba/superkaramba-15.08.3.ebuild
29 new file mode 100644
30 index 0000000..a2b9441
31 --- /dev/null
32 +++ b/kde-apps/superkaramba/superkaramba-15.08.3.ebuild
33 @@ -0,0 +1,42 @@
34 +# Copyright 1999-2016 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +# $Id$
37 +
38 +EAPI=5
39 +
40 +PYTHON_COMPAT=( python2_7 )
41 +inherit python-single-r1 kde4-base
42 +
43 +DESCRIPTION="A tool to create interactive applets for the KDE desktop"
44 +HOMEPAGE="https://www.kde.org/applications/utilities/superkaramba
45 +https://utils.kde.org/projects/superkaramba"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="debug python"
48 +
49 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
50 +
51 +DEPEND="
52 + media-libs/qimageblitz
53 + x11-libs/libX11
54 + x11-libs/libXrender
55 + python? (
56 + ${PYTHON_DEPS}
57 + $(add_kdebase_dep pykde4 "${PYTHON_USEDEP}")
58 + )
59 +"
60 +RDEPEND="${DEPEND}
61 + python? ( $(add_kdebase_dep krosspython "${PYTHON_USEDEP}") )
62 +"
63 +
64 +pkg_setup() {
65 + use python && python-single-r1_pkg_setup
66 + kde4-base_pkg_setup
67 +}
68 +
69 +src_configure() {
70 + local mycmakeargs=(
71 + $(cmake-utils_use_with python PythonLibs)
72 + )
73 +
74 + kde4-base_src_configure
75 +}