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 1A8AA1382C5 for ; Sun, 8 Apr 2018 13:26:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BA0EE0A91; Sun, 8 Apr 2018 13:26:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 5C4EFE0A91 for ; Sun, 8 Apr 2018 13:26:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 48862335C09 for ; Sun, 8 Apr 2018 13:26:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68DB327C for ; Sun, 8 Apr 2018 13:26:20 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1523193966.20907890a6ece47d986d52e632b34fceb0410c2f.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: media-sound/elisa/ X-VCS-Repository: proj/kde X-VCS-Files: media-sound/elisa/elisa-0.1.ebuild X-VCS-Directories: media-sound/elisa/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 20907890a6ece47d986d52e632b34fceb0410c2f X-VCS-Branch: master Date: Sun, 8 Apr 2018 13:26:20 +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-Archives-Salt: fa948bde-91c8-4984-94f2-71a034f93667 X-Archives-Hash: fb0856a43c9327017d9a23ee94b29454 commit: 20907890a6ece47d986d52e632b34fceb0410c2f Author: Johannes Huber gentoo org> AuthorDate: Sun Apr 8 13:26:06 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sun Apr 8 13:26:06 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=20907890 media-sound/elisa: Version bump 0.1 Package-Manager: Portage-2.3.28, Repoman-2.3.9 media-sound/elisa/elisa-0.1.ebuild | 62 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/media-sound/elisa/elisa-0.1.ebuild b/media-sound/elisa/elisa-0.1.ebuild new file mode 100644 index 0000000000..722936e3e4 --- /dev/null +++ b/media-sound/elisa/elisa-0.1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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" + +COMMON_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 ki18n) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtdeclarative) + $(add_qt_dep qtgui) + $(add_qt_dep qtmultimedia) + $(add_qt_dep qtsql) + $(add_qt_dep qtwidgets) + mpris? ( + $(add_frameworks_dep kdbusaddons) + $(add_qt_dep qtdbus) + ) + semantic-desktop? ( + $(add_frameworks_dep baloo) + $(add_frameworks_dep kfilemetadata) + ) +" +DEPEND="${COMMON_DEPEND} + sys-devel/gettext +" +RDEPEND="${COMMON_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) + $(cmake-utils_use_find_package semantic-desktop KF5FileMetaData) + ) + + kde5_src_configure +}