[Kde-bindings] KDE/kdebindings/ruby

Richard Dale Richard_Dale at tipitina.demon.co.uk
Thu May 29 09:05:52 UTC 2008


SVN commit 814054 by rdale:

* Add an Akonadi plugin ruby extension

CCMAIL: kde-bindings at kde.org

 M  +12 -5     CMakeLists.txt  
 A             akonadi (directory)  
 A             akonadi/CMakeLists.txt  
 A             akonadi/akonadi.cpp   [License: GPL (v2+)]
 A             akonadi/akonadi.rb  
 A             akonadi/akonadihandlers.cpp   [License: GPL (v2+)]


--- trunk/KDE/kdebindings/ruby/CMakeLists.txt #814053:814054
@@ -7,6 +7,7 @@
 OPTION(ENABLE_KORUNDUM "build Korundum" ON)
 OPTION(ENABLE_QSCIRUBY "build QsciRuby" OFF)
 OPTION(ENABLE_SOPRANO "build Soprano" OFF)
+OPTION(ENABLE_AKONADI "build Akonadi" ON)
 
 SET(CUSTOM_RUBY_SITE_ARCH_DIR ${RUBY_SITE_ARCH_DIR} CACHE DIR "custom installation directory for ruby binary extension" )
 SET(CUSTOM_RUBY_SITE_LIB_DIR ${RUBY_SITE_LIB_DIR} CACHE DIR "custom installation directory for ruby extension" )
@@ -15,6 +16,7 @@
 set(KORUNDUM_ENABLED "no")
 set(QSCIRUBY_ENABLED "no")
 set(SOPRANO_ENABLED "no")
+set(AKONADI_ENABLED "no")
 
 if(RUBY_EXECUTABLE AND RUBY_LIBRARY AND RUBY_INCLUDE_PATH)
     if(ENABLE_QTRUBY)
@@ -25,14 +27,18 @@
         add_subdirectory( korundum )
         set(KORUNDUM_ENABLED "yes")
     endif(ENABLE_KORUNDUM)
-    if(ENABLE_PLASMA)
-        add_subdirectory( plasma )
-        set(PLASMA_ENABLED "yes")
-    endif(ENABLE_PLASMA)
+#    if(ENABLE_PLASMA)
+#        add_subdirectory( plasma )
+#        set(PLASMA_ENABLED "yes")
+#    endif(ENABLE_PLASMA)
     if(ENABLE_SOPRANO)
         add_subdirectory( soprano )
         set(SOPRANO_ENABLED "yes")
     endif(ENABLE_SOPRANO)
+    if(ENABLE_AKONADI)
+        add_subdirectory( akonadi )
+        set(AKONADI_ENABLED "yes")
+    endif(ENABLE_AKONADI)
     if(ENABLE_QSCIRUBY)
         add_subdirectory( qsci )
         set(QSCI_ENABLED "yes")
@@ -40,8 +46,9 @@
 endif(RUBY_EXECUTABLE AND RUBY_LIBRARY AND RUBY_INCLUDE_PATH)
 message(STATUS "Build QtRuby... " ${QTRUBY_ENABLED})
 message(STATUS "Build Korundum... " ${KORUNDUM_ENABLED})
-message(STATUS "Build Plasma... " ${PLASMA_ENABLED})
+# message(STATUS "Build Plasma... " ${PLASMA_ENABLED})
 message(STATUS "Build Soprano... " ${SOPRANO_ENABLED})
+message(STATUS "Build Akonadi... " ${AKONADI_ENABLED})
 message(STATUS "Build QsciRuby... " ${QSCIRUBY_ENABLED})
 
 #####################################################################



More information about the Kde-bindings mailing list