mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 03:30:05 +02:00
132 lines
4.1 KiB
Bash
132 lines
4.1 KiB
Bash
SUMMARY="Framework for managing menu and toolbar actions"
|
|
DESCRIPTION="KXMLGUI provides a framework for managing menu and toolbar \
|
|
actions in an abstract way. The actions are configured through a XML \
|
|
description and hooks in the application code. The framework supports \
|
|
merging of multiple description for example for integrating actions from \
|
|
plugins."
|
|
HOMEPAGE="https://invent.kde.org/frameworks/kxmlgui"
|
|
COPYRIGHT="2010-2024 KDE Organisation"
|
|
LICENSE="GNU LGPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://download.kde.org/stable/frameworks/${portVersion%.*}/kxmlgui-${portVersion}.tar.xz"
|
|
CHECKSUM_SHA256="ff22a79fca2737e33c5463d87fad2b46920c8d48c6583268a9ae27097a8ac902"
|
|
SOURCE_DIR="kxmlgui-$portVersion"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
libVersion="$portVersion"
|
|
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
|
|
|
|
PROVIDES="
|
|
kxmlgui6$secondaryArchSuffix = $portVersion
|
|
lib:libKF6XmlGui$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libGL$secondaryArchSuffix
|
|
lib:libKF6Codecs$secondaryArchSuffix
|
|
lib:libKF6ColorScheme$secondaryArchSuffix
|
|
lib:libKF6ConfigCore$secondaryArchSuffix
|
|
lib:libKF6ConfigGui$secondaryArchSuffix
|
|
lib:libKF6ConfigWidgets$secondaryArchSuffix
|
|
lib:libKF6CoreAddons$secondaryArchSuffix
|
|
lib:libKF6GlobalAccel$secondaryArchSuffix
|
|
lib:libKF6GuiAddons$secondaryArchSuffix
|
|
lib:libKF6I18n$secondaryArchSuffix
|
|
lib:libKF6IconThemes$secondaryArchSuffix
|
|
lib:libKF6ItemViews$secondaryArchSuffix
|
|
lib:libKF6SonnetUi$secondaryArchSuffix
|
|
lib:libKF6TextWidgets$secondaryArchSuffix
|
|
lib:libKF6WidgetsAddons$secondaryArchSuffix
|
|
lib:libKF6WindowSystem$secondaryArchSuffix
|
|
lib:libQt6Core$secondaryArchSuffix
|
|
lib:libQt6DBus$secondaryArchSuffix
|
|
lib:libQt6Gui$secondaryArchSuffix
|
|
lib:libQt6Network$secondaryArchSuffix
|
|
lib:libQt6PrintSupport$secondaryArchSuffix
|
|
lib:libQt6Widgets$secondaryArchSuffix
|
|
lib:libQt6Xml$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
kxmlgui6${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libKF6XmlGui$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES_devel="
|
|
kxmlgui6$secondaryArchSuffix == $portVersion base
|
|
devel:libKF6ConfigWidgets$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
extra_cmake_modules$secondaryArchSuffix >= $portVersion
|
|
qt6_tools${secondaryArchSuffix}_devel
|
|
devel:libKF6Codecs$secondaryArchSuffix == $portVersion
|
|
devel:libKF6ColorScheme$secondaryArchSuffix == $portVersion
|
|
devel:libKF6ConfigCore$secondaryArchSuffix == $portVersion
|
|
devel:libKF6ConfigGui$secondaryArchSuffix == $portVersion
|
|
devel:libKF6ConfigWidgets$secondaryArchSuffix == $portVersion
|
|
devel:libKF6CoreAddons$secondaryArchSuffix == $portVersion
|
|
devel:libKF6GlobalAccel$secondaryArchSuffix == $portVersion
|
|
devel:libKF6GuiAddons$secondaryArchSuffix == $portVersion
|
|
devel:libKF6I18n$secondaryArchSuffix == $portVersion
|
|
devel:libKF6IconThemes$secondaryArchSuffix == $portVersion
|
|
devel:libKF6ItemViews$secondaryArchSuffix == $portVersion
|
|
devel:libKF6SonnetUi$secondaryArchSuffix == $portVersion
|
|
devel:libKF6textwidgets$secondaryArchSuffix == $portVersion
|
|
devel:libKF6WidgetsAddons$secondaryArchSuffix == $portVersion
|
|
devel:libKF6WindowSystem$secondaryArchSuffix == $portVersion
|
|
devel:libQt6Core$secondaryArchSuffix
|
|
devel:libQt6DBus$secondaryArchSuffix
|
|
devel:libQt6Gui$secondaryArchSuffix
|
|
devel:libQt6Network$secondaryArchSuffix
|
|
devel:libQt6PrintSupport$secondaryArchSuffix
|
|
devel:libQt6Qml$secondaryArchSuffix
|
|
devel:libQt6Widgets$secondaryArchSuffix
|
|
devel:libQt6Xml$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:cmake
|
|
cmd:dot
|
|
cmd:doxygen >= 1.9
|
|
cmd:g++$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:python3
|
|
"
|
|
|
|
TEST_REQUIRES="
|
|
qthaikuplugins
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cmake -Bbuild -S. $cmakeDirArgs \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DKDE_INSTALL_QTPLUGINDIR=$addOnsDir/Qt5 \
|
|
-DECM_DIR=/system/data/cmake/Modules/ECM/cmake \
|
|
-DBUILD_QCH=ON \
|
|
-DBUILD_TESTING=OFF
|
|
make -Cbuild $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make -Cbuild install
|
|
|
|
prepareInstalledDevelLib \
|
|
libKF6XmlGui
|
|
|
|
packageEntries devel \
|
|
$developDir \
|
|
$dataDir/doc \
|
|
$libDir/cmake
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
# 67% tests passed, 2 tests failed out of 6
|
|
export LIBRARY_PATH="$sourceDir/build/bin${LIBRARY_PATH:+:$LIBRARY_PATH}"
|
|
make -Cbuild test
|
|
}
|