diff options
author | Adriaan de Groot <adridg@FreeBSD.org> | 2020-06-24 11:17:44 +0000 |
---|---|---|
committer | Adriaan de Groot <adridg@FreeBSD.org> | 2020-06-24 11:17:44 +0000 |
commit | 3d91604dd86a239dc5376501f530846b02d7c8ae (patch) | |
tree | 7110a01d1889b54121732806ed1f6341b8925733 /graphics/ksnip/files/patch-CMakeLists.txt | |
parent | Fix the fix for CVE-2020-3898. (diff) |
New port graphics/ksnip
This is a multi-platform screenshotting tool, integrating well with
KDE Plasma, GNOME Shell, etc. under both X11 and Wayland. It supports
extensive screenshot annotations and multiple captures (useful for
looking at UI changes in something you're working on).
There's a bunch of patches, but they're all trivial and have been
reported upstream.
Notes
Notes:
svn path=/head/; revision=540027
Diffstat (limited to 'graphics/ksnip/files/patch-CMakeLists.txt')
-rw-r--r-- | graphics/ksnip/files/patch-CMakeLists.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/graphics/ksnip/files/patch-CMakeLists.txt b/graphics/ksnip/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..832fdb501980 --- /dev/null +++ b/graphics/ksnip/files/patch-CMakeLists.txt @@ -0,0 +1,19 @@ +--- CMakeLists.txt.orig 2020-06-24 10:34:13 UTC ++++ CMakeLists.txt +@@ -32,7 +32,7 @@ set(CMAKE_CXX_EXTENSIONS OFF) + + set(QT_MIN_VERSION "5.9.4") + +-find_package(Qt5 ${QT_MIN_VERSION} REQUIRED Widgets Network Xml PrintSupport DBus Svg) ++find_package(Qt5 ${QT_MIN_VERSION} REQUIRED Concurrent Widgets Network Xml PrintSupport DBus Svg) + + if (WIN32) + find_package(Qt5 ${QT_MIN_VERSION} REQUIRED WinExtras) +@@ -49,6 +49,7 @@ endif () + + set(KIMAGEANNOTATOR_MIN_VERSION "0.2.2") + find_package(kImageAnnotator ${KIMAGEANNOTATOR_MIN_VERSION} REQUIRED) ++find_package(kColorPicker REQUIRED) + + set(BASEPATH "${CMAKE_SOURCE_DIR}") + include_directories("${BASEPATH}") |