85 lines
2.4 KiB
Bash
85 lines
2.4 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
ECM_HANDBOOK="forceoptional"
|
|
PVCUT=$(ver_cut 1-3)
|
|
KFMIN=5.63.0
|
|
QTMIN=5.12.3
|
|
inherit ecm kde.org
|
|
|
|
DESCRIPTION="Application to manage alarms and other timer based alerts for the desktop"
|
|
HOMEPAGE="https://kde.org/applications/utilities/org.kde.kalarm
|
|
https://userbase.kde.org/KAlarm"
|
|
|
|
LICENSE="GPL-2+ handbook? ( FDL-1.2+ )"
|
|
SLOT="5"
|
|
KEYWORDS="amd64 arm64 x86"
|
|
IUSE="X"
|
|
|
|
BDEPEND="
|
|
dev-libs/libxslt
|
|
"
|
|
DEPEND="
|
|
>=kde-frameworks/kauth-${KFMIN}:5
|
|
>=kde-frameworks/kcalendarcore-${KFMIN}:5
|
|
>=kde-frameworks/kcmutils-${KFMIN}:5
|
|
>=kde-frameworks/kcodecs-${KFMIN}:5
|
|
>=kde-frameworks/kcompletion-${KFMIN}:5
|
|
>=kde-frameworks/kconfig-${KFMIN}:5
|
|
>=kde-frameworks/kconfigwidgets-${KFMIN}:5
|
|
>=kde-frameworks/kcontacts-${KFMIN}:5
|
|
>=kde-frameworks/kcoreaddons-${KFMIN}:5
|
|
>=kde-frameworks/kcrash-${KFMIN}:5
|
|
>=kde-frameworks/kdbusaddons-${KFMIN}:5
|
|
>=kde-frameworks/kglobalaccel-${KFMIN}:5
|
|
>=kde-frameworks/kguiaddons-${KFMIN}:5
|
|
>=kde-frameworks/kholidays-${KFMIN}:5
|
|
>=kde-frameworks/ki18n-${KFMIN}:5
|
|
>=kde-frameworks/kiconthemes-${KFMIN}:5
|
|
>=kde-frameworks/kio-${KFMIN}:5
|
|
>=kde-frameworks/kitemmodels-${KFMIN}:5
|
|
>=kde-frameworks/kjobwidgets-${KFMIN}:5
|
|
>=kde-frameworks/knotifications-${KFMIN}:5
|
|
>=kde-frameworks/kservice-${KFMIN}:5
|
|
>=kde-frameworks/ktextwidgets-${KFMIN}:5
|
|
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
|
|
>=kde-frameworks/kwindowsystem-${KFMIN}:5
|
|
>=kde-frameworks/kxmlgui-${KFMIN}:5
|
|
>=kde-apps/akonadi-${PVCUT}:5
|
|
>=kde-apps/akonadi-contacts-${PVCUT}:5
|
|
>=kde-apps/akonadi-mime-${PVCUT}:5
|
|
>=kde-apps/kalarmcal-${PVCUT}:5
|
|
>=kde-apps/kcalutils-${PVCUT}:5
|
|
>=kde-apps/kdepim-apps-libs-${PVCUT}:5
|
|
>=kde-apps/kidentitymanagement-${PVCUT}:5
|
|
>=kde-apps/kmailtransport-${PVCUT}:5
|
|
>=kde-apps/kmime-${PVCUT}:5
|
|
>=kde-apps/kontactinterface-${PVCUT}:5
|
|
>=kde-apps/kpimtextedit-${PVCUT}:5
|
|
>=kde-apps/libkdepim-${PVCUT}:5
|
|
>=kde-apps/mailcommon-${PVCUT}:5
|
|
>=kde-apps/pimcommon-${PVCUT}:5
|
|
>=dev-qt/qtdbus-${QTMIN}:5
|
|
>=dev-qt/qtgui-${QTMIN}:5
|
|
>=dev-qt/qtnetwork-${QTMIN}:5
|
|
>=dev-qt/qtwidgets-${QTMIN}:5
|
|
media-libs/phonon[qt5(+)]
|
|
X? (
|
|
>=dev-qt/qtx11extras-${QTMIN}:5
|
|
x11-libs/libX11
|
|
)
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
>=kde-apps/kdepim-runtime-${PVCUT}:5
|
|
"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
$(cmake_use_find_package X Qt5X11Extras)
|
|
$(cmake_use_find_package X X11)
|
|
)
|
|
|
|
ecm_src_configure
|
|
}
|