From: <svn...@op...> - 2010-09-17 11:31:03
|
Author: deloptes Date: Fri Sep 17 13:30:52 2010 New Revision: 6129 URL: http://www.opensync.org/changeset/6129 Log: - add a basic README with build instructions - remove /opt/testing/opensync from CMakeLists.txt Added: plugins/akonadi-sync/trunk/README (contents, props changed) Modified: plugins/akonadi-sync/trunk/CMakeLists.txt Modified: plugins/akonadi-sync/trunk/CMakeLists.txt ============================================================================== --- plugins/akonadi-sync/trunk/CMakeLists.txt Fri Sep 17 10:08:16 2010 (r6128) +++ plugins/akonadi-sync/trunk/CMakeLists.txt Fri Sep 17 13:30:52 2010 (r6129) @@ -1,6 +1,7 @@ # # # (c) Deloptes del...@ya... +# # CMAKE_MINIMUM_REQUIRED( VERSION 2.4.4 ) @@ -13,7 +14,8 @@ SET( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/modules" ) # SET ( OpenSync_DIR "/opt/testing/opensync" ) -SET (PKG_CONFIG_PATH "/opt/testing/opensync/lib/pkgconfig" ) +#SET (PKG_CONFIG_PATH "/opt/testing/opensync/lib/pkgconfig" ) +SET (PKG_CONFIG_PATH ${PKG_CONFIG_PATH} $ENV{PKG_CONFIG_PATH} ) SET( CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} ${KDE4_ENABLE_EXCEPTIONS} ) # SET( CMAKE_CXX_FLAGS_DEBUG "-DDEBUG -ggdb -g -O2 -Wall -W " ${CMAKE_CXX_FLAGS_DEBUG} ${KDE4_ENABLE_EXCEPTIONS} ) Added: plugins/akonadi-sync/trunk/README ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ plugins/akonadi-sync/trunk/README Fri Sep 17 13:30:52 2010 (r6129) @@ -0,0 +1,29 @@ +OpenSync Framework +================== + +OpenSync is a plugin-based application that basically provides a framework +for syncing groups which can have two or more members. + +This is the Akonadi (KDE 4.x) PIM synchronisation framework + +Requirements +============ +- libopensync1 (v.0.40) + + +Installation +============ +export PKG_CONFIG_PATH=/opt/custom/opensync/lib/pkgconfig + +mkdir build +cd build +cmake -DCMAKE_INSTALL_PREFIX=$prefix /path/to/opensync/source/ +make +make install + +Links +===== + +[1] http://www.opensync.org/wiki/download +[2] http://cryptomilch.de/~dgollub/talks/OpenSync_FOSDEM_2007.pdf + |