aboutsummaryrefslogtreecommitdiff
path: root/x11-fm
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2019-08-30 20:05:27 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2019-08-30 20:05:27 +0000
commit4d0d46bbcd036cc9b82353ced19cf2be45a6eda6 (patch)
treeb7d5ba7399dbc2ca62692cca44b198b630567550 /x11-fm
parent2c6ede3563fefec8f5e5269bdf0789a22e540853 (diff)
downloadports-4d0d46bbcd036cc9b82353ced19cf2be45a6eda6.tar.gz
ports-4d0d46bbcd036cc9b82353ced19cf2be45a6eda6.zip
x11-fm/konqueror: fix dependency on www/tidy-html5
- Due to the workaround for the library name conflict between www/tidy-html5 (the wanted dependency) and www/tidy-lib, the build system was picking up the wrong shared library. PR: 240210 Reported by: Ting-Wei Lan <lantw44@gmail.com>
Notes
Notes: svn path=/head/; revision=510288
Diffstat (limited to 'x11-fm')
-rw-r--r--x11-fm/konqueror/Makefile1
-rw-r--r--x11-fm/konqueror/files/patch-plugins_validators_FindLibTidy.cmake14
2 files changed, 15 insertions, 0 deletions
diff --git a/x11-fm/konqueror/Makefile b/x11-fm/konqueror/Makefile
index 896e9e6a6bba..bd14aa1739a0 100644
--- a/x11-fm/konqueror/Makefile
+++ b/x11-fm/konqueror/Makefile
@@ -2,6 +2,7 @@
PORTNAME= konqueror
DISTVERSION= ${KDE_APPLICATIONS_VERSION}
+PORTREVISION= 1
CATEGORIES= x11-fm www kde kde-applications
MAINTAINER= kde@FreeBSD.org
diff --git a/x11-fm/konqueror/files/patch-plugins_validators_FindLibTidy.cmake b/x11-fm/konqueror/files/patch-plugins_validators_FindLibTidy.cmake
new file mode 100644
index 000000000000..f3af1f7c769d
--- /dev/null
+++ b/x11-fm/konqueror/files/patch-plugins_validators_FindLibTidy.cmake
@@ -0,0 +1,14 @@
+Look for the renamed libtidy.so from www/tidy-html and not pick up www/tidy-lib
+by mistake
+
+--- plugins/validators/FindLibTidy.cmake.orig 2019-08-30 19:38:08 UTC
++++ plugins/validators/FindLibTidy.cmake
+@@ -28,7 +28,7 @@ endif( NOT LIBTIDY_INCLUDE_DIR )
+
+
+
+-FIND_LIBRARY(LIBTIDY_LIBRARIES NAMES tidy)
++FIND_LIBRARY(LIBTIDY_LIBRARIES NAMES tidy5)
+
+ if (LIBTIDY_INCLUDE_DIR AND LIBTIDY_LIBRARIES)
+ set(LIBTIDY_FOUND TRUE)