Add kio-extras and kdnssd (#3)

Hello!
Hopefully I have figured out the git rebase thing.

This pull request should add kio-extras and kdnssd.
The former is required for thumbnails in the wallpaper selector to work correctly.

Thanks.

Reviewed-on: #3
Co-authored-by: Tsaop <leeroy@cock.li>
Co-committed-by: Tsaop <leeroy@cock.li>
This commit is contained in:
Tsaop 2024-04-23 22:18:57 +02:00 committed by Tim Biermann
parent 5421c231bd
commit 0f08046487
4 changed files with 1086 additions and 0 deletions

35
kdnssd/.footprint Normal file
View File

@ -0,0 +1,35 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/KF6/
drwxr-xr-x root/root usr/include/KF6/KDNSSD/
drwxr-xr-x root/root usr/include/KF6/KDNSSD/KDNSSD/
-rw-r--r-- root/root usr/include/KF6/KDNSSD/KDNSSD/DomainBrowser
-rw-r--r-- root/root usr/include/KF6/KDNSSD/KDNSSD/DomainModel
-rw-r--r-- root/root usr/include/KF6/KDNSSD/KDNSSD/PublicService
-rw-r--r-- root/root usr/include/KF6/KDNSSD/KDNSSD/RemoteService
-rw-r--r-- root/root usr/include/KF6/KDNSSD/KDNSSD/ServiceBase
-rw-r--r-- root/root usr/include/KF6/KDNSSD/KDNSSD/ServiceBrowser
-rw-r--r-- root/root usr/include/KF6/KDNSSD/KDNSSD/ServiceModel
-rw-r--r-- root/root usr/include/KF6/KDNSSD/KDNSSD/ServiceTypeBrowser
drwxr-xr-x root/root usr/include/KF6/KDNSSD/kdnssd/
-rw-r--r-- root/root usr/include/KF6/KDNSSD/kdnssd/domainbrowser.h
-rw-r--r-- root/root usr/include/KF6/KDNSSD/kdnssd/domainmodel.h
-rw-r--r-- root/root usr/include/KF6/KDNSSD/kdnssd/kdnssd_export.h
-rw-r--r-- root/root usr/include/KF6/KDNSSD/kdnssd/publicservice.h
-rw-r--r-- root/root usr/include/KF6/KDNSSD/kdnssd/remoteservice.h
-rw-r--r-- root/root usr/include/KF6/KDNSSD/kdnssd/servicebase.h
-rw-r--r-- root/root usr/include/KF6/KDNSSD/kdnssd/servicebrowser.h
-rw-r--r-- root/root usr/include/KF6/KDNSSD/kdnssd/servicemodel.h
-rw-r--r-- root/root usr/include/KF6/KDNSSD/kdnssd/servicetypebrowser.h
-rw-r--r-- root/root usr/include/KF6/KDNSSD/kdnssd_version.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/KF6DNSSD/
-rw-r--r-- root/root usr/lib/cmake/KF6DNSSD/KF6DNSSDConfig.cmake
-rw-r--r-- root/root usr/lib/cmake/KF6DNSSD/KF6DNSSDConfigVersion.cmake
-rw-r--r-- root/root usr/lib/cmake/KF6DNSSD/KF6DNSSDTargets-noconfig.cmake
-rw-r--r-- root/root usr/lib/cmake/KF6DNSSD/KF6DNSSDTargets.cmake
lrwxrwxrwx root/root usr/lib/libKF6DNSSD.so -> libKF6DNSSD.so.6
lrwxrwxrwx root/root usr/lib/libKF6DNSSD.so.6 -> libKF6DNSSD.so.6.0.0
-rwxr-xr-x root/root usr/lib/libKF6DNSSD.so.6.0.0
drwxr-xr-x root/root usr/share/

24
kdnssd/Pkgfile Normal file
View File

@ -0,0 +1,24 @@
# Description: KDNSSD Framework
# URL: https://community.kde.org/Frameworks
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: avahi extra-cmake-modules qt6-tools
name=kdnssd
version=6.1.0
release=1
source=(https://download.kde.org/stable/frameworks/${version::3}/$name-$version.tar.xz)
build() {
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D BUILD_TESTING=OFF \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
rm -rf $PKG/usr/share/locale
}

1001
kio-extras/.footprint Normal file

File diff suppressed because it is too large Load Diff

26
kio-extras/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# Description: Additional components to increase the functionality of KIO
# URL: https://apps.kde.org
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: kcmutils kdnssd ktextwidgets libkexiv2 libssh phonon plasma-activities-stats qcoro syntax-highlighting taglib
name=kio-extras
version=24.02.2
release=1
source=(https://download.kde.org/stable/release-service/$version/src/$name-$version.tar.xz)
build() {
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D BUILD_TESTING=OFF \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
rm -r $PKG/usr/share/locale
}
# vim: set ts=4 et: