public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in kde-base/kdebindings-csharp/files: kdebindings-csharp-4.4-build-fixes.patch
@ 2010-02-09  0:21 Alexey Shvetsov (alexxy)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexey Shvetsov (alexxy) @ 2010-02-09  0:21 UTC (permalink / raw
  To: gentoo-commits

alexxy      10/02/09 00:21:21

  Added:                kdebindings-csharp-4.4-build-fixes.patch
  Log:
  [kde-base/kdebindings-csharp] Version bump to KDE SC 4.4.0
  (Portage version: 2.2_rc62/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.1                  kde-base/kdebindings-csharp/files/kdebindings-csharp-4.4-build-fixes.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdebindings-csharp/files/kdebindings-csharp-4.4-build-fixes.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdebindings-csharp/files/kdebindings-csharp-4.4-build-fixes.patch?rev=1.1&content-type=text/plain

Index: kdebindings-csharp-4.4-build-fixes.patch
===================================================================
--- csharp/qtscript/CMakeLists.txt
+++ csharp/qtscript/CMakeLists.txt
@@ -15,7 +15,7 @@ INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/
 	${CMAKE_CURRENT_SOURCE_DIR}/../qyoto/src ${QT_INCLUDES})
 LINK_DIRECTORIES (${LIBRARY_OUTPUT_PATH})
 ADD_LIBRARY(qtscript-sharp MODULE ${SRC_CPP})
-TARGET_LINK_LIBRARIES(qtscript-sharp smokeqtscript qyotoshared ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
+TARGET_LINK_LIBRARIES(qtscript-sharp smokeqtscript qyotoshared ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTSCRIPT_LIBRARY})
 
 SET(CS_FLAGS -r:${LIBRARY_OUTPUT_PATH}/qt-dotnet.dll -warn:0 -keyfile:${KEYFILE})
 ADD_CS_LIBRARY(qtscript "${SRC_CS}" ALL)
--- csharp/qtwebkit/CMakeLists.txt
+++ csharp/qtwebkit/CMakeLists.txt
@@ -14,7 +14,7 @@ INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/
 	${CMAKE_CURRENT_SOURCE_DIR}/../qyoto/src ${QT_INCLUDES})
 LINK_DIRECTORIES (${LIBRARY_OUTPUT_PATH})
 ADD_LIBRARY(qtwebkit-sharp MODULE ${SRC_CPP})
-TARGET_LINK_LIBRARIES(qtwebkit-sharp smokeqtwebkit qyotoshared ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
+TARGET_LINK_LIBRARIES(qtwebkit-sharp smokeqtwebkit qyotoshared ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTWEBKIT_LIBRARY})
 
 SET(CS_FLAGS -r:${LIBRARY_OUTPUT_PATH}/qt-dotnet.dll -warn:0 -keyfile:${KEYFILE})
 ADD_CS_LIBRARY(qtwebkit "${SRC_CS}" ALL)
--- csharp/qyoto/CMakeLists.txt
+++ csharp/qyoto/CMakeLists.txt
@@ -39,13 +39,13 @@ INCLUDE_DIRECTORIES (${QT_INCLUDES} ${CM
 LINK_DIRECTORIES (${LIBRARY_OUTPUT_PATH})
 
 ADD_LIBRARY (qyotoshared SHARED ${SRC_QYOTO_SHARED})
 TARGET_LINK_LIBRARIES (qyotoshared smokeqtcore smokeqtgui smokeqtxml smokeqtopengl smokeqtsql smokeqtnetwork smokeqtnetwork smokeqtdbus smokeqtsvg
-                       ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
+                       ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QNETWORK_LIBRARY})
 set_target_properties(qyotoshared PROPERTIES VERSION 1.0.0 SOVERSION 1 COMPILE_DEFINITIONS QYOTOSHARED_BUILDING)
 
 ADD_LIBRARY (qyoto MODULE ${SRC_QYOTO})
 TARGET_LINK_LIBRARIES (qyoto qyotoshared
                        smokeqtcore smokeqtgui smokeqtxml smokeqtopengl smokeqtsql smokeqtnetwork smokeqtnetwork smokeqtdbus smokeqtsvg
-                       ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
+                       ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTDBUS_LIBRARY})
 
 CSHARP_ADD_LIBRARY(qt-dotnet ${SRC_CS_QYOTO} COMPILE_FLAGS /warn:0 "/keyfile:${KEYFILE}" UNSAFE)
 SET_PROPERTY(TARGET qt-dotnet PROPERTY pkg-config_template_basename "qyoto")
--- csharp/soprano/CMakeLists.txt
+++ csharp/soprano/CMakeLists.txt
@@ -21,7 +21,7 @@ INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/
 LINK_DIRECTORIES (${LIBRARY_OUTPUT_PATH})
 ADD_LIBRARY(soprano-sharp MODULE ${SRC_CPP})
 ADD_DEPENDENCIES(soprano-sharp smokesoprano)
