|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| cmake/templates/ | H | 05-Feb-2022 | - | 1,101 | 774 |
| common/ | H | 03-May-2022 | - | 14,214 | 9,710 |
| dropbox/ | H | 03-May-2022 | - | 1,890 | 1,164 |
| facebook/ | H | 03-May-2022 | - | 2,902 | 1,888 |
| flickr/ | H | 03-May-2022 | - | 5,207 | 3,387 |
| googleservices/ | H | 03-May-2022 | - | 5,401 | 3,814 |
| imageshack/ | H | 03-May-2022 | - | 2,369 | 1,491 |
| imgur/ | H | 03-May-2022 | - | 1,568 | 997 |
| jalbum/ | H | 03-May-2022 | - | 1,221 | 742 |
| kmlexport/ | H | 03-May-2022 | - | 2,673 | 1,632 |
| mediawiki/ | H | 03-May-2022 | - | 2,512 | 1,748 |
| piwigo/ | H | 03-May-2022 | - | 2,664 | 1,748 |
| po/ | H | 01-Mar-2022 | - | 353,779 | 290,277 |
| printimages/ | H | 03-May-2022 | - | 10,445 | 7,940 |
| project/ | H | 05-Feb-2022 | - | 2,058 | 1,628 |
| rajce/ | H | 07-May-2022 | - | 2,907 | 1,817 |
| remotestorage/ | H | 03-May-2022 | - | 1,459 | 746 |
| sendimages/ | H | 03-May-2022 | - | 2,519 | 1,619 |
| smug/ | H | 03-May-2022 | - | 3,849 | 2,671 |
| vkontakte/ | H | 03-May-2022 | - | 1,897 | 1,117 |
| yandexfotki/ | H | 03-May-2022 | - | 5,076 | 3,224 |
| .gitignore | H A D | 05-Feb-2022 | 86 | 11 | 10 |
| AUTHORS | H A D | 05-Feb-2022 | 2.7 KiB | 59 | 55 |
| COPYING | H A D | 05-Feb-2022 | 17.7 KiB | 341 | 281 |
| COPYING-CMAKE-SCRIPTS | H A D | 05-Feb-2022 | 1.3 KiB | 23 | 20 |
| ChangeLog | H A D | 05-Feb-2022 | 10 MiB | 245,863 | 183,912 |
| HACKING | H A D | 05-Feb-2022 | 10.8 KiB | 309 | 220 |
| NEWS | H A D | 05-Feb-2022 | 160 | 8 | 4 |
| README | H A D | 05-Feb-2022 | 1.9 KiB | 52 | 31 |
| TODO | H A D | 05-Feb-2022 | 50 | 2 | 1 |
| org.kde.kipi_plugins.metainfo.xml | H A D | 05-Feb-2022 | 13.3 KiB | 164 | 163 |
README
1KIPIPLUGINS PROJECT
2
3-- AUTHORS ------------------------------------------------------------
4
5See AUTHORS file for details.
6
7-- ABOUT --------------------------------------------------------------
8
9Libkipi and kipi-plugins allow image applications to use a plugin architecture for additional functionalities.
10
11Notes:
12
13kipi-plugins is based in part on the work of the Independent JPEG Group.
14
15-- BUGS ---------------------------------------------------------------
16
17IMPORTANT : the bugreports and wishlist are hosted by the KDE bugs report
18system who can be contacted by the standard Kde help menu of plugins dialog.
19
20The current Kipi bugs and devel wishes reported to the Kde bugs report can be
21seen at this url :
22
23http://bugs.kde.org/buglist.cgi?product=kipiplugins&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED
24
25-- INSTALL ------------------------------------------------------------
26
27In order to compile, especially when QT4/Qt5 are installed at the same time,
28just use something like that:
29
30# export VERBOSE=1
31# export QTDIR=/usr/lib/qt5/
32# export PATH=$QTDIR/bin:$PATH
33# cmake .
34# make
35# sudo make install
36
37Usual CMake options :
38
39-DCMAKE_INSTALL_PREFIX : decide where the program will be install on your computer.
40-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).
41
42Compared to old autoconf options:
43
44"cmake . -DCMAKE_BUILD_TYPE=debugfull" is equivalent to "./configure --enable-debug=full"
45"cmake . -DCMAKE_INSTALL_PREFIX=/usr" is equivalent to "./configure --prefix=/usr"
46
47More details can be found at this url: http://techbase.kde.org/Development/Tutorials/CMake#Environment_Variables
48
49Note: To know KDE install path on your computer, use 'kf5-config --prefix' command line like this (with full debug object enabled):
50
51"cmake . -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix`"
52