mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
plasma, bump basic frameworks to 6.3.4 (#12218)
This commit is contained in:
@@ -5,7 +5,7 @@ COPYRIGHT="2010-2025 KDE Organisation"
|
||||
LICENSE="GNU GPL v2"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://download.kde.org/stable/plasma/$portVersion/kde-cli-tools-$portVersion.tar.xz"
|
||||
CHECKSUM_SHA256="cccbcd737f1f433f2eeb17ee1e3b8cc10b673a13b685bc0d60a391978fc97b3b"
|
||||
CHECKSUM_SHA256="8a00f5ec0ab2e2706ecb5ed26c0b7df90524fd469cd157698476e3a54a385522"
|
||||
SOURCE_DIR="kde-cli-tools-$portVersion"
|
||||
|
||||
ARCHITECTURES="all !x86_gcc2"
|
||||
@@ -12,7 +12,7 @@ LICENSE="GNU LGPL v2.1
|
||||
GNU LGPL v3"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://download.kde.org/stable/plasma/$portVersion/kdecoration-$portVersion.tar.xz"
|
||||
CHECKSUM_SHA256="74f7f4afca10a0a37915233c80033cdb332a7f9f45afc64d0c38c60aba2d5dd3"
|
||||
CHECKSUM_SHA256="b9d049a9f5a6359856e66dbad0769b48189210ad7f8b3e009da2b4ae2813789a"
|
||||
SOURCE_DIR="kdecoration-$portVersion"
|
||||
|
||||
ARCHITECTURES="all !x86_gcc2"
|
||||
@@ -0,0 +1,103 @@
|
||||
SUMMARY="A library for accessing the usage data collected by the activities system"
|
||||
DESCRIPTION="The KActivitiesStats library provides a querying mechanism for the data that the \
|
||||
activity manager collects - which documents hae been opened by which applications, and what \
|
||||
documents have been linked to which activity.
|
||||
The activity manager also keeps the score for each document which gets higher when a particular \
|
||||
document has been often accessed or kept open for longer periods of time. This score is also \
|
||||
available through the querying mechanism."
|
||||
HOMEPAGE="https://invent.kde.org/plasma/plasma-activities-stats"
|
||||
COPYRIGHT="2010-2025 KDE Organisation"
|
||||
LICENSE="GNU LGPL v2"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://download.kde.org/stable/plasma/$portVersion/plasma-activities-stats-$portVersion.tar.xz"
|
||||
CHECKSUM_SHA256="014bd3eb983dc8e10ff52ed02f8d490562b9d0d623918e9270d9d84aa5b28b4d"
|
||||
SOURCE_DIR="plasma-activities-stats-$portVersion"
|
||||
|
||||
ARCHITECTURES="all !x86_gcc2"
|
||||
SECONDARY_ARCHITECTURES="x86"
|
||||
|
||||
libVersion="$portVersion"
|
||||
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
|
||||
|
||||
PROVIDES="
|
||||
plasma_activities_stats6$secondaryArchSuffix = $portVersion
|
||||
lib:libPlasmaActivitiesStats$secondaryArchSuffix = $libVersionCompat
|
||||
"
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
# KF6
|
||||
lib:libKF6ConfigCore$secondaryArchSuffix
|
||||
lib:libPlasmaActivities$secondaryArchSuffix
|
||||
# Qt6
|
||||
lib:libQt6Core$secondaryArchSuffix
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
plasma_activities_stats6${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libPlasmaActivitiesStats$secondaryArchSuffix = $libVersionCompat
|
||||
"
|
||||
REQUIRES_devel="
|
||||
plasma_activities_stats6$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
devel:libboost_system$secondaryArchSuffix >= 1.83.0
|
||||
# KF6
|
||||
extra_cmake_modules$secondaryArchSuffix
|
||||
devel:libKF6ConfigCore$secondaryArchSuffix
|
||||
devel:libPlasmaActivities$secondaryArchSuffix == $portVersion
|
||||
# Qt6
|
||||
qt6_tools${secondaryArchSuffix}_devel
|
||||
devel:libQt6Core$secondaryArchSuffix
|
||||
devel:libQt6Qml$secondaryArchSuffix
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:cmake
|
||||
cmd:g++$secondaryArchSuffix
|
||||
cmd:dot
|
||||
cmd:doxygen
|
||||
cmd:make
|
||||
cmd:msgfmt$secondaryArchSuffix
|
||||
cmd:msgmerge$secondaryArchSuffix
|
||||
cmd:pkg_config$secondaryArchSuffix
|
||||
"
|
||||
|
||||
#TEST_REQUIRES="
|
||||
# qthaikuplugins$secondaryArchSuffix
|
||||
# "
|
||||
|
||||
BUILD()
|
||||
{
|
||||
cmake -B build -S . -DCMAKE_BUILD_TYPE=Release \
|
||||
$cmakeDirArgs \
|
||||
-DKDE_INSTALL_PLUGINDIR=$addOnsDir/Qt6 \
|
||||
-DKDE_INSTALL_QMLDIR=$dataDir/Qt6/qml \
|
||||
-DECM_DIR=/system/data/cmake/Modules/ECM/cmake \
|
||||
-DBUILD_QCH=ON \
|
||||
-DBUILD_TESTING=OFF \
|
||||
-Wno-dev
|
||||
|
||||
make -C build $jobArgs
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
make -C build install
|
||||
|
||||
prepareInstalledDevelLib \
|
||||
libPlasmaActivitiesStats
|
||||
fixPkgconfig
|
||||
|
||||
packageEntries devel \
|
||||
$developDir \
|
||||
$dataDir/doc \
|
||||
$libDir/cmake
|
||||
}
|
||||
|
||||
TEST()
|
||||
{
|
||||
# export LIBRARY_PATH="$sourceDir/build/bin${LIBRARY_PATH:+:$LIBRARY_PATH}"
|
||||
# no tests found
|
||||
make -C build test
|
||||
}
|
||||
@@ -20,7 +20,7 @@ COPYRIGHT="2010-2025 KDE Organisation"
|
||||
LICENSE="GNU LGPL v2"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://download.kde.org/stable/plasma/$portVersion/plasma-activities-$portVersion.tar.xz"
|
||||
CHECKSUM_SHA256="ccb1ca2dc1deb1e235dd496f42355f0054f58061ecf9a759d9faa0a299a56c7b"
|
||||
CHECKSUM_SHA256="670a5718438f0c915da6b125a34f8b46293b22f9edbc4bd6f0cce370f3d0dd05"
|
||||
SOURCE_DIR="plasma-activities-$portVersion"
|
||||
PATCHES="plasma_activities-$portVersion.patchset"
|
||||
|
||||
Reference in New Issue
Block a user