-TARGET_LINK_LIBRARIES(soprano-sharp smokesoprano qyotoshared ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
+TARGET_LINK_LIBRARIES(soprano-sharp smokesoprano qyotoshared ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${SOPRANO_LIBRARIES})
 
 SET(CS_FLAGS -r:${LIBRARY_OUTPUT_PATH}/qt-dotnet.dll -warn:0 -keyfile:${KEYFILE})
 ADD_CS_LIBRARY(soprano "${SRC_CS}" ALL)
--- csharp/CMakeLists.txt	2009-09-02 13:30:38.045355025 +0300
+++ csharp/CMakeLists.txt	2009-09-02 13:31:40.426071410 +0300
@@ -3,6 +3,7 @@
 OPTION(ENABLE_QTTEST "build QtTest" ON)
 OPTION(ENABLE_QTUITOOLS_SHARP "build QtUiTools" ON)
 OPTION(ENABLE_QTWEBKIT_SHARP "build QtWebKit" ON)
+OPTION(ENABLE_PLASMA_SHARP "build PlasmaSharp" ON)
 OPTION(ENABLE_PHONON_SHARP "build PhononSharp" OFF)
 OPTION(ENABLE_QSCINTILLA_SHARP "build QScintillaSharp" OFF)
 OPTION(ENABLE_KHTML_SHARP "build KHTML" ON)
@@ -15,7 +16,8 @@
 set(QTTEST_ENABLED "no")
 SET(QTWEBKIT_ENABLED "no")
 SET(QTUITOOLS_ENABLED "no")
-SET(QTWEBKIT_ENABLED "no")
+SET(QTWEBKIT_SHARP_ENABLED "no")
+SET(PLASMA_SHARP_ENABLED "no")
 SET(PHONON_SHARP_ENABLED "no")
 SET(QSCINTILLA_SHARP_ENABLED "no")
 SET(AKONADI_ENABLED "no")
@@ -102,8 +104,10 @@
             set(AKONADI_ENABLED "yes")
         endif(KDEPIMLIBS_FOUND AND Akonadi_FOUND)
 
-        SET(PLASMA_SHARP_ENABLED "yes")
-        ADD_SUBDIRECTORY(plasma)
+        IF(ENABLE_PLASMA_SHARP)
+         SET(PLASMA_SHARP_ENABLED "yes")
+         ADD_SUBDIRECTORY(plasma)
+        ENDIF(ENABLE_PLASMA_SHARP)
 
     ENDIF (CMAKE_CSharp_COMPILER_LOADED)
 endif(ENABLE_QYOTO)
@@ -114,6 +118,7 @@
 message(STATUS "Build SopranoSharp... " ${SOPRANO_SHARP_ENABLED})
 message(STATUS "Build NepomukSharp... " ${NEPOMUK_SHARP_ENABLED})
 message(STATUS "Build PlasmaSharp... " ${PLASMA_SHARP_ENABLED})
+message(STATUS "Build QtWebkitSharp... " ${QTWEBKIT_SHARP_ENABLED})
 message(STATUS "Build Kimono... " ${KIMONO_ENABLED})
 message(STATUS "Build KHTMLSharp... " ${KHTML_SHARP_ENABLED})
 message(STATUS "Build KTextEditorSharp... " ${KHTML_SHARP_ENABLED})






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in kde-base/kdebindings-csharp/files: kdebindings-csharp-4.4-build-fixes.patch
@ 2010-02-09 16:56 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 3+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2010-02-09 16:56 UTC (permalink / raw
  To: gentoo-commits

scarabeus    10/02/09 16:56:23

  Removed:              kdebindings-csharp-4.4-build-fixes.patch
  Log:
  Drop non-applicable patch.
  (Portage version: 2.2_rc62/cvs/Linux x86_64)



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in kde-base/kdebindings-csharp/files: kdebindings-csharp-4.4-build-fixes.patch
@ 2010-03-02 16:21 Theo Chatzimichos (tampakrap)
  0 siblings, 0 replies; 3+ messages in thread
From: Theo Chatzimichos (tampakrap) @ 2010-03-02 16:21 UTC (permalink / raw
  To: gentoo-commits

tampakrap    10/03/02 16:21:36

  Added:                kdebindings-csharp-4.4-build-fixes.patch
  Log:
  Version bump KDE 4.4.1
  (Portage version: 2.2_rc63/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.3                  kde-base/kdebindings-csharp/files/kdebindings-csharp-4.4-build-fixes.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdebindings-csharp/files/kdebindings-csharp-4.4-build-fixes.patch?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdebindings-csharp/files/kdebindings-csharp-4.4-build-fixes.patch?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdebindings-csharp/files/kdebindings-csharp-4.4-build-fixes.patch?r1=1.2&r2=1.3







^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-03-02 16:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-09 16:56 [gentoo-commits] gentoo-x86 commit in kde-base/kdebindings-csharp/files: kdebindings-csharp-4.4-build-fixes.patch Tomas Chvatal (scarabeus)
  -- strict thread matches above, loose matches on Subject: below --
2010-03-02 16:21 Theo Chatzimichos (tampakrap)
2010-02-09  0:21 Alexey Shvetsov (alexxy)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox