summaryrefslogtreecommitdiff
path: root/editors/calligra/files
diff options
context:
space:
mode:
authorAlberto Villa <avilla@FreeBSD.org>2013-12-16 22:59:42 +0000
committerAlberto Villa <avilla@FreeBSD.org>2013-12-16 22:59:42 +0000
commit4998a19923681e8f3be9a4c7f1e4a1da7d79f870 (patch)
tree1ada6dedf1f402c82c2666ce99f9e384cdb25a92 /editors/calligra/files
parent- Fix build with Clang. (diff)
- Update Calligra Suite to 2.7.5.
- Require a new compiler to build Calligra. - Make GTL really an option in Calligra. - STAGEify. - Use OPTIONS helpers. - Set NO_ARCH for translation ports. - Add translation port for Intelingua. Calligra 2.7 release notes: http://www.calligra.org/news/calligra-2-7-released
Notes
Notes: svn path=/head/; revision=336675
Diffstat (limited to 'editors/calligra/files')
-rw-r--r--editors/calligra/files/patch-krita__plugins__extensions__CMakeLists.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/editors/calligra/files/patch-krita__plugins__extensions__CMakeLists.txt b/editors/calligra/files/patch-krita__plugins__extensions__CMakeLists.txt
new file mode 100644
index 000000000000..1a2e0d3131d4
--- /dev/null
+++ b/editors/calligra/files/patch-krita__plugins__extensions__CMakeLists.txt
@@ -0,0 +1,22 @@
+--- ./krita/plugins/extensions/CMakeLists.txt.orig 2013-11-24 05:49:21.000000000 -0800
++++ ./krita/plugins/extensions/CMakeLists.txt 2013-12-05 15:07:18.472809577 -0800
+@@ -14,13 +14,13 @@
+ add_subdirectory( dockers )
+ add_subdirectory( layergroupswitcher )
+
+-find_package(OpenShiva)
+-find_package(QtShiva )
++macro_optional_find_package(OpenShiva)
++macro_optional_find_package(QtShiva )
+
+-if(HAVE_OPENSHIVA AND HAVE_QTSHIVA)
++if(OPENSHIVA_FOUND AND QTSHIVA_FOUND)
+ add_subdirectory(shiva)
+-endif(HAVE_OPENSHIVA AND HAVE_QTSHIVA)
++endif(OPENSHIVA_FOUND AND QTSHIVA_FOUND)
+
+-macro_log_feature(HAVE_OPENSHIVA "OpenShiva" "OpenShiva interpreter for the Shiva Kernel Language (part of OpenGTL)" "http://www.opengtl.org" FALSE "" "Required for Shiva based Generators and Filters")
+-macro_log_feature(HAVE_QTSHIVA "QtShiva" "Qt bindings for the OpenShiva interpreter (part of libQtGTL)" "http://www.opengtl.org" FALSE "" "Required for Shiva based Generators and Filters")
++macro_log_feature(OPENSHIVA_FOUND "OpenShiva" "OpenShiva interpreter for the Shiva Kernel Language (part of OpenGTL)" "http://www.opengtl.org" FALSE "" "Required for Shiva based Generators and Filters")
++macro_log_feature(QTSHIVA_FOUND "QtShiva" "Qt bindings for the OpenShiva interpreter (part of libQtGTL)" "http://www.opengtl.org" FALSE "" "Required for Shiva based Generators and Filters")
+