mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
105 lines
2.6 KiB
Bash
105 lines
2.6 KiB
Bash
SUMMARY="Interfacing with pseudo terminal devices"
|
|
DESCRIPTION="This library provides primitives to interface with pseudo terminal \
|
|
devices as well as a KProcess derived class for running child processes and \
|
|
communicating with them using a pty.."
|
|
HOMEPAGE="https://invent.kde.org/frameworks/kpty"
|
|
COPYRIGHT="2010-2024 KDE Organisation"
|
|
LICENSE="GNU LGPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://download.kde.org/stable/frameworks/${portVersion%.*}/kpty-${portVersion}.tar.xz"
|
|
CHECKSUM_SHA256="f1d985bf0a14061a764c7c01bcb6cf284a59ad82de13e72cfd1bd268819eebc2"
|
|
SOURCE_DIR="kpty-$portVersion"
|
|
PATCHES="kpty-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
libVersion="$portVersion"
|
|
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
|
|
|
|
PROVIDES="
|
|
kpty6$secondaryArchSuffix = $portVersion
|
|
lib:libKF6Pty$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libKF6CoreAddons$secondaryArchSuffix
|
|
lib:libKF6I18n$secondaryArchSuffix
|
|
lib:libQt6Core$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
kpty6${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libKF6Pty$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES_devel="
|
|
kpty6$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
ARCHITECTURES_doc="any"
|
|
|
|
PROVIDES_doc="
|
|
kpty6${secondaryArchSuffix}_doc = $portVersion
|
|
"
|
|
REQUIRES_doc="
|
|
kpty6$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
extra_cmake_modules$secondaryArchSuffix
|
|
qt6_tools${secondaryArchSuffix}_devel
|
|
devel:libKF6CoreAddons$secondaryArchSuffix == $libVersion
|
|
devel:libKF6I18n$secondaryArchSuffix == $libVersion
|
|
devel:libQt6Core$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:cmake
|
|
cmd:dot
|
|
cmd:doxygen
|
|
cmd:g++$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:msgfmt$secondaryArchSuffix
|
|
cmd:msgmerge$secondaryArchSuffix
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cmake -B build -S . -DCMAKE_BUILD_TYPE=Release \
|
|
$cmakeDirArgs \
|
|
-DCMAKE_CXX_FLAGS=-D_BSD_SOURCE \
|
|
-DKDE_INSTALL_PLUGINDIR=$addOnsDir/Qt6 \
|
|
-DKDE_INSTALL_QMLDIR=$dataDir/Qt6/qml \
|
|
-DKDE_INSTALL_QTPLUGINDIR=$addOnsDir/Qt6 \
|
|
-DKDE_INSTALL_QTQCHDIR=$documentationDir/packages/qt6_base \
|
|
-DECM_DIR=/system/data/cmake/Modules/ECM/cmake \
|
|
-DCMAKE_SKIP_RPATH=YES \
|
|
-DBUILD_QCH=ON \
|
|
-DBUILD_TESTING=OFF \
|
|
-Wno-dev
|
|
make -C build $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make -C build install
|
|
|
|
prepareInstalledDevelLib \
|
|
libKF6Pty
|
|
|
|
packageEntries devel \
|
|
$developDir \
|
|
$libDir/cmake
|
|
|
|
packageEntries doc \
|
|
$documentationDir
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
# 0% tests passed, 1 tests failed out of 1
|
|
export LIBRARY_PATH="$sourceDir/build/bin${LIBRARY_PATH:+:$LIBRARY_PATH}"
|
|
ctest --test-dir build --output-on-failure
|
|
}
|