[Kde-imaging] extragear/graphics/kipi-plugins

Gilles Caulier caulier.gilles at gmail.com
Fri Oct 23 13:15:03 CEST 2009


SVN commit 1039423 by cgilles:

add new plugin to export to Shwup web service, written by Timothee Groleau
CCMAIL: kde at timotheegroleau.com
CCMAIL: kde-imaging at kde.org


 M  +17 -0     CMakeLists.txt  
 A             shwup (directory)  
 AM            shwup/CMakeLists.txt  
 A             shwup/icons (directory)  
 AM            shwup/icons/CMakeLists.txt  
 AM            shwup/icons/hi16-action-shwup.png  
 AM            shwup/icons/hi22-action-shwup.png  
 AM            shwup/icons/hi32-action-shwup.png  
 AM            shwup/icons/hi48-action-shwup.png  
 A             shwup/kipiplugin_shwup.desktop  
 AM            shwup/plugin_shwup.cpp   [License: GPL (v2+)]
 AM            shwup/plugin_shwup.h   [License: GPL (v2+)]
 AM            shwup/swalbum.cpp   [License: GPL (v2+)]
 AM            shwup/swalbum.h   [License: GPL (v2+)]
 AM            shwup/swconnector.cpp   [License: GPL (v2+)]
 AM            shwup/swconnector.h   [License: GPL (v2+)]
 AM            shwup/switem.h   [License: GPL (v2+)]
 AM            shwup/swlogin.cpp   [License: GPL (v2+)]
 AM            shwup/swlogin.h   [License: GPL (v2+)]
 AM            shwup/swwidget.cpp   [License: GPL (v2+)]
 AM            shwup/swwidget.h   [License: GPL (v2+)]
 AM            shwup/swwindow.cpp   [License: GPL (v2+)]
 AM            shwup/swwindow.h   [License: GPL (v2+)]


--- trunk/extragear/graphics/kipi-plugins/CMakeLists.txt #1039422:1039423
@@ -59,6 +59,7 @@
 MACRO_OPTIONAL_FIND_PACKAGE(GLIB2)      # For ipodexport.
 MACRO_OPTIONAL_FIND_PACKAGE(GObject)    # For ipodexport.
 MACRO_OPTIONAL_FIND_PACKAGE(KdepimLibs) # For Calendar (libkcal).
+MACRO_OPTIONAL_FIND_PACKAGE(QCA2)       # For Shwup.
 
 # LINUX Only.
 IF(NOT WIN32 AND NOT APPLE)
@@ -217,6 +218,12 @@
     MESSAGE(STATUS " libkdepim library found............. NO  (optional)")
 ENDIF(KDEPIMLIBS_FOUND)
 
+IF(QCA2_FOUND)
+    MESSAGE(STATUS " qca2 library found.................. YES (optional)")
+ELSE(QCA2_FOUND)
+    MESSAGE(STATUS " qca2 library found.................. NO  (optional)")
+ENDIF(QCA2_FOUND)
+
 # LINUX Only.
 IF(NOT WIN32 AND NOT APPLE)
     IF(X11_FOUND AND X11_Xrandr_FOUND)
@@ -246,6 +253,12 @@
     SET(KIPIPLUGINS_CAN_BE_COMPILED false)
 ENDIF(JPEG_FOUND AND PNG_FOUND AND TIFF_FOUND AND KDCRAW_FOUND AND KEXIV2_FOUND AND KIPI_FOUND)
 
+IF(QCA2_FOUND)
+    MESSAGE(STATUS " Shwup will be compiled.............. YES (optional)")
+ELSE(QCA2_FOUND)
+    MESSAGE(STATUS " Shwup will be compiled.............. NO  (optional - Look README file for more details about dependencies)")
+ENDIF(QCA2_FOUND)
+
 IF(LIBXML2_FOUND AND LIBXSLT_FOUND)
     MESSAGE(STATUS " HtmlExport will be compiled......... YES (optional)")
 ELSE(LIBXML2_FOUND AND LIBXSLT_FOUND)
@@ -384,6 +397,10 @@
        ADD_SUBDIRECTORY(calendar)
     ENDIF(KDEPIMLIBS_FOUND)
 
+    IF(QCA2_FOUND)
+       ADD_SUBDIRECTORY(shwup)
+    ENDIF(QCA2_FOUND)
+
     IF(GPOD_FOUND AND GLIB2_FOUND AND GOBJECT_FOUND AND GDK_FOUND)
        ADD_SUBDIRECTORY(ipodexport)
     ENDIF(GPOD_FOUND AND GLIB2_FOUND AND GOBJECT_FOUND AND GDK_FOUND)
** trunk/extragear/graphics/kipi-plugins/shwup/CMakeLists.txt #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/icons/CMakeLists.txt #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/icons/hi16-action-shwup.png #property svn:mime-type
   + image/png
** trunk/extragear/graphics/kipi-plugins/shwup/icons/hi22-action-shwup.png #property svn:mime-type
   + image/png
** trunk/extragear/graphics/kipi-plugins/shwup/icons/hi32-action-shwup.png #property svn:mime-type
   + image/png
** trunk/extragear/graphics/kipi-plugins/shwup/icons/hi48-action-shwup.png #property svn:mime-type
   + image/png
** trunk/extragear/graphics/kipi-plugins/shwup/plugin_shwup.cpp #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/plugin_shwup.h #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/swalbum.cpp #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/swalbum.h #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/swconnector.cpp #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/swconnector.h #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/switem.h #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/swlogin.cpp #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/swlogin.h #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/swwidget.cpp #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/swwidget.h #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/swwindow.cpp #property svn:eol-style
   + native
** trunk/extragear/graphics/kipi-plugins/shwup/swwindow.h #property svn:eol-style
   + native


More information about the Kde-imaging mailing list