Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/elisa/
Date: Sat, 30 Mar 2019 19:28:37
Message-Id: 1553973964.60fdeedccefc93aefded5135e7a4abc13e85d432.asturm@gentoo
1 commit: 60fdeedccefc93aefded5135e7a4abc13e85d432
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 30 16:11:12 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 30 19:26:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60fdeedc
7
8 media-sound/elisa: EAPI-7 bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/elisa/elisa-0.3.0-r1.ebuild | 63 +++++++++++++++++++++++++++++++++
14 1 file changed, 63 insertions(+)
15
16 diff --git a/media-sound/elisa/elisa-0.3.0-r1.ebuild b/media-sound/elisa/elisa-0.3.0-r1.ebuild
17 new file mode 100644
18 index 00000000000..179c74eabb5
19 --- /dev/null
20 +++ b/media-sound/elisa/elisa-0.3.0-r1.ebuild
21 @@ -0,0 +1,63 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +KDE_TEST="forceoptional"
28 +KDE_HANDBOOK="optional"
29 +inherit kde5
30 +
31 +if [[ ${KDE_BUILD_TYPE} = release ]]; then
32 + SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
33 + KEYWORDS="~amd64"
34 +fi
35 +
36 +DESCRIPTION="Simple music player by KDE"
37 +HOMEPAGE="https://community.kde.org/Elisa"
38 +LICENSE="LGPL-3+"
39 +IUSE="mpris semantic-desktop"
40 +
41 +BDEPEND="
42 + sys-devel/gettext
43 +"
44 +DEPEND="
45 + $(add_frameworks_dep kcmutils)
46 + $(add_frameworks_dep kconfig)
47 + $(add_frameworks_dep kconfigwidgets)
48 + $(add_frameworks_dep kcoreaddons)
49 + $(add_frameworks_dep kcrash)
50 + $(add_frameworks_dep kdeclarative)
51 + $(add_frameworks_dep kfilemetadata)
52 + $(add_frameworks_dep ki18n)
53 + $(add_frameworks_dep kio)
54 + $(add_frameworks_dep kitemviews)
55 + $(add_frameworks_dep kxmlgui)
56 + $(add_qt_dep qtdeclarative)
57 + $(add_qt_dep qtgui)
58 + $(add_qt_dep qtmultimedia 'gstreamer')
59 + $(add_qt_dep qtsql)
60 + $(add_qt_dep qtwidgets)
61 + mpris? (
62 + $(add_frameworks_dep kdbusaddons)
63 + $(add_qt_dep qtdbus)
64 + )
65 + semantic-desktop? (
66 + $(add_frameworks_dep baloo)
67 + )
68 +"
69 +RDEPEND="${DEPEND}
70 + $(add_qt_dep qtgraphicaleffects)
71 + $(add_qt_dep qtquickcontrols)
72 + $(add_qt_dep qtquickcontrols2)
73 +"
74 +
75 +RESTRICT+=" test"
76 +
77 +src_configure() {
78 + local mycmakeargs=(
79 + $(cmake-utils_use_find_package mpris KF5DBusAddons)
80 + $(cmake-utils_use_find_package semantic-desktop KF5Baloo)
81 + )
82 +
83 + kde5_src_configure
84 +}