kservice: fix path for sycoca databases

This commit is contained in:
Gerasim Troeglazov
2020-01-07 18:23:25 +10:00
parent 920cfdc687
commit 7e1c76c19d
2 changed files with 28 additions and 2 deletions

View File

@@ -5,10 +5,12 @@ MIME types or handled by application specific code."
HOMEPAGE="https://github.com/KDE/kservice/"
COPYRIGHT="2010-2019 KDE Organisation"
LICENSE="GNU LGPL v2"
REVISION="2"
REVISION="3"
SOURCE_URI="https://github.com/KDE/kservice/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="19eb2cb23be5dbd31f8b416d8564cce1714a0bf85566bb2bbc524b23b2d2b9a4"
PATCHES="kservice-$portVersion.patchset"
ARCHITECTURES="!x86_gcc2 x86_64"
SECONDARY_ARCHITECTURES="x86"
@@ -68,7 +70,6 @@ BUILD()
mkdir -p build
cd build
# TODO: /bin/kbuildsycoca5 - Couldn't create "/boot/system/cache"
# TODO: ECM_MKSPECS_INSTALL_DIR is not picked up unless defined
cmake .. $cmakeDirArgs \
-DECM_DIR=/system/data/cmake/Modules/ECM/cmake \

View File

@@ -0,0 +1,25 @@
From db7f7af2c76551444f0226cc698abf2306b51c23 Mon Sep 17 00:00:00 2001
From: Gerasim Troeglazov <3dEyes@gmail.com>
Date: Tue, 7 Jan 2020 18:16:42 +1000
Subject: Set path for sycoca databases
diff --git a/src/sycoca/ksycoca.cpp b/src/sycoca/ksycoca.cpp
index a40a263..b0c1d33 100644
--- a/src/sycoca/ksycoca.cpp
+++ b/src/sycoca/ksycoca.cpp
@@ -690,7 +690,11 @@ QString KSycoca::absoluteFilePath(DatabaseType type)
suffix.replace(QLatin1Char(':'), QLatin1Char('_'));
#endif
const QString fileName = QLatin1String("ksycoca5") + suffix;
+#ifdef Q_OS_HAIKU
+ return QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QLatin1String("/kdesycoca/") + fileName;
+#else
return QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QLatin1Char('/') + fileName;
+#endif
} else {
return QFile::decodeName(ksycoca_env);
}
--
2.24.1