Hello community,
here is the log from the commit of package kdeaccessibility4 for
openSUSE:Factory
checked in at Tue May 17 13:46:52 CEST 2011.
--------
--- KDE/kdeaccessibility4/kdeaccessibility4-icons.changes 2011-04-01
14:09:32.000000000 +0200
+++
/mounts/work_src_done/STABLE/kdeaccessibility4/kdeaccessibility4-icons.changes
2011-04-28 16:11:23.000000000 +0200
@@ -1,0 +2,8 @@
+Thu Apr 28 16:11:17 CEST 2011 - [email protected]
+
+- update to 4.6.3
+ * Bugfixes over KDE 4.6.2
+ * see http://kde.org/announcements/changelogs/changelog4_6_2to4_6_3.php for
details
+
+
+-------------------------------------------------------------------
kdeaccessibility4.changes: same change
calling whatdependson for head-i586
Old:
----
kdeaccessibility-4.6.2.tar.bz2
New:
----
kdeaccessibility-4.6.3.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kdeaccessibility4-icons.spec ++++++
--- /var/tmp/diff_new_pack.IwOl8u/_old 2011-05-17 13:45:47.000000000 +0200
+++ /var/tmp/diff_new_pack.IwOl8u/_new 2011-05-17 13:45:47.000000000 +0200
@@ -19,6 +19,11 @@
Name: kdeaccessibility4-icons
BuildRequires: alsa-devel libkde4-devel sbl
+%if %suse_version > 1120
+BuildRequires: libspeechd-devel
+%else
+BuildRequires: speechd-devel
+%endif
%if %suse_version > 1020
BuildRequires: fdupes
%endif
@@ -26,7 +31,7 @@
Group: System/GUI/KDE
Summary: Monochrome Icon Set for KDE
Url: http://www.kde.org
-Version: 4.6.2
+Version: 4.6.3
Release: 1
Source0: kdeaccessibility-%version.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
++++++ kdeaccessibility4.spec ++++++
--- /var/tmp/diff_new_pack.IwOl8u/_old 2011-05-17 13:45:47.000000000 +0200
+++ /var/tmp/diff_new_pack.IwOl8u/_new 2011-05-17 13:45:47.000000000 +0200
@@ -28,7 +28,7 @@
Group: System/GUI/KDE
Summary: Base Package for kdeaccessibility apps
Url: http://www.kde.org
-Version: 4.6.2
+Version: 4.6.3
Release: 1
Source0: kdeaccessibility-%version.tar.bz2
Patch: 4_5_BRANCH.diff
++++++ kdeaccessibility-4.6.2.tar.bz2 -> kdeaccessibility-4.6.3.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kdeaccessibility-4.6.2/cmake/modules/FindOpentts.cmake
new/kdeaccessibility-4.6.3/cmake/modules/FindOpentts.cmake
--- old/kdeaccessibility-4.6.2/cmake/modules/FindOpentts.cmake 2011-01-19
23:08:50.000000000 +0100
+++ new/kdeaccessibility-4.6.3/cmake/modules/FindOpentts.cmake 1970-01-01
01:00:00.000000000 +0100
@@ -1,24 +0,0 @@
-# find opentts library and header if available
-# Copyright (c) 2009, Jeremy Whiting <[email protected]>
-#
-# Redistribution and use is allowed according to the terms of the BSD license.
-# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
-
-FIND_PATH(OPENTTS_INCLUDE_DIR opentts/libopentts.h /usr/include
/usr/local/include)
-
-FIND_LIBRARY(OPENTTS_LIBRARY NAMES opentts PATH /usr/lib /usr/local/lib)
-
-IF (OPENTTS_INCLUDE_DIR AND OPENTTS_LIBRARY)
- SET(OPENTTS_FOUND TRUE)
-ENDIF (OPENTTS_INCLUDE_DIR AND OPENTTS_LIBRARY)
-
-IF (OPENTTS_FOUND)
- IF (NOT Opentts_FIND_QUIETLY)
- MESSAGE(STATUS "Found OpenTTS: ${OPENTTS_LIBRARY}")
- ENDIF (NOT Opentts_FIND_QUIETLY)
-ELSE (OPENTTS_FOUND)
- IF (Opentts_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could not find Required package: Opentts")
- ENDIF (Opentts_FIND_REQUIRED)
-ENDIF (OPENTTS_FOUND)
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kdeaccessibility-4.6.2/cmake/modules/FindSpeechd.cmake
new/kdeaccessibility-4.6.3/cmake/modules/FindSpeechd.cmake
--- old/kdeaccessibility-4.6.2/cmake/modules/FindSpeechd.cmake 2011-01-19
23:08:50.000000000 +0100
+++ new/kdeaccessibility-4.6.3/cmake/modules/FindSpeechd.cmake 2011-04-28
15:28:56.000000000 +0200
@@ -1,24 +1,17 @@
# find speech-dispatcher library and header if available
# Copyright (c) 2009, Jeremy Whiting <[email protected]>
+# Copyright (c) 2011, Raphael Kubo da Costa <[email protected]>
+# This module defines
+# SPEECHD_INCLUDE_DIR, where to find libspeechd.h
+# SPEECHD_LIBRARIES, the libraries needed to link against speechd
+# SPEECHD_FOUND, If false, speechd was not found
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
-FIND_PATH(SPEECHD_INCLUDE_DIR libspeechd.h /usr/include /usr/local/include)
+find_path(SPEECHD_INCLUDE_DIR libspeechd.h)
-FIND_LIBRARY(SPEECHD_LIBRARY NAMES speechd PATH /usr/lib /usr/local/lib)
-
-IF (SPEECHD_INCLUDE_DIR AND SPEECHD_LIBRARY)
- SET(SPEECHD_FOUND TRUE)
-ENDIF (SPEECHD_INCLUDE_DIR AND SPEECHD_LIBRARY)
-
-IF (SPEECHD_FOUND)
- IF (NOT Speechd_FIND_QUIETLY)
- MESSAGE(STATUS "Found Speech Dispatcher: ${SPEECHD_LIBRARY}")
- ENDIF (NOT Speechd_FIND_QUIETLY)
-ELSE (SPEECHD_FOUND)
- IF (Speechd_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could not find Required package: Speech Dispatcher")
- ENDIF (Speechd_FIND_REQUIRED)
-ENDIF (SPEECHD_FOUND)
+find_library(SPEECHD_LIBRARIES NAMES speechd)
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(Speechd REQUIRED_VARS SPEECHD_INCLUDE_DIR
SPEECHD_LIBRARIES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdeaccessibility-4.6.2/jovie/CMakeLists.txt
new/kdeaccessibility-4.6.3/jovie/CMakeLists.txt
--- old/kdeaccessibility-4.6.2/jovie/CMakeLists.txt 2011-01-19
23:09:04.000000000 +0100
+++ new/kdeaccessibility-4.6.3/jovie/CMakeLists.txt 2011-04-28
15:28:56.000000000 +0200
@@ -1,37 +1,23 @@
-if(Q_WS_X11)
-
-macro_optional_find_package(Speechd)
-macro_log_feature(SPEECHD_FOUND "speechd" "Speech Dispatcher provides a
high-level device independent layer for speech synthesis"
"http://www.freebsoft.org/speechd" FALSE "" "Jovie requires either speech
dispatcher or opentts.")
-
-macro_optional_find_package(Opentts)
-macro_log_feature(OPENTTS_FOUND "opentts" "Open Text To Speech provides a
high-level device independent layer for speech synthesis"
"http://www.opentts.org" FALSE "" "Jovie requires either speech dispatcher or
opentts")
-
-# if speechd was found use it
-if (SPEECHD_FOUND)
- set (SPEECH_LIB speechd)
-endif (SPEECHD_FOUND)
-
-# prefer opentts if it was also found (or if it was the only one found)
-if (OPENTTS_FOUND)
- set (SPEECH_LIB opentts)
-endif (OPENTTS_FOUND)
-
-# we found speechd or opentts, so continue
- if(DEFINED SPEECH_LIB)
-
project(kttsd)
-include(KttsdConfigureChecks.cmake)
-
-configure_file (config-jovie.h.cmake
${CMAKE_CURRENT_BINARY_DIR}/config-jovie.h )
-
-include_directories(${CMAKE_CURRENT_BINARY_DIR})
-
-add_subdirectory( libkttsd )
-add_subdirectory( filters )
-add_subdirectory( jovie )
-add_subdirectory( kcmkttsmgr )
-add_subdirectory( icons )
- endif(DEFINED SPEECH_LIB)
-endif(Q_WS_X11)
+if (Q_WS_X11)
+ macro_optional_find_package(Speechd)
+ macro_log_feature(SPEECHD_FOUND "speechd" "Speech Dispatcher provides a
high-level device independent layer for speech synthesis"
"http://www.freebsoft.org/speechd" TRUE "" "Jovie requires speech dispatcher.")
+
+ if (SPEECHD_FOUND)
+ include(KttsdConfigureChecks.cmake)
+
+ configure_file (config-jovie.h.cmake
${CMAKE_CURRENT_BINARY_DIR}/config-jovie.h )
+
+ include_directories(${CMAKE_CURRENT_BINARY_DIR})
+
+ add_subdirectory( libkttsd )
+ add_subdirectory( filters )
+ add_subdirectory( jovie )
+ add_subdirectory( kcmkttsmgr )
+ add_subdirectory( icons )
+ endif (SPEECHD_FOUND)
+else (Q_WS_X11)
+ message(FATAL_ERROR "Jovie requires a X11-based system.")
+endif (Q_WS_X11)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdeaccessibility-4.6.2/jovie/jovie/CMakeLists.txt
new/kdeaccessibility-4.6.3/jovie/jovie/CMakeLists.txt
--- old/kdeaccessibility-4.6.2/jovie/jovie/CMakeLists.txt 2011-01-19
23:09:04.000000000 +0100
+++ new/kdeaccessibility-4.6.3/jovie/jovie/CMakeLists.txt 2011-04-28
15:28:56.000000000 +0200
@@ -23,7 +23,7 @@
set_target_properties(jovie_bin PROPERTIES OUTPUT_NAME jovie)
target_link_libraries(jovie_bin
- ${SPEECH_LIB}
+ ${SPEECHD_LIBRARIES}
${KDE4_KDECORE_LIBS}
${KDE4_KDEUI_LIBS}
${KDE4_KUTILS_LIBS}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kdeaccessibility-4.6.2/jovie/kcmkttsmgr/CMakeLists.txt
new/kdeaccessibility-4.6.3/jovie/kcmkttsmgr/CMakeLists.txt
--- old/kdeaccessibility-4.6.2/jovie/kcmkttsmgr/CMakeLists.txt 2011-01-19
23:08:58.000000000 +0100
+++ new/kdeaccessibility-4.6.3/jovie/kcmkttsmgr/CMakeLists.txt 2011-04-28
15:28:56.000000000 +0200
@@ -20,7 +20,7 @@
kde4_add_plugin(kcm_kttsd ${kcm_kttsd_PART_SRCS})
-target_link_libraries(kcm_kttsd ${KDE4_KPARTS_LIBS} ${SPEECH_LIB} kttsd )
+target_link_libraries(kcm_kttsd ${KDE4_KPARTS_LIBS} ${SPEECHD_LIBRARIES}
kttsd )
install(TARGETS kcm_kttsd DESTINATION ${PLUGIN_INSTALL_DIR} )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdeaccessibility-4.6.2/kaccessible/CMakeLists.txt
new/kdeaccessibility-4.6.3/kaccessible/CMakeLists.txt
--- old/kdeaccessibility-4.6.2/kaccessible/CMakeLists.txt 2011-01-19
23:08:57.000000000 +0100
+++ new/kdeaccessibility-4.6.3/kaccessible/CMakeLists.txt 2011-04-28
15:28:56.000000000 +0200
@@ -60,8 +60,10 @@
##################################################################
macro_optional_find_package(Speechd)
+macro_log_feature(SPEECHD_FOUND "speechd" "Speech Dispatcher provides a
high-level device independent layer for speech synthesis"
"http://www.freebsoft.org/speechd" FALSE "" "Speech dispatcher is an optional
dependency for kaccessible.")
+
if(SPEECHD_FOUND)
- set(SPEECH_LIB speechd)
+ set(SPEECH_LIB ${SPEECHD_LIBRARIES})
add_definitions(-DSPEECHD_FOUND)
endif(SPEECHD_FOUND)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdeaccessibility-4.6.2/kmousetool/CMakeLists.txt
new/kdeaccessibility-4.6.3/kmousetool/CMakeLists.txt
--- old/kdeaccessibility-4.6.2/kmousetool/CMakeLists.txt 2011-01-19
23:08:56.000000000 +0100
+++ new/kdeaccessibility-4.6.3/kmousetool/CMakeLists.txt 2011-04-28
15:28:56.000000000 +0200
@@ -1,10 +1,13 @@
+project(kmousetool)
+
if(Q_WS_X11)
- if(NOT X11_XTest_FOUND)
- macro_log_feature(X11_XTest_FOUND "libXtst" "X11 Testing Resource
extension library" "http://xorg.freedesktop.org" FALSE "" "needed to build
kmousetool.")
- ELSE(NOT X11_XTest_FOUND)
- project(kmousetool)
+ macro_log_feature(X11_XTest_FOUND "libXtst" "X11 Testing Resource extension
library" "http://xorg.freedesktop.org" TRUE "" "Needed to build kmousetool.")
+
+ if(X11_XTest_FOUND)
add_subdirectory( kmousetool )
- endif(NOT X11_XTest_FOUND)
+ endif(X11_XTest_FOUND)
+else(Q_WS_X11)
+ message(FATAL_ERROR "kmousetool needs an X11-based system.")
endif(Q_WS_X11)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]