From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BEEE3138334 for ; Sat, 30 Mar 2019 19:28:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0BFD6E0882; Sat, 30 Mar 2019 19:28:35 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9CB3E0876 for ; Sat, 30 Mar 2019 19:28:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 99029335CD8 for ; Sat, 30 Mar 2019 19:28:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6461758E for ; Sat, 30 Mar 2019 19:28:30 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1553973964.60fdeedccefc93aefded5135e7a4abc13e85d432.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/elisa/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/elisa/elisa-0.3.0-r1.ebuild X-VCS-Directories: media-sound/elisa/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 60fdeedccefc93aefded5135e7a4abc13e85d432 X-VCS-Branch: master Date: Sat, 30 Mar 2019 19:28:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 35d3952c-da58-45e2-afea-14d5a07afb1e X-Archives-Hash: 47097c7d2285a3492248dd8a6b33d5bf commit: 60fdeedccefc93aefded5135e7a4abc13e85d432 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Mar 30 16:11:12 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Mar 30 19:26:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60fdeedc media-sound/elisa: EAPI-7 bump Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/elisa/elisa-0.3.0-r1.ebuild | 63 +++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/media-sound/elisa/elisa-0.3.0-r1.ebuild b/media-sound/elisa/elisa-0.3.0-r1.ebuild new file mode 100644 index 00000000000..179c74eabb5 --- /dev/null +++ b/media-sound/elisa/elisa-0.3.0-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_TEST="forceoptional" +KDE_HANDBOOK="optional" +inherit kde5 + +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="Simple music player by KDE" +HOMEPAGE="https://community.kde.org/Elisa" +LICENSE="LGPL-3+" +IUSE="mpris semantic-desktop" + +BDEPEND=" + sys-devel/gettext +" +DEPEND=" + $(add_frameworks_dep kcmutils) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kcrash) + $(add_frameworks_dep kdeclarative) + $(add_frameworks_dep kfilemetadata) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep kitemviews) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtdeclarative) + $(add_qt_dep qtgui) + $(add_qt_dep qtmultimedia 'gstreamer') + $(add_qt_dep qtsql) + $(add_qt_dep qtwidgets) + mpris? ( + $(add_frameworks_dep kdbusaddons) + $(add_qt_dep qtdbus) + ) + semantic-desktop? ( + $(add_frameworks_dep baloo) + ) +" +RDEPEND="${DEPEND} + $(add_qt_dep qtgraphicaleffects) + $(add_qt_dep qtquickcontrols) + $(add_qt_dep qtquickcontrols2) +" + +RESTRICT+=" test" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package mpris KF5DBusAddons) + $(cmake-utils_use_find_package semantic-desktop KF5Baloo) + ) + + kde5_src_configure +}