Add KF6 frameworks, knotifications6 (#10497)

This commit is contained in:
Schrijvers Luc
2024-05-28 17:56:55 +02:00
committed by GitHub
parent cae854279b
commit ddda7fd581
2 changed files with 128 additions and 0 deletions

View File

@@ -0,0 +1,106 @@
SUMMARY="KDE Desktop notifications"
DESCRIPTION="KNotification is used to notify the user of an event. \
It covers feedback and persistent events."
HOMEPAGE="https://invent.kde.org/frameworks/knotifications"
COPYRIGHT="2010-2024 KDE Organisation"
LICENSE="GNU LGPL v2"
REVISION="1"
SOURCE_URI="https://download.kde.org/stable/frameworks/${portVersion%.*}/knotifications-${portVersion}.tar.xz"
CHECKSUM_SHA256="9627c200f58de5e5dc4e74d1a13005624115b6d23da034e64aa1bf3143e78164"
SOURCE_DIR="knotifications-$portVersion"
PATCHES="knotifications-$portVersion.patchset"
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
libVersion="$portVersion"
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
PROVIDES="
knotifications6$secondaryArchSuffix = $portVersion
lib:libKF6Notifications$secondaryArchSuffix = $libVersionCompat
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libGL$secondaryArchSuffix
lib:libKF6Codecs$secondaryArchSuffix
lib:libKF6ConfigCore$secondaryArchSuffix
lib:libKF6CoreAddons$secondaryArchSuffix
lib:libKF6WindowSystem$secondaryArchSuffix
lib:libphonon4Qt6$secondaryArchSuffix
lib:libphonon4Qt6experimental$secondaryArchSuffix
lib:libQt6Core$secondaryArchSuffix
lib:libQt6DBus$secondaryArchSuffix
lib:libQt6Gui$secondaryArchSuffix
lib:libQt6Widgets$secondaryArchSuffix
"
PROVIDES_devel="
knotifications6${secondaryArchSuffix}_devel = $portVersion
devel:libKF6Notifications$secondaryArchSuffix = $libVersionCompat
"
REQUIRES_devel="
knotifications6$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
extra_cmake_modules$secondaryArchSuffix >= $portVersion
qt6_tools${secondaryArchSuffix}_devel
devel:libKF6Codecs$secondaryArchSuffix == $portVersion
devel:libKF6ConfigCore$secondaryArchSuffix == $portVersion
devel:libKF6CoreAddons$secondaryArchSuffix == $portVersion
devel:libKF6WindowSystem$secondaryArchSuffix == $portVersion
devel:libphonon4Qt6$secondaryArchSuffix
devel:libphonon4Qt6experimental$secondaryArchSuffix
devel:libQt6Core$secondaryArchSuffix
devel:libQt6DBus$secondaryArchSuffix
devel:libQt6Gui$secondaryArchSuffix
devel:libqt6Qml$secondaryArchSuffix
devel:libQt6Widgets$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:cmake
cmd:dot
cmd:doxygen >= 1.9
cmd:g++$secondaryArchSuffix
cmd:make
"
TEST_REQUIRES="
qthaikuplugins
"
BUILD()
{
cmake -Bbuild -S. $cmakeDirArgs \
-DCMAKE_BUILD_TYPE=Release \
-DKDE_INSTALL_QMLDIR=$dataDir/Qt6/qml \
-DECM_DIR=/system/data/cmake/Modules/ECM/cmake \
-DBUILD_QCH=ON \
-DBUILD_TESTING=OFF
make -Cbuild $jobArgs
}
INSTALL()
{
make -Cbuild install
prepareInstalledDevelLib \
libKF6Notifications
packageEntries devel \
$developDir \
$dataDir/doc \
$libDir/cmake
}
TEST()
{
make -Cbuild test
# individual tests, opens window, manual intervention needed
# export LIBRARY_PATH="$sourceDir/build/bin${LIBRARY_PATH:+:$LIBRARY_PATH}"
# build/bin/knotificationdbustest # no dbus-launch
# build/bin/notificationtester
# build/bin/unitylaunchertest --version
}

View File

@@ -0,0 +1,22 @@
From 14f42afcee3b6dfd5adb9faa68377577c54fef9a Mon Sep 17 00:00:00 2001
From: Begasus <begasus@gmail.com>
Date: Sun, 14 Jan 2024 19:28:13 +0100
Subject: Disable Canberra check
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9f3af3e..0b68354 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -68,7 +68,7 @@ endif()
find_package(KF6Config ${KF_DEP_VERSION} REQUIRED)
-if (NOT APPLE AND NOT ANDROID AND NOT WIN32 OR (WIN32 AND NOT WITH_SNORETOAST))
+if (NOT APPLE AND NOT ANDROID AND NOT WIN32 AND NOT HAIKU OR (WIN32 AND NOT WITH_SNORETOAST))
find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED DBus)
find_package(Canberra REQUIRED)
set_package_properties(Canberra PROPERTIES
--
2.43.2