forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-sound/elisa: 0.3.0 version bump
Bug: https://bugs.gentoo.org/671396 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST elisa-0.2.1.tar.xz 1488948 BLAKE2B 91c885f0c95cff634570ce283be31ab3ae71119561d5cd309ddb663df050eb0117a7b6a59adb0e334b39d408485762665a07ea0cf316aca7ff30b9278b76a20c SHA512 39701f5c840ed4539e9b4093cccce9c27f728500ef0c7687585a17fabfb9498dda2649664e9613961ef8d514ef2257858bf0c815c0f05b593eb0b42f87ef4e25 | ||
DIST elisa-0.3.0.tar.xz 1248496 BLAKE2B 8a52c35ca1e7a81927d8e95020854725407700e93e15bb778366946e7c19578df6939daec058743d9dffeece43dbb946c0f0ce6612c9ae50ff51c3c023cece1d SHA512 8097f8f2bbcb6199adf856d0786e77a33c46c3ead8f55fb29839862ec96db5ba957a8181af013650e4d8c9ecf32b104f17c26921204e6c7478c0a3a7152c9b9a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Copyright 1999-2018 Gentoo Authors | ||
# 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 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) | ||
) | ||
" | ||
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) | ||
) | ||
|
||
kde5_src_configure | ||
} |