summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-02-09 16:37:44 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2019-02-09 17:06:46 +0100
commit5ffc52eb5d798a0fce8647f8b87e0459148849c2 (patch)
treeeacad64003e16263a93b0cb4d00ea5fb46cb5e6f /app-editors/kile
parentmedia-sound/upmpdcli: Bump to 1.4.0 (diff)
downloadgentoo-5ffc52eb5d798a0fce8647f8b87e0459148849c2.tar.gz
gentoo-5ffc52eb5d798a0fce8647f8b87e0459148849c2.tar.bz2
gentoo-5ffc52eb5d798a0fce8647f8b87e0459148849c2.zip
app-editors/kile: Patch to make KF5DocTools really optional
Package-Manager: Portage-2.3.59, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-editors/kile')
-rw-r--r--app-editors/kile/files/kile-2.9.92-kf5doctools.patch13
-rw-r--r--app-editors/kile/kile-2.9.92-r1.ebuild2
2 files changed, 14 insertions, 1 deletions
diff --git a/app-editors/kile/files/kile-2.9.92-kf5doctools.patch b/app-editors/kile/files/kile-2.9.92-kf5doctools.patch
new file mode 100644
index 000000000000..2f5a70e815a6
--- /dev/null
+++ b/app-editors/kile/files/kile-2.9.92-kf5doctools.patch
@@ -0,0 +1,13 @@
+--- a/CMakeLists.txt 2018-05-11 20:12:37.000000000 +0200
++++ b/CMakeLists.txt 2019-02-09 16:33:18.953280283 +0100
+@@ -125,7 +125,7 @@
+ DESTINATION ${KDE_INSTALL_DATAROOTDIR}/doc/kile)
+
+ feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
+-find_package(KF5I18n CONFIG REQUIRED)
+ ki18n_install(po)
+-find_package(KF5DocTools CONFIG REQUIRED)
+-kdoctools_install(po)
++if(KF5DocTools_FOUND)
++ kdoctools_install(po)
++endif()
diff --git a/app-editors/kile/kile-2.9.92-r1.ebuild b/app-editors/kile/kile-2.9.92-r1.ebuild
index 97b4fd675bfc..7851f51335c5 100644
--- a/app-editors/kile/kile-2.9.92-r1.ebuild
+++ b/app-editors/kile/kile-2.9.92-r1.ebuild
@@ -19,7 +19,6 @@ DEPEND="
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdbusaddons)
- $(add_frameworks_dep kdoctools)
$(add_frameworks_dep kguiaddons)
$(add_frameworks_dep khtml)
$(add_frameworks_dep ki18n)
@@ -57,6 +56,7 @@ DOCS=( AUTHORS ChangeLog kile-remote-control.txt README README.cwl )
PATCHES=(
"${FILESDIR}/${P}-cmake.patch"
+ "${FILESDIR}/${P}-kf5doctools.patch"
"${FILESDIR}/${P}-desktopfile.patch"
"${FILESDIR}/${P}-no-empty-filename.patch"
"${FILESDIR}/${P}-viewtab-crash.patch"