Warning, /graphics/libkexiv2/README is written in an unsupported language. File is not indexed.

0001 EXIV2 Library interface for KDE
0002 
0003 -- AUTHORS ------------------------------------------------------------
0004 
0005 See AUTHORS file for details.
0006 
0007 -- ABOUT --------------------------------------------------------------
0008 
0009 Libkexiv2 is a wrapper around Exiv2 library to manipulate pictures 
0010 metadata as EXIF/IPTC and XMP. Metadata interface follow this paper:
0011 
0012 http://www.metadataworkinggroup.com/pdf/mwg_guidance.pdf
0013 
0014 The library documentation is available on header files.
0015 
0016 -- DEPENDENCIES -------------------------------------------------------
0017 
0018 CMake      >= 3.0.0                    https://www.cmake.org
0019 ECM        >= 1.1.0                    https://commits.kde.org/extra-cmake-modules
0020 libqt      >= 5.9.0                    https://qt.io
0021 libexiv2   >= 0.24.0                   https://www.exiv2.org
0022 
0023 -- INSTALL ------------------------------------------------------------
0024 
0025 Usual CMake options:
0026 
0027 -DCMAKE_INSTALL_PREFIX : decide where the program will be install on your computer.
0028 -DCMAKE_BUILD_TYPE     : decide which type of build you want. You can chose between "debug", "profile", "relwithdebinfo" and "release". The default is "relwithdebinfo" (-O2 -g).
0029 
0030 Note: To know KDE install path on your computer, use 'kf5-config --prefix' command line like this (with debug object enabled):
0031 
0032 "cmake . -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix`"