Warning, /graphics/kipi-plugins/README is written in an unsupported language. File is not indexed.
0001 KIPIPLUGINS PROJECT 0002 0003 -- AUTHORS ------------------------------------------------------------ 0004 0005 See AUTHORS file for details. 0006 0007 -- ABOUT -------------------------------------------------------------- 0008 0009 Libkipi and kipi-plugins allow image applications to use a plugin architecture for additional functionalities. 0010 0011 Notes: 0012 0013 kipi-plugins is based in part on the work of the Independent JPEG Group. 0014 0015 -- BUGS --------------------------------------------------------------- 0016 0017 IMPORTANT : the bugreports and wishlist are hosted by the KDE bugs report 0018 system who can be contacted by the standard Kde help menu of plugins dialog. 0019 0020 The current Kipi bugs and devel wishes reported to the Kde bugs report can be 0021 seen at this url : 0022 0023 http://bugs.kde.org/buglist.cgi?product=kipiplugins&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED 0024 0025 -- INSTALL ------------------------------------------------------------ 0026 0027 In order to compile, especially when QT4/Qt5 are installed at the same time, 0028 just use something like that: 0029 0030 # export VERBOSE=1 0031 # export QTDIR=/usr/lib/qt5/ 0032 # export PATH=$QTDIR/bin:$PATH 0033 # cmake . 0034 # make 0035 # sudo make install 0036 0037 Usual CMake options : 0038 0039 -DCMAKE_INSTALL_PREFIX : decide where the program will be install on your computer. 0040 -DCMAKE_BUILD_TYPE : decide which type of build you want. You can chose between "debugfull", "debug", "profile", "relwithdebinfo" and "release". The default is "relwithdebinfo" (-O2 -g). 0041 0042 Compared to old autoconf options: 0043 0044 "cmake . -DCMAKE_BUILD_TYPE=debugfull" is equivalent to "./configure --enable-debug=full" 0045 "cmake . -DCMAKE_INSTALL_PREFIX=/usr" is equivalent to "./configure --prefix=/usr" 0046 0047 More details can be found at this url: http://techbase.kde.org/Development/Tutorials/CMake#Environment_Variables 0048 0049 Note: To know KDE install path on your computer, use 'kf5-config --prefix' command line like this (with full debug object enabled): 0050 0051 "cmake . -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix`"