rev 10197 - in branches/kde4/packages/kdelibs/debian: . patches
Modestas Vainius
modax-guest at alioth.debian.org
Sun Apr 20 00:26:46 UTC 2008
Author: modax-guest
Date: 2008-04-20 00:26:46 +0000 (Sun, 20 Apr 2008)
New Revision: 10197
Modified:
branches/kde4/packages/kdelibs/debian/changelog
branches/kde4/packages/kdelibs/debian/patches/97_cmake26_imported_link_interfaces.diff
Log:
Fix FindKDE4Internal.cmake
Modified: branches/kde4/packages/kdelibs/debian/changelog
===================================================================
--- branches/kde4/packages/kdelibs/debian/changelog 2008-04-20 00:21:14 UTC (rev 10196)
+++ branches/kde4/packages/kdelibs/debian/changelog 2008-04-20 00:26:46 UTC (rev 10197)
@@ -1,4 +1,4 @@
-kde4libs (4:4.0.70+svn798712-1~pre2) UNRELEASED; urgency=low
+kde4libs (4:4.0.70+svn798712-1~pre3) UNRELEASED; urgency=low
+++ Auto changes by Debian KDE Builder:
@@ -45,7 +45,7 @@
respective public KDE library. KDE4_*_LIBRARY semantics were not changed
and they still point to the result of find_library().
- -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org> Sun, 20 Apr 2008 02:28:52 +0300
+ -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org> Sun, 20 Apr 2008 03:21:53 +0300
kde4libs (4:4.0.68+svn794641-1) experimental; urgency=low
Modified: branches/kde4/packages/kdelibs/debian/patches/97_cmake26_imported_link_interfaces.diff
===================================================================
--- branches/kde4/packages/kdelibs/debian/patches/97_cmake26_imported_link_interfaces.diff 2008-04-20 00:21:14 UTC (rev 10196)
+++ branches/kde4/packages/kdelibs/debian/patches/97_cmake26_imported_link_interfaces.diff 2008-04-20 00:26:46 UTC (rev 10197)
@@ -1,7 +1,7 @@
-Index: kde4libs/cmake/modules/FindKDE4Internal.cmake
+Index: kde4libs-4.0.70+svn798712/cmake/modules/FindKDE4Internal.cmake
===================================================================
---- kde4libs.orig/cmake/modules/FindKDE4Internal.cmake 2008-04-19 23:27:11.000000000 +0000
-+++ kde4libs/cmake/modules/FindKDE4Internal.cmake 2008-04-19 23:28:08.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/cmake/modules/FindKDE4Internal.cmake 2008-04-20 00:23:54.000000000 +0000
++++ kde4libs-4.0.70+svn798712/cmake/modules/FindKDE4Internal.cmake 2008-04-20 00:24:18.000000000 +0000
@@ -214,8 +214,8 @@
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
@@ -21,7 +21,7 @@
# get the directory of the current file, used later on in the file
get_filename_component( kde_cmake_module_dir ${CMAKE_CURRENT_LIST_FILE} PATH)
-@@ -251,23 +250,62 @@
+@@ -251,23 +250,67 @@
####################### #now try to find some kde stuff ################################
@@ -31,7 +31,7 @@
+MACRO(IMPORT_KDE4_LIBRARIES)
+ foreach(lib ${ARGV})
+ string(TOUPPER ${lib} _ulib)
-+
++
+ if (_kdeBootStrapping)
+ set(KDE4_${_ulib}_LIBRARY ${lib})
+ else(_kdeBootStrapping)
@@ -46,6 +46,11 @@
+ endforeach(lib ${ARGV})
+ENDMACRO(IMPORT_KDE4_LIBRARIES)
+
++if (NOT _kdeBootStrapping)
++ # this file contains all IMPORTED kdelibs libraries
++ include(${kde_cmake_module_dir}/KDELibsDependencies.cmake)
++endif (NOT _kdeBootStrapping)
++
+import_kde4_libraries(
+ kdecore
+ kdeui
@@ -99,14 +104,13 @@
set(EXECUTABLE_OUTPUT_PATH ${kdelibs_BINARY_DIR}/bin )
if (WIN32)
-@@ -336,90 +374,12 @@
+@@ -336,89 +379,7 @@
get_filename_component(QT_INSTALL_DIR ${_DIR} PATH )
endif (WIN32)
- # this file contains all dependencies of all libraries of kdelibs, Alex
-+ # this file contains kdelibs library imports and other deps
- include(${kde_cmake_module_dir}/KDELibsDependencies.cmake)
-
+- include(${kde_cmake_module_dir}/KDELibsDependencies.cmake)
+-
- if (UNIX)
- find_library(KDE4_KDEFAKES_LIBRARY NAMES kdefakes PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH )
- set(KDE4_KDEFAKES_LIBS ${kdefakes_LIB_DEPENDS} ${KDE4_KDEFAKES_LIBRARY} )
@@ -187,17 +191,14 @@
- #find_library(KDE4_KMETADATA_LIBRARY NAMES kmetadata PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH )
- #set(KDE4_KMETADATA_LIBS ${kmetadata_LIB_DEPENDS} ${KDE4_KMETADATA_LIBRARY} )
-
-- get_filename_component(KDE4_LIB_DIR ${KDE4_KDECORE_LIBRARY} PATH )
+ # extract KDE4_LIB_DIR from kdecore location
-+ get_property(KDE4_LIB_DIR TARGET kdecore PROPERTY IMPORTED_LOCATION )
-+ get_filename_component(KDE4_LIB_DIR ${KDE4_LIB_DIR} PATH )
+ get_filename_component(KDE4_LIB_DIR ${KDE4_KDECORE_LIBRARY} PATH )
# kpassworddialog.h is new with KDE4
- # KDE4_INCLUDE_INSTALL_DIR is defined by KDELibsDependencies.cmake
-Index: kde4libs/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/CMakeLists.txt
===================================================================
---- kde4libs.orig/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/CMakeLists.txt 2008-04-20 00:21:08.000000000 +0000
++++ kde4libs-4.0.70+svn798712/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -318,7 +318,12 @@
# file (APPEND ${CMAKE_BINARY_DIR}/KDELibsDependencies.cmake "${__deps}")
endif(WIN32)
@@ -212,10 +213,10 @@
########### install files ###############
-Index: kde4libs/dnssd/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/dnssd/CMakeLists.txt
===================================================================
---- kde4libs.orig/dnssd/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/dnssd/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/dnssd/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/dnssd/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -61,9 +61,10 @@
else (HAVE_DNSSD)
target_link_libraries(kdnssd ${KDE4_KDEUI_LIBS})
@@ -228,10 +229,10 @@
########### install files ###############
install( FILES dnssd_export.h domainbrowser.h remoteservice.h servicetypebrowser.h publicservice.h
-Index: kde4libs/interfaces/ktexteditor/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/interfaces/ktexteditor/CMakeLists.txt
===================================================================
---- kde4libs.orig/interfaces/ktexteditor/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/interfaces/ktexteditor/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/interfaces/ktexteditor/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/interfaces/ktexteditor/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -25,9 +25,10 @@
kde4_add_library(ktexteditor SHARED ${ktexteditor_LIB_SRCS})
@@ -244,10 +245,10 @@
########### install files ###############
install( FILES
-Index: kde4libs/kde3support/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kde3support/CMakeLists.txt
===================================================================
---- kde4libs.orig/kde3support/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/kde3support/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kde3support/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kde3support/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -78,10 +78,12 @@
kde4_add_library(kde3support SHARED ${kde3support_LIB_SRCS})
@@ -263,10 +264,10 @@
########### install files ###############
-Index: kde4libs/kdecore/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kdecore/CMakeLists.txt
===================================================================
---- kde4libs.orig/kdecore/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kdecore/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kdecore/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kdecore/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -105,7 +105,8 @@
if (NOT HAVE_TRUNC)
target_link_libraries(kdefakes m )
@@ -289,10 +290,10 @@
########### next target ###############
-Index: kde4libs/kded/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kded/CMakeLists.txt
===================================================================
---- kde4libs.orig/kded/CMakeLists.txt 2008-04-19 23:27:11.000000000 +0000
-+++ kde4libs/kded/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kded/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kded/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -13,7 +13,7 @@
kde4_add_kdeinit_executable(kded4 ${kded_KDEINIT_SRCS})
@@ -302,10 +303,10 @@
install(TARGETS kdeinit_kded4 ${INSTALL_TARGETS_DEFAULT_ARGS})
-Index: kde4libs/kdesu/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kdesu/CMakeLists.txt
===================================================================
---- kde4libs.orig/kdesu/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/kdesu/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kdesu/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kdesu/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -18,6 +18,7 @@
kde4_add_library(kdesu SHARED ${kdesu_LIB_SRCS})
@@ -323,10 +324,10 @@
########### next target ###############
-Index: kde4libs/kdeui/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kdeui/CMakeLists.txt
===================================================================
---- kde4libs.orig/kdeui/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kdeui/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kdeui/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kdeui/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -280,7 +280,9 @@
kde4_add_library(kdeui SHARED ${kdeui_LIB_SRCS})
@@ -361,10 +362,10 @@
install( TARGETS kded_globalaccel DESTINATION ${PLUGIN_INSTALL_DIR} )
-Index: kde4libs/kfile/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kfile/CMakeLists.txt
===================================================================
---- kde4libs.orig/kfile/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kfile/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kfile/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kfile/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -37,9 +37,10 @@
${STRIGI_LIBRARIES}
${KDE4_SOLID_LIBS}
@@ -377,10 +378,10 @@
install( FILES
kdiroperator.h
-Index: kde4libs/khtml/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/khtml/CMakeLists.txt
===================================================================
---- kde4libs.orig/khtml/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/khtml/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/khtml/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/khtml/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -296,7 +296,9 @@
kde4_add_library(khtml SHARED ${khtml_LIB_SRCS})
@@ -410,10 +411,10 @@
install(TARGETS khtmlpart DESTINATION ${PLUGIN_INSTALL_DIR} )
-Index: kde4libs/khtml/kmultipart/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/khtml/kmultipart/CMakeLists.txt
===================================================================
---- kde4libs.orig/khtml/kmultipart/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/khtml/kmultipart/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/khtml/kmultipart/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/khtml/kmultipart/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -9,7 +9,7 @@
kde4_add_plugin(kmultipart WITH_PREFIX ${kmultipart_PART_SRCS})
@@ -423,10 +424,10 @@
install(TARGETS kmultipart DESTINATION ${PLUGIN_INSTALL_DIR} )
-Index: kde4libs/kinit/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kinit/CMakeLists.txt
===================================================================
---- kde4libs.orig/kinit/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kinit/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kinit/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kinit/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -136,7 +136,7 @@
kde4_add_kdeinit_executable( klauncher NOGUI ${klauncher_KDEINIT_SRCS})
set_target_properties(kdeinit_klauncher PROPERTIES DEFINE_SYMBOL MAKE_KLAUNCHER)
@@ -436,10 +437,10 @@
install(TARGETS kdeinit_klauncher ${INSTALL_TARGETS_DEFAULT_ARGS})
-Index: kde4libs/kio/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kio/CMakeLists.txt
===================================================================
---- kde4libs.orig/kio/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/kio/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kio/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kio/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -235,7 +235,9 @@
kde4_add_library(kio SHARED ${kio_LIB_SRCS})
@@ -460,10 +461,10 @@
install( PROGRAMS useragent.pl proxytype.pl DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
-Index: kde4libs/kioslave/http/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kioslave/http/CMakeLists.txt
===================================================================
---- kde4libs.orig/kioslave/http/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/kioslave/http/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kioslave/http/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kioslave/http/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -37,7 +37,7 @@
kde4_add_kdeinit_executable( kio_http_cache_cleaner NOGUI ${kio_http_cache_cleaner_KDEINIT_SRCS})
@@ -482,10 +483,10 @@
if(GSSAPI_FOUND)
target_link_libraries(kio_http ${GSSAPI_LIBS} )
endif(GSSAPI_FOUND)
-Index: kde4libs/kioslave/http/kcookiejar/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kioslave/http/kcookiejar/CMakeLists.txt
===================================================================
---- kde4libs.orig/kioslave/http/kcookiejar/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/kioslave/http/kcookiejar/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kioslave/http/kcookiejar/CMakeLists.txt 2008-04-20 00:21:08.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kioslave/http/kcookiejar/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -45,7 +45,7 @@
kde4_add_plugin(kded_kcookiejar ${kded_kcookiejar_PART_SRCS})
@@ -495,10 +496,10 @@
install(TARGETS kded_kcookiejar DESTINATION ${PLUGIN_INSTALL_DIR} )
-Index: kde4libs/kjs/api/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kjs/api/CMakeLists.txt
===================================================================
---- kde4libs.orig/kjs/api/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kjs/api/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kjs/api/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kjs/api/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -13,7 +13,7 @@
target_link_libraries(kjsapi ${KJSLIBNAME} ${KDE4_KDECORE_LIBS})
@@ -508,10 +509,10 @@
install(FILES
kjsapi_export.h
-Index: kde4libs/kjs/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kjs/CMakeLists.txt
===================================================================
---- kde4libs.orig/kjs/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kjs/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kjs/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kjs/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -167,6 +167,7 @@
if(UNIX)
@@ -529,10 +530,10 @@
########### kjs - basic shell ###############
-Index: kde4libs/knewstuff/knewstuff2/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/knewstuff/knewstuff2/CMakeLists.txt
===================================================================
---- kde4libs.orig/knewstuff/knewstuff2/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/knewstuff/knewstuff2/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/knewstuff/knewstuff2/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/knewstuff/knewstuff2/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -54,8 +54,9 @@
kde4_add_library(knewstuff2 SHARED ${knewstuff2_core_SRCS} ${knewstuff2_dxs_SRCS} ${knewstuff2_ui_SRCS} ${knewstuff2_SRCS})
@@ -544,10 +545,10 @@
install(FILES
core/author.h
-Index: kde4libs/knotify/config/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/knotify/config/CMakeLists.txt
===================================================================
---- kde4libs.orig/knotify/config/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/knotify/config/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/knotify/config/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/knotify/config/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -19,9 +19,10 @@
# Needs KIO for KUrlRequester
@@ -560,10 +561,10 @@
########### install files ###############
install( FILES knotifyconfig_export.h knotifyconfigwidget.h DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel)
-Index: kde4libs/kparts/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kparts/CMakeLists.txt
===================================================================
---- kde4libs.orig/kparts/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kparts/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kparts/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kparts/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -25,9 +25,10 @@
kde4_add_library(kparts SHARED ${kparts_LIB_SRCS})
@@ -576,10 +577,10 @@
########### install files ###############
-Index: kde4libs/kpty/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kpty/CMakeLists.txt
===================================================================
---- kde4libs.orig/kpty/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kpty/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kpty/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kpty/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -12,9 +12,10 @@
kde4_add_library(kpty SHARED ${kpty_LIB_SRCS})
@@ -592,10 +593,10 @@
install( FILES
kpty_export.h
-Index: kde4libs/kross/core/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kross/core/CMakeLists.txt
===================================================================
---- kde4libs.orig/kross/core/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kross/core/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kross/core/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kross/core/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -12,8 +12,9 @@
kde4_add_library(krosscore SHARED ${krosscore_LIB_SRCS})
@@ -607,10 +608,10 @@
install(FILES
kross_export.h
-Index: kde4libs/kross/ui/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kross/ui/CMakeLists.txt
===================================================================
---- kde4libs.orig/kross/ui/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kross/ui/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kross/ui/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kross/ui/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -15,8 +15,9 @@
kde4_add_library(krossui SHARED ${krossui_LIB_SRCS})
@@ -622,10 +623,10 @@
########### install files ###############
-Index: kde4libs/kutils/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/kutils/CMakeLists.txt
===================================================================
---- kde4libs.orig/kutils/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/kutils/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/kutils/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/kutils/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -31,9 +31,10 @@
kde4_add_library(kutils SHARED ${kutils_LIB_SRCS})
@@ -638,10 +639,10 @@
########### install files ###############
-Index: kde4libs/phonon/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/phonon/CMakeLists.txt
===================================================================
---- kde4libs.orig/phonon/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/phonon/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/phonon/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/phonon/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -65,7 +65,7 @@
target_link_libraries(phonon ${QT_QTDBUS_LIBRARY} ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
#do not use GENERIC versioning in phonon
@@ -651,10 +652,10 @@
########### install files ###############
-Index: kde4libs/phonon/libkaudiodevicelist/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/phonon/libkaudiodevicelist/CMakeLists.txt
===================================================================
---- kde4libs.orig/phonon/libkaudiodevicelist/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/phonon/libkaudiodevicelist/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/phonon/libkaudiodevicelist/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/phonon/libkaudiodevicelist/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -29,10 +29,11 @@
kde4_add_library(kaudiodevicelist SHARED ${kaudiodevicelist_LIB_SRCS})
@@ -668,10 +669,10 @@
install(FILES
kaudiodevicelist_export.h
audiodevice.h
-Index: kde4libs/solid/solid/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/solid/solid/CMakeLists.txt
===================================================================
---- kde4libs.orig/solid/solid/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/solid/solid/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/solid/solid/CMakeLists.txt 2008-04-20 00:21:08.000000000 +0000
++++ kde4libs-4.0.70+svn798712/solid/solid/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -181,9 +181,10 @@
kde4_add_library(solid SHARED ${solid_LIB_SRCS})
@@ -684,10 +685,10 @@
install(FILES org.kde.Solid.Networking.Client.xml DESTINATION ${DBUS_INTERFACES_INSTALL_DIR})
-Index: kde4libs/sonnet/plugins/hspell/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/sonnet/plugins/hspell/CMakeLists.txt
===================================================================
---- kde4libs.orig/sonnet/plugins/hspell/CMakeLists.txt 2008-04-19 23:26:40.000000000 +0000
-+++ kde4libs/sonnet/plugins/hspell/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/sonnet/plugins/hspell/CMakeLists.txt 2008-04-20 00:21:09.000000000 +0000
++++ kde4libs-4.0.70+svn798712/sonnet/plugins/hspell/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -9,7 +9,7 @@
kde4_add_plugin(kspell_hspell ${kspell_hspell_PART_SRCS})
@@ -697,10 +698,10 @@
install(TARGETS kspell_hspell DESTINATION ${PLUGIN_INSTALL_DIR} )
-Index: kde4libs/threadweaver/Weaver/CMakeLists.txt
+Index: kde4libs-4.0.70+svn798712/threadweaver/Weaver/CMakeLists.txt
===================================================================
---- kde4libs.orig/threadweaver/Weaver/CMakeLists.txt 2008-04-19 23:26:41.000000000 +0000
-+++ kde4libs/threadweaver/Weaver/CMakeLists.txt 2008-04-19 23:27:12.000000000 +0000
+--- kde4libs-4.0.70+svn798712.orig/threadweaver/Weaver/CMakeLists.txt 2008-04-20 00:21:10.000000000 +0000
++++ kde4libs-4.0.70+svn798712/threadweaver/Weaver/CMakeLists.txt 2008-04-20 00:23:54.000000000 +0000
@@ -33,7 +33,7 @@
kde4_add_library(threadweaver SHARED ${ThreadWeaver_LIB_SRCS})
target_link_libraries(threadweaver ${QT_QTCORE_LIBRARY})
More information about the pkg-kde-commits
mailing list