debian/0000755000000000000000000000000012251027264007167 5ustar debian/kadu.menu0000644000000000000000000000022612251026545011002 0ustar ?package(kadu):needs="X11" section="Applications/Network/Communication"\ title="Kadu" command="/usr/bin/kadu"\ icon="/usr/share/pixmaps/kadu.xpm" debian/kadu.docs0000644000000000000000000000023312251026545010764 0ustar debian/tmp/usr/share/kadu/AUTHORS debian/tmp/usr/share/kadu/HISTORY debian/tmp/usr/share/kadu/README debian/tmp/usr/share/kadu/THANKS debian/README.Debian debian/prepare_install_files.sh0000755000000000000000000000054012251026545014074 0ustar #! /bin/sh if [ "$1" = "linux" ]; then sed -i 's/lib\/kadu/lib\/\*\/kadu/' debian/kadu.install sed -i 's/lib\/kadu/lib\/\*\/kadu/' debian/kadu-external-modules.install elif [ "$1" = "non-linux" ]; then sed -i 's/lib\/\*\/kadu/lib\/kadu/' debian/kadu.install sed -i 's/lib\/\*\/kadu/lib\/kadu/' debian/kadu-external-modules.install fi debian/patches/0000755000000000000000000000000012251026545010617 5ustar debian/patches/03-about-dialog.patch0000644000000000000000000000363112251026545014432 0ustar Description: Fixes contents of "About" dialog's tabs. In Kadu, "About" dialog displays, among others, a license (GPLv2) and ChangeLog's contents. Originally these two files are installed into $(CMAKE_INSTALL_PREFIX)/share subdir. To achieve that, ChangeLog must not be compressed (gzipped). To avoid Lintian's complaints, we change ChangeLog's name to about-changes-tab.txt and (in this patch) change "About" dialog's behavior to read this file instead of ChangeLog. . It's discouraged to ship license file if it is one of most commonly used licenses (like GPL) and reference to /usr/share/common-licenses/. Originally Kadu ships COPYING file containing GPLv2 license text. It's not installed in Debian package, so we have to (and we do in this patch) instruct "About" dialog to read /usr/share/common-licenses/GPL-2 instead of COPYING. Author: Patryk Cisek --- diff --git a/kadu-core/gui/windows/about.cpp b/kadu-core/gui/windows/about.cpp index 8f08e2f..a4472ec 100644 --- a/kadu-core/gui/windows/about.cpp +++ b/kadu-core/gui/windows/about.cpp @@ -158,7 +158,7 @@ About::About(QWidget *parent) : tb_changelog->setOpenLinks(false); tb_changelog->setFrameStyle(QFrame::NoFrame); tb_changelog->viewport()->setAutoFillBackground(false); - QString changelog = Qt::escape(loadFile("ChangeLog")); + QString changelog = Qt::escape(loadFile("about-changes-tab.txt")); changelog.replace('\n', "
"); HtmlDocument changelog_html; changelog_html.parseHtml(changelog); @@ -244,7 +244,10 @@ QString About::loadFile(const QString &name) { kdebugf(); - QFile file(KaduPaths::instance()->dataPath() + name); + QString fullName = (QString("COPYING") == name ? + QString("/usr/share/common-licenses/GPL-2") : + QString("/usr/share/doc/kadu/" + name)); + QFile file(fullName); if (!file.open(QIODevice::ReadOnly)) { kdebugm(KDEBUG_ERROR, "About::loadFile(%s) cannot open file\n", qPrintable(name)); debian/patches/series0000644000000000000000000000021512251026545012032 0ustar 01-external-themes.patch 02-external-plugins.patch 03-about-dialog.patch 04-lowered_expectant_libgadu_version.patch 05-jabber-protocol.patch debian/patches/02-external-plugins.patch0000644000000000000000000000317012251026545015361 0ustar Description: Selects all usable external themes Kadu has a nice set of external (submitted by 3rd parties) themes and plugins. . This patch makes all usable plugins being compiled and installed Author: Patryk Cisek --- diff --git a/Plugins.cmake b/Plugins.cmake index 2041287..b61c21a 100644 --- a/Plugins.cmake +++ b/Plugins.cmake @@ -158,6 +158,54 @@ if (WIN32) ) endif (WIN32) +# External plugins +list (APPEND DEFAULT_PLUGINS + + # anonymous_check + # Automatically search contacts in public directory + anonymous_check + + # globalhotkeys + # Adds global hotkeys support to Kadu + globalhotkeys + + # import_history + # Imports history from original Gadu-Gadu client + import_history + + # kadu_completion + # Adds bash-like completion to Kadu's chat window for its <...> emoticons + kadu_completion + + # lednotify + # Notifying using Scroll Loch LED + lednotify + + # messagessplitter + # Automatically splits too long messages + messagessplitter + + # mime_tex + # Mathematical formulas using MimeTeX + mime_tex + + # networkping + # Periodically checks network health + networkping + + # nextinfo + # New ext_info plugin -- adds more information about the contacts + nextinfo + + # panelkadu + # Makes Kadu look and behave like a panel + panelkadu + + # senthistory + # Adds history of sent messages to a chat window + senthistory +) + # Sort the list so plugins will be built in alphabetical order list (SORT DEFAULT_PLUGINS) debian/patches/01-external-themes.patch0000644000000000000000000000163312251026545015166 0ustar Description: Selects all usable external themes Kadu has a nice set of external (submitted by 3rd parties) themes and plugins. . This patch makes all usable external themes to be installed Author: Patryk Cisek --- diff --git a/varia/themes/emoticons/CMakeLists.txt b/varia/themes/emoticons/CMakeLists.txt index d472623..20c3187 100644 --- a/varia/themes/emoticons/CMakeLists.txt +++ b/varia/themes/emoticons/CMakeLists.txt @@ -1,6 +1,7 @@ set (EMOTICON_THEMES penguins tango + gg6_compatible ) if (EMOTICON_THEMES) diff --git a/varia/themes/sounds/CMakeLists.txt b/varia/themes/sounds/CMakeLists.txt index 841c6ee..8beffb5 100644 --- a/varia/themes/sounds/CMakeLists.txt +++ b/varia/themes/sounds/CMakeLists.txt @@ -1,5 +1,11 @@ set (SOUND_THEMES default + bns + drums + florkus + michalsrodek + percussion + ultr ) if (SOUND_THEMES) debian/patches/05-jabber-protocol.patch0000644000000000000000000000152512251026545015151 0ustar Description: Fix FTBFS with newest cmake Author: Mateusz Łukasik Origin: upstream, http://www.kadu.im/forum/viewtopic.php?f=1&t=16904 Bug: http://www.kadu.im/forum/viewtopic.php?f=1&t=16904 Bug-Debian: http://bugs.debian.org/730923 --- a/plugins/jabber_protocol/3rdparty/CMakeLists.txt +++ b/plugins/jabber_protocol/3rdparty/CMakeLists.txt @@ -26,7 +26,7 @@ macro (kadu_jabber_automoc) get_filename_component (_basename ${_current_MOC} NAME_WE) set (_header ${_abs_FILE}) set (_moc ${_abs_PATH}/${_current_MOC}) - QT4_CREATE_MOC_COMMAND (${_header} ${_moc} "${_moc_INCS}" "") + QT4_CREATE_MOC_COMMAND (${_header} ${_moc} "${_moc_INCS}" "" "${moc_target}") MACRO_ADD_FILE_DEPENDENCIES (${_abs_FILE} ${_moc}) endforeach (_current_MOC_INC) endif (_match) debian/patches/04-lowered_expectant_libgadu_version.patch0000644000000000000000000000144012251026545021030 0ustar Description: Lowered minimum libgadu version for gadu_protocol plugin Since 0.11.1 of libgadu is not yet released (only release candidates), it's not yet been uploaded to Sid. In reality 0.11.1 is not really needed by Kadu. But, since it introduces some new SSL related functionality in client-server communication, Kadu Team decided to depend on 0.11.1. Author: Patryk Cisek --- diff --git a/plugins/gadu_protocol/CMakeLists.txt b/plugins/gadu_protocol/CMakeLists.txt index ff8c80b..e651f3a 100644 --- a/plugins/gadu_protocol/CMakeLists.txt +++ b/plugins/gadu_protocol/CMakeLists.txt @@ -16,7 +16,7 @@ include (FindKadu) include (FindPkgConfig) -set (LIBGADU_MIN_VERSION "1.11.1") +set (LIBGADU_MIN_VERSION "1.10.1") kadu_api_directories (plugins/gadu_protocol dcc debian/kadu-common.install0000644000000000000000000001701712251026545013000 0ustar debian/tmp/usr/share/icons debian/tmp/usr/share/indicators/messages/applications/kadu debian/tmp/usr/share/kadu/configuration/dialog-look-chat-advanced.ui debian/tmp/usr/share/kadu/configuration/dialog.ui debian/tmp/usr/share/kadu/plugins/antistring.desc debian/tmp/usr/share/kadu/plugins/auto_hide.desc debian/tmp/usr/share/kadu/plugins/autoaway.desc debian/tmp/usr/share/kadu/plugins/autoresponder.desc debian/tmp/usr/share/kadu/plugins/autostatus.desc debian/tmp/usr/share/kadu/plugins/cenzor.desc debian/tmp/usr/share/kadu/plugins/chat_notify.desc debian/tmp/usr/share/kadu/plugins/config_wizard.desc debian/tmp/usr/share/kadu/plugins/configuration/antistring.ui debian/tmp/usr/share/kadu/plugins/configuration/auto_hide.ui debian/tmp/usr/share/kadu/plugins/configuration/autoaway.ui debian/tmp/usr/share/kadu/plugins/configuration/autoresponder.ui debian/tmp/usr/share/kadu/plugins/configuration/autostatus.ui debian/tmp/usr/share/kadu/plugins/configuration/cenzor.ui debian/tmp/usr/share/kadu/plugins/configuration/desktop_docking.ui debian/tmp/usr/share/kadu/plugins/configuration/docking.ui debian/tmp/usr/share/kadu/plugins/configuration/encryption-ng.ui debian/tmp/usr/share/kadu/plugins/configuration/ext_sound.ui debian/tmp/usr/share/kadu/plugins/configuration/filedesc.ui debian/tmp/usr/share/kadu/plugins/configuration/firewall.ui debian/tmp/usr/share/kadu/plugins/configuration/freedesktop_notify.ui debian/tmp/usr/share/kadu/plugins/configuration/hint-over-user.ui debian/tmp/usr/share/kadu/plugins/configuration/hints-advanced.ui debian/tmp/usr/share/kadu/plugins/configuration/hints-notifier.ui debian/tmp/usr/share/kadu/plugins/configuration/hints.ui debian/tmp/usr/share/kadu/plugins/configuration/history.ui debian/tmp/usr/share/kadu/plugins/configuration/image-link.ui debian/tmp/usr/share/kadu/plugins/configuration/jabber_protocol.ui debian/tmp/usr/share/kadu/plugins/configuration/mediaplayer.ui debian/tmp/usr/share/kadu/plugins/configuration/mpd_config.ui debian/tmp/usr/share/kadu/plugins/configuration/mprisplayer_mediaplayer.ui debian/tmp/usr/share/kadu/plugins/configuration/qt4-docking-notify.ui debian/tmp/usr/share/kadu/plugins/configuration/screenshot.ui debian/tmp/usr/share/kadu/plugins/configuration/simpleview.ui debian/tmp/usr/share/kadu/plugins/configuration/single_window.ui debian/tmp/usr/share/kadu/plugins/configuration/sms.ui debian/tmp/usr/share/kadu/plugins/configuration/sound.ui debian/tmp/usr/share/kadu/plugins/configuration/speech.ui debian/tmp/usr/share/kadu/plugins/configuration/spellchecker.ui debian/tmp/usr/share/kadu/plugins/configuration/tabs.ui debian/tmp/usr/share/kadu/plugins/configuration/word_fix.ui debian/tmp/usr/share/kadu/plugins/data/antistring debian/tmp/usr/share/kadu/plugins/data/cenzor debian/tmp/usr/share/kadu/plugins/data/gadu_protocol debian/tmp/usr/share/kadu/plugins/data/mediaplayer debian/tmp/usr/share/kadu/plugins/data/mprisplayer_mediaplayer debian/tmp/usr/share/kadu/plugins/data/sms debian/tmp/usr/share/kadu/plugins/data/sql_history/scripts/history-database-recovery.sh debian/tmp/usr/share/kadu/plugins/data/word_fix debian/tmp/usr/share/kadu/plugins/desktop_docking.desc debian/tmp/usr/share/kadu/plugins/docking.desc debian/tmp/usr/share/kadu/plugins/encryption_ng.desc debian/tmp/usr/share/kadu/plugins/encryption_ng_simlite.desc debian/tmp/usr/share/kadu/plugins/exec_notify.desc debian/tmp/usr/share/kadu/plugins/ext_sound.desc debian/tmp/usr/share/kadu/plugins/falf_mediaplayer.desc debian/tmp/usr/share/kadu/plugins/filedesc.desc debian/tmp/usr/share/kadu/plugins/firewall.desc debian/tmp/usr/share/kadu/plugins/freedesktop_notify.desc debian/tmp/usr/share/kadu/plugins/gadu_protocol.desc debian/tmp/usr/share/kadu/plugins/hints.desc debian/tmp/usr/share/kadu/plugins/history.desc debian/tmp/usr/share/kadu/plugins/history_migration.desc debian/tmp/usr/share/kadu/plugins/idle.desc debian/tmp/usr/share/kadu/plugins/imagelink.desc debian/tmp/usr/share/kadu/plugins/indicator_docking.desc debian/tmp/usr/share/kadu/plugins/jabber_protocol.desc debian/tmp/usr/share/kadu/plugins/last_seen.desc debian/tmp/usr/share/kadu/plugins/mediaplayer.desc debian/tmp/usr/share/kadu/plugins/mpd_mediaplayer.desc debian/tmp/usr/share/kadu/plugins/mprisplayer_mediaplayer.desc debian/tmp/usr/share/kadu/plugins/pcspeaker.desc debian/tmp/usr/share/kadu/plugins/phonon_sound.desc debian/tmp/usr/share/kadu/plugins/profiles_import.desc debian/tmp/usr/share/kadu/plugins/qt4_docking.desc debian/tmp/usr/share/kadu/plugins/qt4_docking_notify.desc debian/tmp/usr/share/kadu/plugins/qt4_sound.desc debian/tmp/usr/share/kadu/plugins/screenshot.desc debian/tmp/usr/share/kadu/plugins/simpleview.desc debian/tmp/usr/share/kadu/plugins/single_window.desc debian/tmp/usr/share/kadu/plugins/sms.desc debian/tmp/usr/share/kadu/plugins/sound.desc debian/tmp/usr/share/kadu/plugins/speech.desc debian/tmp/usr/share/kadu/plugins/spellchecker.desc debian/tmp/usr/share/kadu/plugins/sql_history.desc debian/tmp/usr/share/kadu/plugins/tabs.desc debian/tmp/usr/share/kadu/plugins/translations/antistring* debian/tmp/usr/share/kadu/plugins/translations/auto_hide* debian/tmp/usr/share/kadu/plugins/translations/autoaway* debian/tmp/usr/share/kadu/plugins/translations/autoresponder* debian/tmp/usr/share/kadu/plugins/translations/autostatus* debian/tmp/usr/share/kadu/plugins/translations/cenzor* debian/tmp/usr/share/kadu/plugins/translations/chat_notify* debian/tmp/usr/share/kadu/plugins/translations/config_wizard* debian/tmp/usr/share/kadu/plugins/translations/desktop_docking* debian/tmp/usr/share/kadu/plugins/translations/desktop_docking* debian/tmp/usr/share/kadu/plugins/translations/docking* debian/tmp/usr/share/kadu/plugins/translations/encryption_ng_* debian/tmp/usr/share/kadu/plugins/translations/exec_notify* debian/tmp/usr/share/kadu/plugins/translations/ext_sound* debian/tmp/usr/share/kadu/plugins/translations/filedesc* debian/tmp/usr/share/kadu/plugins/translations/firewall* debian/tmp/usr/share/kadu/plugins/translations/freedesktop_notify* debian/tmp/usr/share/kadu/plugins/translations/gadu_protocol* debian/tmp/usr/share/kadu/plugins/translations/hints* debian/tmp/usr/share/kadu/plugins/translations/history* debian/tmp/usr/share/kadu/plugins/translations/imagelink* debian/tmp/usr/share/kadu/plugins/translations/jabber_protocol* debian/tmp/usr/share/kadu/plugins/translations/last_seen* debian/tmp/usr/share/kadu/plugins/translations/mediaplayer* debian/tmp/usr/share/kadu/plugins/translations/mpd_mediaplayer_* debian/tmp/usr/share/kadu/plugins/translations/mprisplayer_mediaplayer* debian/tmp/usr/share/kadu/plugins/translations/pcspeaker* debian/tmp/usr/share/kadu/plugins/translations/profiles_import* debian/tmp/usr/share/kadu/plugins/translations/qt4_docking_notify* debian/tmp/usr/share/kadu/plugins/translations/qt4_sound* debian/tmp/usr/share/kadu/plugins/translations/screenshot* debian/tmp/usr/share/kadu/plugins/translations/simpleview* debian/tmp/usr/share/kadu/plugins/translations/single_window* debian/tmp/usr/share/kadu/plugins/translations/sms* debian/tmp/usr/share/kadu/plugins/translations/sound* debian/tmp/usr/share/kadu/plugins/translations/speech* debian/tmp/usr/share/kadu/plugins/translations/spellchecker* debian/tmp/usr/share/kadu/plugins/translations/sql_history* debian/tmp/usr/share/kadu/plugins/translations/tabs* debian/tmp/usr/share/kadu/plugins/translations/word_fix* debian/tmp/usr/share/kadu/plugins/word_fix.desc debian/tmp/usr/share/kadu/scripts debian/tmp/usr/share/kadu/syntax debian/tmp/usr/share/kadu/themes/emoticons/penguins debian/tmp/usr/share/kadu/themes/icons/default debian/tmp/usr/share/kadu/themes/sounds/default debian/tmp/usr/share/kadu/translations debian/kadu-dev.install0000644000000000000000000000012212251026545012253 0ustar debian/tmp/usr/include/kadu debian/tmp/usr/share/cmake-2.8/Modules/FindKadu.cmake debian/kadu-external-modules.install0000644000000000000000000000454412251027264015000 0ustar debian/tmp/usr/lib/*/kadu/plugins/bin/mime_tex debian/tmp/usr/lib/*/kadu/plugins/libanonymous_check.so debian/tmp/usr/lib/*/kadu/plugins/libglobalhotkeys.so debian/tmp/usr/lib/*/kadu/plugins/libimport_history.so debian/tmp/usr/lib/*/kadu/plugins/libkadu_completion.so debian/tmp/usr/lib/*/kadu/plugins/liblednotify.so debian/tmp/usr/lib/*/kadu/plugins/libmessagessplitter.so debian/tmp/usr/lib/*/kadu/plugins/libmime_tex.so debian/tmp/usr/lib/*/kadu/plugins/libnetworkping.so debian/tmp/usr/lib/*/kadu/plugins/libnextinfo.so debian/tmp/usr/lib/*/kadu/plugins/libpanelkadu.so debian/tmp/usr/lib/*/kadu/plugins/libsenthistory.so debian/tmp/usr/share/kadu/plugins/anonymous_check.desc debian/tmp/usr/share/kadu/plugins/configuration/globalhotkeys.ui debian/tmp/usr/share/kadu/plugins/configuration/lednotify.ui debian/tmp/usr/share/kadu/plugins/configuration/messagessplitter.ui debian/tmp/usr/share/kadu/plugins/configuration/mime_tex.ui debian/tmp/usr/share/kadu/plugins/configuration/networkping.ui debian/tmp/usr/share/kadu/plugins/configuration/nextinfo.ui debian/tmp/usr/share/kadu/plugins/configuration/panelkadu.ui debian/tmp/usr/share/kadu/plugins/configuration/senthistory.ui debian/tmp/usr/share/kadu/plugins/data/kadu_completion debian/tmp/usr/share/kadu/plugins/data/mime_tex debian/tmp/usr/share/kadu/plugins/globalhotkeys.desc debian/tmp/usr/share/kadu/plugins/import_history.desc debian/tmp/usr/share/kadu/plugins/kadu_completion.desc debian/tmp/usr/share/kadu/plugins/lednotify.desc debian/tmp/usr/share/kadu/plugins/messagessplitter.desc debian/tmp/usr/share/kadu/plugins/mime_tex.desc debian/tmp/usr/share/kadu/plugins/networkping.desc debian/tmp/usr/share/kadu/plugins/nextinfo.desc debian/tmp/usr/share/kadu/plugins/panelkadu.desc debian/tmp/usr/share/kadu/plugins/senthistory.desc debian/tmp/usr/share/kadu/plugins/translations/anonymous_check* debian/tmp/usr/share/kadu/plugins/translations/globalhotkeys* debian/tmp/usr/share/kadu/plugins/translations/import_history* debian/tmp/usr/share/kadu/plugins/translations/lednotify* debian/tmp/usr/share/kadu/plugins/translations/messagessplitter* debian/tmp/usr/share/kadu/plugins/translations/mime_tex* debian/tmp/usr/share/kadu/plugins/translations/networkping* debian/tmp/usr/share/kadu/plugins/translations/nextinfo* debian/tmp/usr/share/kadu/plugins/translations/panelkadu* debian/tmp/usr/share/kadu/plugins/translations/senthistory* debian/kadu.manpages0000644000000000000000000000002712251026545011630 0ustar debian/manpages/kadu.1 debian/source/0000755000000000000000000000000012251026545010470 5ustar debian/source/format0000644000000000000000000000001412251026545011676 0ustar 3.0 (quilt) debian/extract.sh0000644000000000000000000000271712251026545011205 0ustar #! /bin/sh # $1 - $(CURDIR) # $2 - $(DEB_BUILDDIR) for dir in "$1/$2/modules" "$1/$2/varia/themes/icons" "$1/$2/varia/themes/emoticons" "$1/$2/varia/themes/sounds"; do if [ ! -d "$dir" ]; then mkdir -p "$dir" fi done cd "$1/$2" cd modules for tarball in $1/external/modules/*; do tmp=${tarball%%.tar.*} mod_name=${tmp##*/} if [ ! -f "$mod_name"/spec ]; then if [ "${tarball##*.}" = "bz2" ]; then tar fxjk "$tarball" || /bin/true else tar fxzk "$tarball" || /bin/true fi fi done cd ../varia/themes/icons for tarball in $1/external/themes/icons/*; do tmp=${tarball%%.tar.*} theme_name=${tmp##*/} if [ ! -f "$theme_name"/icons.conf ]; then if [ "${tarball##*.}" = "bz2" ]; then tar fxjk "$tarball" || /bin/true else tar fxzk "$tarball" || /bin/true fi fi done rm -f glass16/licence glass22/licence cd ../emoticons for tarball in $1/external/themes/emoticons/*; do tmp=${tarball%%.tar.*} theme_name=${tmp##*/} if [ ! -f "$theme_name/1/emots.txt" ]; then if [ "${tarball##*.}" = "bz2" ]; then tar fxjk "$tarball" || /bin/true else tar fxzk "$tarball" || /bin/true fi fi done rm -f tango/1/license.txt cd ../sounds for tarball in $1/external/themes/sounds/*; do tmp=${tarball%%.tar.*} theme_name=${tmp##*/} if [ ! -f "$theme_name/sound.conf" ]; then if [ "${tarball##*.}" = "bz2" ]; then tar fxjk "$tarball" || /bin/true else tar fxzk "$tarball" || /bin/true fi fi done debian/control0000644000000000000000000000654412251026545010604 0ustar Source: kadu Section: net Priority: optional Maintainer: Patryk Cisek Vcs-Git: git://git.debian.org/users/patryk/kadu.git Vcs-Browser: http://git.debian.org/?p=users/patryk/kadu.git Build-Depends: bzip2, cmake (>=2.6), debhelper (>= 8.1.3), enchant, hardening-wrapper, libasound2-dev, libaudio-dev, libdbus-1-dev, libenchant-dev, libgadu-dev, libidn11-dev, libindicate-qt-dev, libmpdclient-dev, libphonon-dev, libqca2-dev, libqt4-dev, libqtwebkit-dev, libsndfile1-dev (>= 1.0), libsqlite3-dev, libxfixes-dev, libxss-dev, libxtst-dev, patchutils (>= 0.2.25), sharutils, x11proto-scrnsaver-dev, zlib1g-dev Standards-Version: 3.9.4 Homepage: http://kadu.net Package: kadu Architecture: any Pre-Depends: ${misc:Pre-Depends} Depends: kadu-common (= ${source:Version}), libqca2-plugin-ossl, libqt4-sql-sqlite, libqt4-svg, ${misc:Depends}, ${shlibs:Depends} Recommends: kadu-external-modules (>= 0.10.0-2) Breaks: kadu-external-modules (<< 0.10.0-2) Replaces: kadu-external-modules (<< 0.10.0-2) Suggests: kadu-themes Description: Gadu-Gadu/XMPP client for X11 Gadu-Gadu is a Windows instant messenger, very popular in Poland. Kadu is a Qt4 client of Gadu-Gadu and XMPP for *nix systems. . This package provides Kadu along with plugins developed by Kadu developers. Package: kadu-common Architecture: all Depends: ${misc:Depends}, ${shlibs:Depends} Recommends: kadu-external-modules (>= 0.10.0-2) Breaks: kadu-external-modules (<< 0.10.0-2) Replaces: kadu-external-modules (<< 0.10.0-2) Suggests: kadu-themes Description: Gadu-Gadu/XMPP client for X11 Gadu-Gadu is a Windows instant messenger, very popular in Poland. Kadu is a Qt4 client of Gadu-Gadu and XMPP for *nix systems. . This package provides data common for all architectures. Package: kadu-dev Architecture: all Depends: ${misc:Depends}, ${shlibs:Depends} Description: Development files needed to compile plugins for kadu Gadu-Gadu is a Windows instant messenger, very popular in Poland. Kadu is a Qt4 client of Gadu-Gadu and XMPP for *nix systems. . This package provides development files needed to compile plugins for Kadu. Package: kadu-external-modules Architecture: any Pre-Depends: ${misc:Pre-Depends} Depends: kadu (>= 0.10.0-2), ${misc:Depends}, ${shlibs:Depends} Breaks: kadu (<< 0.10.0-2), kadu-common (<< 0.10.0-2) Replaces: kadu (<< 0.10.0-2), kadu-common (<< 0.10.0-2) Description: Additional plugins for Kadu Gadu-Gadu is a Windows instant messenger, very popular in Poland. Kadu is a Qt4 client of Gadu-Gadu and XMPP for *nix systems. . This package provides additional packages developed by external developers. See README.Debian for more details. Package: kadu-themes Architecture: all Depends: ${misc:Depends} Recommends: kadu Description: Additional icons and emoticons for Kadu Gadu-Gadu is a Windows instant messenger, very popular in Poland. Kadu is a Qt4 client of Gadu-Gadu and XMPP for *nix systems. . This package provides additional icons, sounds and emoticons themes for Kadu. debian/changelog0000644000000000000000000005743312251026544011055 0ustar kadu (0.12.3-3) unstable; urgency=low * Fixed a build issue. Thanks Mateusz Łukasik for the patch! (Closes: #730923) -- Patryk Cisek Sun, 08 Dec 2013 09:26:29 +0100 kadu (0.12.3-2) unstable; urgency=low * debian.install and debian/kadu-external-modules.install are now modified so they fit non-linux Debian flavors * Bumped Standards-Version to 3.9.4 -- Patryk Cisek Sat, 13 Jul 2013 19:10:55 +0200 kadu (0.12.3-1) unstable; urgency=low * New upstream release * Removed debian/patches/05-hotfix_upstream.patch and debian/patches/06-mpris_player-harden-fix.patch -- patches applied upstream * Icon theme glass is installed again, since all icon sizes have been corrected * Changed build dependency from aspell to enchant (Upstream's suggestion) -- Patryk Cisek Sat, 15 Sep 2012 13:02:48 +0200 kadu (0.12.2-3) unstable; urgency=low * Added debian/patches/06-mpris_player-harden-fix.patch which fixes loading mpris_player plugin on Debian hardened build. -- Patryk Cisek Mon, 10 Sep 2012 07:26:01 +0200 kadu (0.12.2-2) unstable; urgency=low * Added important fix in debian/patches/05-hotfix_upstream.patch reported by upstream * Using hardening-wrapper from now on -- Patryk Cisek Wed, 05 Sep 2012 09:31:06 +0200 kadu (0.12.2-1) unstable; urgency=low * New upstream release * Added import_history plugin back * Bumped debhelper's version in Build-Depends * Added Pre-Depends: ${misc:Pre-Depends} to kadu and kadu-external-modules * Added translations to mpd_mediaplayer plugin in debian/kadu- common.install -- Patryk Cisek Mon, 03 Sep 2012 16:03:29 +0200 kadu (0.12.0-1) unstable; urgency=low * New upstream release * Updated debian/build_kadu.sh to new branches names (0.12/*) * Updated debian/patches/03-about-dialog.patch to make it fit 0.12.0 * Removed importhistory module, since it's no longer maintained * Removed debian/tmp/usr/share/kadu/plugins/sdk/ from debian/kadu-dev.install * Using dpkg-buildflags for hardening now * Removed glass icon theme until directory names get fixed * Fixed resolution of dialog-error.png in default icon theme -- Patryk Cisek Sun, 05 Aug 2012 17:21:53 +0200 kadu (0.11.2-1) unstable; urgency=low * New upstream release * Removed debian/patches/05-kadu_completion_fix.patch -- fix already included upstream * Added libqt4-svg to kadu's Depends -- Patryk Cisek Tue, 17 Apr 2012 07:52:47 +0200 kadu (0.11.1-3) unstable; urgency=low * Backported the following fix of kadu_completion plugin from upstream repository: git://gitorious.org/mime_tex/kadu_completion.git The backported commit's fix: dfa94a16d3ff51e9bc05996836e4d46627d93d84 -- Patryk Cisek Wed, 04 Apr 2012 15:15:58 +0200 kadu (0.11.1-2) unstable; urgency=low * Fixed serious mistake in changelog entry for 0.11.1-1: This upstream versions contains important security issues... -> This upstream versions contains fixes of important security issues -- Patryk Cisek Tue, 28 Feb 2012 08:15:00 +0100 kadu (0.11.1-1) unstable; urgency=high * New upstream release * This upstream versions contains fixes of important security issues introduced in version 0.9.0. * Bumped Standards-Version to 3.9.3 * Added kadu_completion plugin to kadu-external-modules * TLS negotiation problem solved upstream (Closes: #634037) * Wide description window problem solved upstream (Closes: #592931) -- Patryk Cisek Mon, 27 Feb 2012 10:33:53 +0100 kadu (0.11.0-2) unstable; urgency=low * Added aspell package to Build-Depends -- Patryk Cisek Sun, 26 Feb 2012 19:54:09 +0100 kadu (0.11.0-1) unstable; urgency=low * New upstream release * Updated messagessplitter to newest upstream version -- Patryk Cisek Sat, 04 Feb 2012 14:37:35 +0100 kadu (0.11.0~rc3-1) unstable; urgency=low * New upstream release * Renamed 05-lowered_expectant_libgadu_version.patch to 04- lowered_expectant_libgadu_version.patch -- Patryk Cisek Thu, 02 Feb 2012 16:52:30 +0100 kadu (0.11.0~rc2-1) unstable; urgency=low * New upstream release * Removed debian/patches/04-backport_patch- only_send_jabber_status_to_server_when_connecting.patch included upstream. -- Patryk Cisek Thu, 19 Jan 2012 16:45:02 +0100 kadu (0.11.0~rc1-1) unstable; urgency=low * New upstream release * Updated all external plugins to their newest upstream versions * Updated debian/patches/02-external-plugins.patch * Added indicator_docking plugin * Backported fix for Kadu patch from git. It fixes problem with reconnecting after suspend. * Updated debian/patches/02-external-plugins.patch * Lowered minimum expected version of libgadu. See description in debian/patches/05-lowered_expectant_libgadu_version.patch for more details. * Added libindicate-qt-dev to Build-Depends -- Patryk Cisek Mon, 16 Jan 2012 10:08:06 +0100 kadu (0.10.1-1) unstable; urgency=low * New upstream release * Removed debian/patches/04-globalhotkeys.patch -- no longer needed. * Updated debian/patches/03-about-dialog.patch for Kadu 0.10.1 * Moved FindKadu.cmake from /usr/share/cmake/Modules to /usr/share/cmake-2.8/Modules * Updated external plugins to their newest upstream versions * Build error against dpkg-1.16.1 fixed upstream (Closes: #646278) -- Patryk Cisek Tue, 25 Oct 2011 17:45:32 +0200 kadu (0.10.0-3) unstable; urgency=low * Added globalhotkeys.desc to kadu-external-modules.install -- Patryk Cisek Mon, 17 Oct 2011 15:28:43 +0200 kadu (0.10.0-2) unstable; urgency=low * Moved import_history, messagessplitter, networkping and nextinfo plugins from kadu to kadu-external-modules * Added globalhotkeys plugin * Moved idle and auto_hide plugin files in appropriate packages * Refreshed information in debian/copyright -- Patryk Cisek Sun, 16 Oct 2011 12:05:59 +0200 kadu (0.10.0-1) unstable; urgency=low * New upstream release * Added libsqlite3-dev to Build-Depends * Added kadu-dev package * Removed libjs-mootools from kadu-common Depends and libao-dev from Build-Depends * Got rid of kadu.install.(no)alsa -- no alsa_sound plugin anymore * Updated external plugins to their newest upstream versions -- Patryk Cisek Fri, 23 Sep 2011 17:31:22 +0200 kadu (0.9.2-2) unstable; urgency=low * Rebuild to link against libgadu3 version 1.11.0-2 or newer needed (Closes: #637172) * Upstream fixed build error when using gcc 4.6.1 (Closes: #634396) * Changed build dependency from libasound-dev to libasound2-dev (Closes: #637138, #635305) -- Patryk Cisek Tue, 09 Aug 2011 09:53:46 +0200 kadu (0.9.2-1) unstable; urgency=low * New upstream release * Updated debian/patches/02-.config.patch to make it fit 0.9.2 * Updated debian/patches/01-no_autodownload.patch to make it fit 0.9.2 * Removed server_monitor module's files from *.install -- module's been removed upstream. -- Patryk Cisek Fri, 01 Jul 2011 15:55:45 +0200 kadu (0.9.1-1) unstable; urgency=low * New upstream release * debian/kadu.desktop: Kadu now supports XMPP as well as Gadu-Gadu -- Patryk Cisek Mon, 11 Apr 2011 13:16:43 +0200 kadu (0.9.0-1) unstable; urgency=low * New upstream release -- Patryk Cisek Sun, 20 Mar 2011 09:12:01 +0100 kadu (0.6.6~rc3-1) unstable; urgency=low * New upstream release * Added libqtwebkit-dev to Build-Depends. (Closes: #618214) -- Patryk Cisek Mon, 14 Mar 2011 09:25:25 +0100 kadu (0.6.6~rc2-1) unstable; urgency=low * New upstream release * Included information about XMPP protocol support in package descriptions * Changed "module(s)" to "plugin(s)" in package descriptions * Updated debian/patches/02-.config.patch to make it fit 0.6.6~rc2 * Updated debian/patches/03-about-dialog.patch to make it fit 0.6.6~rc2 * Removed debian/patches/04-gcc4.4-build-fix.patch, since it's no longer needed -- Patryk Cisek Mon, 07 Mar 2011 15:16:01 +0100 kadu (0.6.6~rc1-1) unstable; urgency=low * New upstream release -- Patryk Cisek Wed, 23 Feb 2011 16:28:39 +0100 kadu (0.6.6~beta17-2) unstable; urgency=low * Used wrap-and-sort from ubuntu-dev-tools to sort .install files, sort dependency fields in debian/control and wrap fields longer than 80 characters * Added Vcs-Git and Vcs-Browser to debian/control * Added debian/build_kadu.sh script, which may be used to build Kadu packages when in Git checkout of Vcs-Git repository * Updated debian/README.source; added info about Vcs-* in debian/control, deleted CDBS info -- it's no longer used in Kadu packaging * Refreshed external modules list in debian/README.Debian -- Patryk Cisek Mon, 21 Feb 2011 11:18:13 +0100 kadu (0.6.6~beta17-1) unstable; urgency=low * New upstream release * Added nextinfo external module -- Patryk Cisek Sat, 19 Feb 2011 09:36:07 +0000 kadu (0.6.6~beta16-1) unstable; urgency=low * New upstream release * Added code.google.com to debian/watch * Refreshed debian/patches/02-.config.patch * Removed 05-panelkadu_no-strict-aliasing.patch, since panelkadu's been fixed upstream * Removed libcurl4-gnutls-dev from Build-Depends, since it's no longer needed * Added zlib1g-dev to Build-Depends * debian/handle_external.sh: externalthemes/icons is no longer taken care of. * Added libidn11-dev to Build-Depends * Added debian/patches/05-panelkadu_lednotify-build-fix.patch, that fixes panelkadu and lednotify build errors * Removed kadu05 icon theme from being installed -- Patryk Cisek Thu, 17 Feb 2011 10:12:37 +0100 kadu (0.6.6~beta15-1) unstable; urgency=low * New upstream release * Bumped Standards-Version * Added dependency on libqt4-sql-sqlite for kadu package to make history module work properly * Updated Kadu Team members list in debian/copyright * Update of clean target in debian/rules: debian/alsa-stamp gets removed as well * Added metadata to debian/patches to make them comply DEP3 http://dep.debian.net/deps/dep3 * Updated debian/patches/* make them fit to new upstream version * Minor updates to debian/patches/* to make them fit new source * Setting 755 on /usr/share/kadu/themes/icons/oxygen/src/rebuild- statuses.sh * Updated external modules to their newest upstream versions * Added debian/patches/05-panelkadu_no-strict-aliasing.patch to get rid of compilation warning, which results in an error thanks to "-Werror" compilation flag -- Patryk Cisek Fri, 11 Feb 2011 11:18:52 +0100 kadu (0.6.5.4.ds1-1) unstable; urgency=low * Added missing copyright notices about dbus and pajacyk modules to debian/copyright * Updated year ranges in debian/copyright from ...-2009 to ...-2010 * Standards-Version to 3.8.4 * Migrated to 3.0 (quilt) format * Set fake 0.6.5.4.ds1 version to simulate new upstream release. -- Patryk Cisek Sun, 20 Jun 2010 12:00:02 +0000 kadu (0.6.5.4-1) unstable; urgency=low * New upstream release * Refreshed patches in debian/patches to code changes since last stable release of Kadu * Added debian/patches/06-mail.patch -- updates external mail module to new API in kadu-0.6.5.4. Patch maintained by Kadu Team. * Updated external modules to their newest versions * Added dbus module to kadu package * Added pajacyk, single_window and mpris_mediaplayer to kadu-external-modules * Added kadu-pajacyk external module -- Patryk Cisek Mon, 08 Feb 2010 08:34:11 +0000 kadu (0.6.5.4~rc1-2) experimental; urgency=low * Backported upstream image sending fix -- Patryk Cisek Fri, 18 Dec 2009 08:41:24 +0000 kadu (0.6.5.4~rc1-1) experimental; urgency=low * New upstream release * Updated external modules to their newest upstream versions * Updated external themes to their newest upstream versions -- Patryk Cisek Tue, 08 Dec 2009 17:17:11 +0000 kadu (0.6.5.3-2) unstable; urgency=low * Added debian/patches/05-lib64-suffix-fix.patch to fix FTBFS on 64-bit architectures -- Patryk Cisek Tue, 15 Sep 2009 12:51:15 +0200 kadu (0.6.5.3-1) unstable; urgency=low * New upstream release * Bumped Standards-Version to 3.8.3 (no changed needed) * Added -DLIB_SUFFIX_64=0 to cmake invocation to force kadu's modules being installed in /usr/lib on 64-bit architectures -- Patryk Cisek Thu, 10 Sep 2009 09:53:38 +0200 kadu (0.6.5.2-4) unstable; urgency=low * Fixed regressive bug: AUTHORS, THANKS, LICENSE, about-changes-tab.txt are again (after abandoning CDBS) prevented from being compressed, since their contents are listed in About dialog box -- Patryk Cisek Mon, 27 Jul 2009 13:01:21 +0200 kadu (0.6.5.2-3) unstable; urgency=low * CDBS is no longer used for building * Removed build dependency on autotools-dev -- Kadu is cmake-based now * Backported upstream patch (debian/patches/05-backported-plus_pl_sms-AJAX-fix.patch) for plus_pl_sms to make it work with new AJAX SMS gateway -- Patryk Cisek Sun, 26 Jul 2009 13:37:43 +0200 kadu (0.6.5.2-2) unstable; urgency=low * Added debian/patches/04-gcc4.4-build-fix.patch, which fixes compilation errors, when using gcc-4.4 (Closes: #525892) -- Patryk Cisek Tue, 12 May 2009 17:38:34 +0200 kadu (0.6.5.2-1) unstable; urgency=low * New upstream release * debian/extract.sh: Added "-k" to tar invocations to avoid overwriting potentially patched (by debian/patches) external modules/themes * Added encryption module -- new version gets rid of GPL vs. OpenSSL license issue * Updated debian/patches/02-.config.patch to include new modules * Added new Build-Depends to compile newly added modules * Bumped Standards-Version to 3.8.1 -- Patryk Cisek Sat, 02 May 2009 10:13:44 +0200 kadu (0.6.5.1-5) unstable; urgency=low * Removed debian/patches/05-default_sms-fix.patch and debian/patches/06-saveWindowsGeometry-fix.patch -- they've alreadt been applied upstream * qt4_docking is now linked dynamically (Closes: #515045) * Removed "libvlc0-dev | libvlc-dev, and xmms2-dev" from Build-Depends -- *_mediaplayer modules in their current versions use D-Bus to communicate players -- Patryk Cisek Fri, 13 Feb 2009 15:34:33 +0100 kadu (0.6.5.1-4) unstable; urgency=low * Added debian/patches/04-config_wizard_no_data_content.patch -- content of /usr/share/kadu/modules/data/config_wizard/ should not be empty. It should contain some .png files needed by config_wizard module. This patch fixes the bug. -- Patryk Cisek Tue, 10 Feb 2009 09:53:19 +0100 kadu (0.6.5.1-3) unstable; urgency=low * Changed the order of libvlc-dev and libvlc0-dev in Build-Depends -- sbuild failed to build the package when $check_depends_algorithm = "first-only"; in sbuild.conf was set -- Patryk Cisek Sun, 08 Feb 2009 15:14:36 +0100 kadu (0.6.5.1-2) unstable; urgency=low * Moving 0.6.5.1 from experimental to unstable -- Patryk Cisek Mon, 02 Feb 2009 21:30:29 +0100 kadu (0.6.5.1-1) experimental; urgency=low * New upstream release * Added some external modules: mx610_notify, qt4_docking_notify, water_notify, weather * Added libvlc-dev (vlc_mediaplayer module), libxmms2-dev (xmms2_mediaplayer module) and libdbus-1-dev to Build-Depends * Removed debian/patches/04-sound-themes-fix.patch (already applied upstream) -- Patryk Cisek Mon, 26 Jan 2009 16:09:31 +0100 kadu (0.6.5-1) experimental; urgency=low * New upstream release * kadu-kde-modules and kadu-gtk-modules have been removed, since we no longer have any kdelibs/GTK+ dependent modules * Removed kadu-mozilla man page, moved sounds to kadu-themes, updated Kadu Team members list in debian/copyright -- Thanks to Piotr Galiszewski (Kadu Team member) for submitting a patch * Updated Kadu Team members list in debian/copyright * Updated debian/README.source -- Kadu is now cmake based, not autotools * Removed Tango icon theme -- its license (CC-SA 2.5) is not DFSG-compliant * Channged (C) to © in debian/copyright -- Patryk Cisek Mon, 19 Jan 2009 13:18:49 +0100 kadu (0.6.0.2-3) unstable; urgency=high * Now Kadu is linked against libgadu provided by libgadu3 package, instead of the one shipped in Kadu's tarball. This fixes CVE-2008-4776 (Closes: #504429, #504430) -- Patryk Cisek Tue, 04 Nov 2008 15:37:05 +0100 kadu (0.6.0.2-2) unstable; urgency=low [ Patryk Cisek ] * Added copyright notices to manual pages * Backported upstream patch for miastoplusa_sms module, that makes it work again with libcurl liked against libgnutls [ Piotr Ożarowski ] * debian/watch detects all upstream releases now -- Patryk Cisek Sat, 13 Sep 2008 11:25:27 +0200 kadu (0.6.0.2-1) unstable; urgency=low * New upstream release * Added debian/watch file for current stable branch (0.6.0.x) * Added senthistory module to debian/kadu-external-modules.install * Fixed compilation error for non-Linux ports. Since ALSA is Linux-specific, now alsa-sound is compiled only on linux. Used dpkg-architecture in debian/rules for that. * Bumped Standards-Version to 3.8.0 * Added debian/README.source -- Patryk Cisek Wed, 23 Jul 2008 09:54:47 +0200 kadu (0.6.0.1-1) unstable; urgency=low * New upstream release * With this release came 3 additional external modules: autostatus, globalhotkeys and last_seen * Corrected names of the modules in REAME.Debian * Added kadu-gtk-modules package. It holds modules (currently only one: xosd_notify) dependent on libgtk * Added kadu-common package for holding /usr/share data in architecture all package -- Patryk Cisek Fri, 09 May 2008 12:10:43 +0000 kadu (0.6.0-1) unstable; urgency=low * New upstream release * New external modules: anonymous_check, antistring, audacious_mediaplayer, auto_hide, cenzor, osdhints_notify, panelkadu, parser_extender, powerkadu, split_messages, word_fix * Added debian/patches/05-audacious_mediaplayer-spec.patch to fix compilation error in Debian -- Patryk Cisek Sat, 08 Mar 2008 18:59:58 +0100 kadu (0.6.0~rc3.1-1) unstable; urgency=low * Updated Glass and Tango icon themes. This is a fake upstream version because these themes are in external/themes directory, so .orig.tar.gz had to be changed. (Closes: #465869) * Added copyright notices about newly added modules in debian/copyright * Changed Architecture from any to all for kadu-dev * Moved pcspeaker.ui from kadu.install to kadu-external-modules.install and xosd_notify.desc from kadu-external-modules.install to kadu.install * Removed libgadu-dev from Build-Depends * Added debian/patches/04-icedove_email_client.patch to add a support for IceDove mail client. (Closes: #465920) -- Patryk Cisek Sun, 17 Feb 2008 13:52:27 +0000 kadu (0.6.0~rc3-1) unstable; urgency=medium * New upstream release (Closes: #461677) * Updated following external modules: mime_tex * debian/control: - moved Homepage: from long description to a header - Modified Build-Depends - Removed kadu-xmms module due to xmms removal (Closes: #461741) - kadu conflicts with kadu-external-modules (<< 0.6.0~) (new internal modules, see below) - Bumped Standards-Version to 3.7.3 * debian/extract.sh: - Modified due to fit new external modules and themes lists * debian/kadu-external-modules.install: Added following modules: - mime_tex - agent - Mediaplayer - falf_mediaplayer - mx610_notify - water_notify.so removed followinf modules: - advanced_userlist (moved to kadu.install, since it's now an internal module) - ext_info - iwait4u - osdhints_notify (probably only temporally, should be back in 0.6.0) - powerkadu - xmms - xosd_notify (moved to kadu.install, since it's now an internal module) * debian/patches: - Removed 01-libgadu_Makefile.patch - not needed any more - 02-.config.patch updated to fit new .config file and it's list of modules and themes. - 03-about-dialog.patch modified to fit 0.6.0 version of Kadu. - 04-configure_nostrip.patch modified to fit 0.6.0 version of Kadu. Also patch file's name changed to 01-configure-nostrip.patch * debian/rules: - Linking statically against libgadu from Kadu sources -- version of libgadu currently in Debian is too old -- doesn't support dcc7 needed for dcc module. - Removing .o files after unpacking (see mediaplayer tarball). * external: - updated modules and themes to their newest versions. -- Patryk Cisek Thu, 14 Feb 2008 08:08:00 +0000 kadu (0.5.0-4) unstable; urgency=low * debian/control - Fixed packages dependencies to make kadu be binNMU-safe * debian/patches/04-configure_nostrip.patch - Added this patch to prevent from stripping binaries during linkage time (Closes: #437250) * debian/kadu.menu - Section changed to Applications/Network/Communication -- Patryk Cisek Sun, 12 Aug 2007 19:18:48 +0200 kadu (0.5.0-3) unstable; urgency=low * kadu-dcopexport and kadu-amarok modules moved to a separate package kadu-kde-modules due to their dependency on kdelibs. * In copyright notices changed: "Vogel" to "Rafał 'Vogel' Malinowski" (on Rafał's request) -- Patryk Cisek Thu, 07 Jun 2007 10:09:18 +0200 kadu (0.5.0-2) unstable; urgency=low * Just a rebuild against libcurl4-gnutls -- Patryk Cisek Mon, 14 May 2007 20:50:16 +0200 kadu (0.5.0-1) unstable; urgency=low * Initial release * debian/patches: - 01-libgadu_Makefile.patch - make distclean breaks the libgadu sources. This patch avoids deleting libgadu/config.h.in, libgadu/configure and libgadu/aclocal.m4 - 02-.config.patch - This patch selects all modules and all additional icons and emoticons themes (exceptions are encryption and mail modules, which are not selected due to OpenSSL's license vs. GPL incompatibility) - 03-about-dialog.patch - Originally "About..." dialog reads contents of AUTHORS, THANKS, LICENSE and ChangeLog files from the /usr/share/kadu/ directory. These files are moved to /usr/share/doc/kadu/ and this patch makes "About..." dialog read from proper directory. Also ChangeLog is installed as about-changes-tab.txt. * debian/extract.sh: Kadu has a mechanism called "autodownload". It's purpose is to fetch external modules and themes (selected in .config file) by a configure script. This is unacceptable for Debian source package, because such data wouldn't be verifiable. external directory holds all these modules and themes and debian/extract.sh unpacks the tarballs, overriding autodownload mechanism. * Voice module has to be linked against patched version of libgsm to work properly, that's why libgsm is shipped with the module and linked statically. * Contents of all tabs in an "About..." dialog are read directly from AUTHORS, THANKS, LICENSE and (after applying 03-about-dialog.patch) about-changes-tab.txt. That's why these files cannot be gzipped. -- Patryk Cisek Thu, 03 May 2007 15:18:04 +0200 debian/rules0000755000000000000000000000607412251026545010257 0ustar #!/usr/bin/make -f export DH_OPTIONS export DEB_BUILD_HARDENING=1 PKG_DIR=$(shell pwd) BUILD_DIR=$(CURDIR)/build-dir INSTALL_DIR=$(PKG_DIR)/debian/tmp DEB_BUILD_ARCH_OS := $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) configure: configure-stamp configure-stamp: dh_testdir mkdir $(BUILD_DIR) find . -name '*.o' -delete bash debian/handle_external.sh copy # Default to Linux debian/prepare_install_files.sh linux # If kfreebsd or hurd, modify .install files ifeq ($(DEB_BUILD_ARCH_OS), kfreebsd) debian/prepare_install_files.sh non-linux endif ifeq ($(DEB_BUILD_ARCH_OS), hurd) debian/prepare_install_files.sh non-linux endif cd $(BUILD_DIR) && cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr $(PKG_DIR) touch configure-stamp #Architecture build: build-arch build-indep build-arch: build-arch-stamp build-arch-stamp: configure-stamp cd $(BUILD_DIR) && $(MAKE) VERBOSE=1 touch $@ build-indep: build-indep-stamp build-indep-stamp: configure-stamp touch $@ clean: dh_testdir dh_testroot rm -f build-arch-stamp build-indep-stamp configure-stamp test -d $(BUILD_DIR) && cd $(BUILD_DIR) && $(MAKE) clean || true rm -rf $(BUILD_DIR) bash debian/handle_external.sh remove debian/prepare_install_files.sh linux dh_clean install: install-indep install-arch install-indep: dh_testdir dh_testroot dh_prep -i dh_installdirs -i cd $(BUILD_DIR) && $(MAKE) DESTDIR=$(INSTALL_DIR) install # Remove all license files find $(INSTALL_DIR) -name '[lL][iI][cC][eE][nN][sS][eE].txt' -delete # Remove all thumbnails files find $(INSTALL_DIR) -name Thumbs.db -delete rm -f $(INSTALL_DIR)/usr/share/kadu/themes/sounds/bns/sound.conf~ # Move FindKadu.cmake to proper directory mkdir -p $(INSTALL_DIR)/usr/share/cmake-2.8/Modules/ cp $(INSTALL_DIR)/usr/share/cmake/Modules/FindKadu.cmake $(INSTALL_DIR)/usr/share/cmake-2.8/Modules/ dh_install -i install-arch: dh_testdir dh_testroot dh_prep -s dh_installdirs -s cd $(BUILD_DIR) && $(MAKE) DESTDIR=$(INSTALL_DIR) install cp $(INSTALL_DIR)/usr/share/kadu/ChangeLog debian/kadu/usr/share/doc/kadu/about-changes-tab.txt rm -f $(INSTALL_DIR)/usr/share/kadu/modules/data/osd_hints/License dh_install -s # Must not depend on anything. This is to be called by # binary-arch/binary-indep # in another 'make' thread. binary-common: dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installexamples dh_installmenu dh_installman dh_link dh_strip dh_compress -XAUTHORS -XTHANKS -XLICENSE -Xabout-changes-tab.txt dh_fixperms dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb # Build architecture independant packages using the common target. binary-indep: build-indep install-indep $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common # Build architecture dependant packages using the common target. binary-arch: build-arch install-arch $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common binary: binary-arch binary-indep .PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure debian/kadu.desktop0000644000000000000000000000046512251026545011514 0ustar [Desktop Entry] Version=1.0 Name=Kadu Type=Application Icon=kadu Exec=kadu Categories=Network;InstantMessaging;Qt; Terminal=false StartupNotify=true GenericName=Gadu-Gadu/XMPP Client GenericName[pl]=Klient Gadu-Gadu i XMPP Comment=Gadu-Gadu/XMPP protocol client Comment[pl]=Klient protokołu Gadu-Gadu i XMPP debian/README.source0000644000000000000000000000174612251026544011356 0ustar Kadu for Debian --------------- If you want to build Kadu for Debian as it is (meaning; without your own modifications) you simply do the following: $ dpkg-source -x kadu_.dsc It unpacks source package to kadu- directory. Inside it you have the the following: debian - directory containing all data files used by Debian building system to produce .deb files externalplugins - all additional Kadu plug-ins that are in kadu_.orig-externalmodules.tar,bz2 externalthemes - all additional themes that are in kadu_.orig-externalthemes.tar,bz2 So the next step is to build it: $ cd kadu- $ dpkg-buildpackage -us -uc dpkg-buildpackage will build all debs. If you're using Git clone of repository containing packaging for Kadu (see Vcs-Git field in debian/control), you probably want to use debian/build_kadu.sh script for building. -- Patryk Cisek Mon, 21 Feb 2011 09:55:37 +0100 debian/kadu-dev.manpages0000644000000000000000000000003612251026545012404 0ustar debian/manpages/kadu-config.1 debian/kadu.install0000644000000000000000000000467712251027264011521 0ustar debian/kadu.desktop usr/share/applications debian/kadu.xpm /usr/share/pixmaps debian/tmp/usr/bin/kadu debian/tmp/usr/lib/*/kadu/plugins/libantistring.so debian/tmp/usr/lib/*/kadu/plugins/libauto_hide.so debian/tmp/usr/lib/*/kadu/plugins/libautoaway.so debian/tmp/usr/lib/*/kadu/plugins/libautoresponder.so debian/tmp/usr/lib/*/kadu/plugins/libautostatus.so debian/tmp/usr/lib/*/kadu/plugins/libcenzor.so debian/tmp/usr/lib/*/kadu/plugins/libchat_notify.so debian/tmp/usr/lib/*/kadu/plugins/libconfig_wizard.so debian/tmp/usr/lib/*/kadu/plugins/libdesktop_docking.so debian/tmp/usr/lib/*/kadu/plugins/libdocking.so debian/tmp/usr/lib/*/kadu/plugins/libencryption_ng.so debian/tmp/usr/lib/*/kadu/plugins/libencryption_ng_simlite.so debian/tmp/usr/lib/*/kadu/plugins/libexec_notify.so debian/tmp/usr/lib/*/kadu/plugins/libext_sound.so debian/tmp/usr/lib/*/kadu/plugins/libfalf_mediaplayer.so debian/tmp/usr/lib/*/kadu/plugins/libfiledesc.so debian/tmp/usr/lib/*/kadu/plugins/libfirewall.so debian/tmp/usr/lib/*/kadu/plugins/libfreedesktop_notify.so debian/tmp/usr/lib/*/kadu/plugins/libgadu_protocol.so debian/tmp/usr/lib/*/kadu/plugins/libhints.so debian/tmp/usr/lib/*/kadu/plugins/libhistory.so debian/tmp/usr/lib/*/kadu/plugins/libhistory_migration.so debian/tmp/usr/lib/*/kadu/plugins/libidle.so debian/tmp/usr/lib/*/kadu/plugins/libimagelink.so debian/tmp/usr/lib/*/kadu/plugins/libindicator_docking.so debian/tmp/usr/lib/*/kadu/plugins/libjabber_protocol.so debian/tmp/usr/lib/*/kadu/plugins/liblast_seen.so debian/tmp/usr/lib/*/kadu/plugins/libmediaplayer.so debian/tmp/usr/lib/*/kadu/plugins/libmpd_mediaplayer.so debian/tmp/usr/lib/*/kadu/plugins/libmprisplayer_mediaplayer.so debian/tmp/usr/lib/*/kadu/plugins/libpcspeaker.so debian/tmp/usr/lib/*/kadu/plugins/libphonon_sound.so debian/tmp/usr/lib/*/kadu/plugins/libprofiles_import.so debian/tmp/usr/lib/*/kadu/plugins/libqt4_docking.so debian/tmp/usr/lib/*/kadu/plugins/libqt4_docking_notify.so debian/tmp/usr/lib/*/kadu/plugins/libqt4_sound.so debian/tmp/usr/lib/*/kadu/plugins/libscreenshot.so debian/tmp/usr/lib/*/kadu/plugins/libsimpleview.so debian/tmp/usr/lib/*/kadu/plugins/libsingle_window.so debian/tmp/usr/lib/*/kadu/plugins/libsms.so debian/tmp/usr/lib/*/kadu/plugins/libsound.so debian/tmp/usr/lib/*/kadu/plugins/libspeech.so debian/tmp/usr/lib/*/kadu/plugins/libspellchecker.so debian/tmp/usr/lib/*/kadu/plugins/libsql_history.so debian/tmp/usr/lib/*/kadu/plugins/libtabs.so debian/tmp/usr/lib/*/kadu/plugins/libword_fix.so debian/watch0000644000000000000000000000040412251026545010217 0ustar version=3 opts="uversionmangle=s/-(alpha|beta|rc)/~$1/" \ http://www.kadu.net/download/stable/kadu-(.*)\.tar\.bz2 opts="uversionmangle=s/-(alpha|beta|rc)/~$1/" \ http://code.google.com/p/kadu/downloads/list http://kadu.googlecode.com/files/kadu-(.*).tar.bz2 debian/build_kadu.sh0000755000000000000000000000205312251026544011631 0ustar #! /bin/sh # When in clone of Git repository (see Vcs-Git in debian/control), one may use # this script for building Kadu packages set -e n=$(expr $(head -1 debian/changelog | awk '{printf $2}' | /usr/bin/wc -c) - 1) version=$(head -1 debian/changelog | awk '{printf $2}' | cut -b2-$n) upstream_version=$(echo $version | awk -F "-" '{printf $1}') debian_revision=$(echo $version | awk -F "-" '{printf $2}') git clean -d -f -x git reset --hard git co 0.12/upstream-kadu git br -D 0.12/master || true git co -b 0.12/master 0.12/upstream-kadu git merge -m "Merging 0.12/upstream-plugins 0.12/upstream-themes 0.12/debian" \ 0.12/upstream-plugins 0.12/upstream-themes 0.12/debian if [ "$debian_revision" = 1 ]; then # Generate orig-external{plugins,themes}.tar.bz2, but only if it's first # Debian revision for particular upstream version tar c externalplugins | bzip2 -9 > ../kadu_$upstream_version.orig-externalplugins.tar.bz2 tar c externalthemes | bzip2 -9 > ../kadu_$upstream_version.orig-externalthemes.tar.bz2 fi debuild -us -uc -I.git $@ debian/handle_external.sh0000644000000000000000000000112212251026545012655 0ustar #! /bin/sh if [ "$1" = "copy" ]; then for i in externalplugins/*; do cp -r $i plugins done for i in externalthemes/emoticons/*; do cp -r $i varia/themes/emoticons done for i in externalthemes/sounds/*; do cp -r $i varia/themes/sounds done elif [ "$1" = "remove" ]; then for i in externalplugins/*; do rm -rf plugins/${i##*/} done for i in externalthemes/emoticons/*; do rm -rf varia/themes/emoticons/${i##*/} done for i in externalthemes/sounds/*; do rm -rf varia/themes/sounds/${i##*/} done fi debian/copyright0000644000000000000000000001103012251026545011116 0ustar This package was debianized by Patryk Cisek on Wed, 2 May 2007 14:28:08 +0200. It was downloaded from http://kadu.net Note that there are far more contributors in Kadu that the ones listed here. Kadu: Copyright © 2001-2011 Kadu Team anonymous_check plugin: Copyright © 2008-2011 PK Team, Patryk Cisek antistring, auto_hide, cenzor plugins: Copyright © 2007-2011 PK Team Copyright © 2008-2011 Dorregaray autoaway plugin: Copyright © 2007-2011 PK Team autoresponder plugin: Copyright © 2007-2011 PK Team exec_notify plugin: Copyright © 2004-2011 Marcin Slusarz autostatus plugin: Copyright © 2007-2011 PK Team Copyright © 2008-2011 Dorregaray falf_mediaplayer plugin: Copyright © 2004-2011 Googie Copyright © 2004-2011 amdfanatyk filedesc, screenshot plugins: Copyright © 2004-2011 Googie gadu_protocol, growl_notify, hints, history, history_migration, idle, jabber_protocol, phonon_sound, profiles_import, single_window, sms, sound, speech plugins: Copyright © 2004-2011 Kadu Team imagelink plugin: Copyright © 2010-2011 NeoX freedesktop_notify plugin: Copyright © 2009-2011 Jacek Jabłoński Copyright © 2009-2011 Kadu Team mpd_mediaplayer plugin: Copyright © 2009-2011 badboy mprisplayer_mediaplayer plugin: Copyright © 2009-2011 dianet mediaplayer plugin: Copyright © 2004-2011 Googie Copyright © 2004-2011 amdfanatyk Copyright © 2004-2011 Dorregaray encryption_ng, encryption_ng_simlite plugins: Copyright © 2009-2011 Kadu Team ext_sound plugin: Copyright © 2004-2011 Kadu Team next_info plugin: Copyright © 2004-2011 Piotr "ultr" Dąbrowski firewall plugin: Copyright © 2005-2011 Wojtek Sulewski Copyright © 2005-2011 Attis Copyright © 2005-2011 Kadu Team globalhotkeys plugin: Copyright © 2008-2011 Piotr "ultr" Dąbrowski last_seen plugin: Copyright © 2007-2011 PK Team Copyright © 2008-2011 Dorregaray led_notify plugin: Copyright © 2004-2011 Blysk Copyright © 2004-2011 Piotr "ultr" Dąbrowski config_wizard, desktop_docking, plugins: Copyright © 2004-2011 Tomasz Rostanski messagessplitter plugin: Copyright © 2007-2011 PT Team Copyright © 2008-2011 Dorregaray Copyright © 2008-2011 Piotr "ultr" Dąbrowski mimeTeX (used by mime_tex plugin): Copyright © 2002-2011 John Forkosh Associates, Inc. mime_tex plugin: Copyright © 2008-2011 Agnieszka Cicha Copyright © 2007-2011 Patryk Cisek panelkadu plugin: Copyright © 2008-2011 Piotr "ultr" Dąbrowski pcspeaker plugin: Copyright © 2004-2011 Tomasz Rostanski Copyright © 2004-2011 Kadu Team qt4_docking, qt4_docking_notify, qt4_sound plugin: Copyright © 2007-2011 Kadu Team simpleview plugin: Copyright © 2007-2011 prudy spellchecker plugin: Copyright © 2004-2011 nazgul Copyright © 2005-2011 Googie Copyright © 2005-2011 Kadu Team sql_history plugin: Copyright © 2006-2011 Kadu Team Copyright © 2006-2011 Juzef tabs plugin: Copyright © 2005-2011 Michal Podsiadlik Copyright © 2005-2011 Kadu Team word_fix plugin: Copyright © 2007-2011 PT Team Copyright © 2008-2011 Dorregaray glass16, glass icon themes: Copyright © 2006-2011 Mariusz Waluga penguins emoticons theme: Copyright © 2006-2011 Kamil Dziedzic Copyright © 2006-2011 Lukasz Florczak Copyright © 2006-2011 Mariusz Waluga Copyright © 2006-2011 Karolina Weiss Copyright © 2006-2011 Hubert Wrzesinki Active members of Kadu Team (in an alphabetical order) are: Bartosz Brachaczek Piotr Galiszewski Rafal Malinowski Tomasz Rostański Wojciech Treter Not anymore active members of Kadu Team (in an alphabetical order) are: Tomasz Chilinski Dariusz Jagodzik Tomasz Jarzynka Roman Krzystyniak Piotr Pełzowski Michal Podsiadlik Pawel Płuciennik Adrian Smarzewski Dawid Stawiarski Marcin Ślusarz Bartłomiej Zimoń Members of PK Team (in an alphabetical order) are: Patryk Cisek Googie Graffi Marek Kubicki Maverick The Debian packaging is © 2007, 2008, 2009, 2010, 2011 Patryk Cisek and is licensed under the GPL version 3 or any later. License: This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. On Debian GNU/Linux system, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3'. debian/kadu-themes.install0000644000000000000000000000074512251026545012775 0ustar debian/tmp/usr/share/kadu/themes/emoticons/gg6_compatible debian/tmp/usr/share/kadu/themes/emoticons/tango debian/tmp/usr/share/kadu/themes/icons/glass debian/tmp/usr/share/kadu/themes/icons/oxygen debian/tmp/usr/share/kadu/themes/sounds/bns debian/tmp/usr/share/kadu/themes/sounds/drums debian/tmp/usr/share/kadu/themes/sounds/florkus debian/tmp/usr/share/kadu/themes/sounds/michalsrodek debian/tmp/usr/share/kadu/themes/sounds/percussion debian/tmp/usr/share/kadu/themes/sounds/ultr debian/kadu.xpm0000644000000000000000000001422412251026545010645 0ustar /* XPM */ static char * kadu_xpm[] = { "32 32 254 2", " c None", ". c #E1BF01", "+ c #DBBD00", "@ c #EFCC00", "# c #C2A500", "$ c #E3C500", "% c #F2D300", "& c #F1D200", "* c #726301", "= c #CEAF01", "- c #DDBE01", "; c #F6D800", "> c #F6D700", ", c #DABE00", "' c #AF9701", ") c #D1B601", "! c #B19F01", "~ c #F8DE00", "{ c #F0D600", "] c #635801", "^ c #B7A001", "/ c #F4D400", "( c #EFD200", "_ c #B6A301", ": c #E5CD00", "< c #FBE000", "[ c #FCE100", "} c #FADF00", "| c #EBD100", "1 c #C8AE01", "2 c #C4A701", "3 c #DEBC01", "4 c #DAB801", "5 c #DDB700", "6 c #A88C02", "7 c #BBA301", "8 c #F7DD00", "9 c #EED500", "0 c #EFD600", "a c #FDE300", "b c #FEE700", "c c #FFE700", "d c #FEE500", "e c #FDE200", "f c #F9DF00", "g c #F7DB00", "h c #F0D100", "i c #E5C700", "j c #EFCE00", "k c #EFCA00", "l c #EDC800", "m c #E8C200", "n c #7A6502", "o c #6F6101", "p c #F7DC00", "q c #FCE200", "r c #FEE600", "s c #FFEA00", "t c #FFEA01", "u c #FFEA02", "v c #FFE900", "w c #FEE400", "x c #FBE100", "y c #F6DA00", "z c #EFCB00", "A c #9C8401", "B c #504401", "C c #CCB601", "D c #FFEA03", "E c #FBEC1D", "F c #EBF177", "G c #F2EF51", "H c #FFEA04", "I c #F3EE48", "J c #EAED73", "K c #F7E214", "L c #F5D600", "M c #CDB001", "N c #000000", "O c #D7C100", "P c #FDEB12", "Q c #DFF8DF", "R c #DAFBFF", "S c #F0F16D", "T c #F4EF55", "U c #DBFBFE", "V c #E1F5CE", "W c #F8DF04", "X c #F3D300", "Y c #ECCC00", "Z c #4C4101", "` c #FAE000", " . c #F5F163", ".. c #E5FCFF", "+. c #E8F9DE", "@. c #EBF7C2", "#. c #F3E642", "$. c #F0D000", "%. c #CBAC00", "&. c #D5BE00", "*. c #F7F381", "=. c #EFFDFF", "-. c #E3F0F2", ";. c #EAF7FA", ">. c #EFFDFC", ",. c #F1FAE1", "'. c #EEFBFD", "). c #F5EA62", "!. c #F7DA00", "~. c #ECD300", "{. c #FDF15B", "]. c #D9DDDE", "^. c #0C0C0C", "/. c #323333", "(. c #FAFBD6", "_. c #FBF9C1", ":. c #535556", "<. c #070707", "[. c #C7CBCC", "}. c #F8E642", "|. c #D9B701", "1. c #BD9E00", "2. c #BEA101", "3. c #EEC900", "4. c #EAC700", "5. c #B9A101", "6. c #C7AD00", "7. c #FFEB0C", "8. c #DBD7AA", "9. c #090909", "0. c #2D2D2B", "a. c #FFF159", "b. c #FFF153", "c. c #4F4F4E", "d. c #050505", "e. c #C7C295", "f. c #F0CF00", "g. c #E9C200", "h. c #E7BF00", "i. c #AC8E01", "j. c #A88D01", "k. c #DBB900", "l. c #F3D400", "m. c #F6D900", "n. c #FFEB0F", "o. c #EADC44", "p. c #F5E42A", "q. c #FAEA41", "r. c #E8D95B", "s. c #FAE213", "t. c #EFCD00", "u. c #EECA00", "v. c #ECC700", "w. c #E8C000", "x. c #E6BE00", "y. c #B29301", "z. c #473C01", "A. c #E5C200", "B. c #F5D500", "C. c #DAB800", "D. c #8C7400", "E. c #CDAA00", "F. c #DAB400", "G. c #362E00", "H. c #A28A00", "I. c #CAB000", "J. c #6B5B01", "K. c #0C0A00", "L. c #625100", "M. c #C0A700", "N. c #E9BD00", "O. c #EDCA00", "P. c #EBC600", "Q. c #2E2701", "R. c #7D6D01", "S. c #D99D00", "T. c #B95A00", "U. c #DA9E00", "V. c #F0CE00", "W. c #E6B700", "X. c #C16B00", "Y. c #B24B00", "Z. c #C3A301", "`. c #D4B600", " + c #AD3B00", ".+ c #950000", "++ c #960100", "@+ c #9E0F00", "#+ c #A51B00", "$+ c #A00E00", "%+ c #9B0000", "&+ c #A10D00", "*+ c #E3B100", "=+ c #EAC400", "-+ c #786301", ";+ c #625401", ">+ c #EFCF00", ",+ c #F2D200", "'+ c #EDC500", ")+ c #C53200", "!+ c #BC0000", "~+ c #BE0000", "{+ c #C00000", "]+ c #C10000", "^+ c #C50F00", "/+ c #E29A00", "(+ c #C8A600", "_+ c #615201", ":+ c #E78100", "<+ c #E54500", "[+ c #E73B00", "}+ c #E86200", "|+ c #EDB600", "1+ c #E8BF00", "2+ c #786401", "3+ c #C9A601", "4+ c #E5BF00", "5+ c #EBC700", "6+ c #EBC500", "7+ c #E7C000", "8+ c #937901", "9+ c #9C8101", "0+ c #9A7F01", "a+ c #D1AD01", "b+ c #E0BB00", "c+ c #7A6701", "d+ c #857001", "e+ c #D8B600", "f+ c #E6C000", "g+ c #B39400", "h+ c #3B3101", "i+ c #060500", "j+ c #806A01", "k+ c #C09F01", "l+ c #A48801", "m+ c #987E01", "n+ c #877001", "o+ c #292201", "p+ c #020200", "q+ c #3A3101", "r+ c #B19300", "s+ c #E2BB00", "t+ c #282101", "u+ c #A78A01", "v+ c #B39401", "w+ c #5C4C00", "x+ c #C6A400", "y+ c #5A4B02", "z+ c #BE9D01", "A+ c #826C00", "B+ c #E4BD00", "C+ c #987E00", "D+ c #B79701", "E+ c #C09F00", " ", " . ", " + @ # ", " $ % & * ", " = - ; > , ", " ' & ) ! ~ ~ { ] ", " ^ / ( _ : < [ < } ~ | 1 2 3 4 5 6 ", " 7 > 8 9 0 a b c b d e < f g h i j k l m n ", " o p f q r s t u u t v w x ~ y / h z A B ", " C [ r t D E F G H u I J K 8 L % M N ", " O e v u P Q R R S T U R V W ; X Y Z ", " ` w t H .......+.@.......#.y / $.%. ", " &.< d t H *.=.-.;.>.,.'.-.=.).!./ h z ", " ~.` w t H {.].^./.(._.:.<.[.}.y / $.z |.1. ", " 2.3.4.5.6.g } e v u 7.8.9.0.a.b.c.d.e.W ; X f.k l g.h.i. ", " j.k.z $.l.m.~ [ r t D n.o.p.H u q.r.s.8 L % t.u.v.w.h.x.y. ", " z.A.t.% B.p f [ r s t u u t v w x ~ y / h z 3.C.D.E.h.F. ", " G.H.I.X > 8 } [ a r c b d e < f g B.% j k l J.N K.L. ", " N M./ ; 8 f } x [ [ < } ~ g L N.O.z 3.P.Q. ", " R.& / L y S.T.U.V.~ p ; W.X.Y.@ u.v.Z. ", " `.h % / / +.+++@+#+$+%+&+*+u.l =+-+ ", " ;+@ >+h ,+'+)+!+~+{+]+^+/+u.l =+w.(+ ", " _+3.k z t.j z :+<+[+}+|+3.v.=+1+h.h.2+ ", " 3+4+5+l 3.u.k k k u.3.l v.6+7+8+9+h.h.0+ ", " a+h.h.w.b+c+d+e+v.v.v.P.=+f+g+h+N i+5 h.j+ ", " k+l+m+n+o+N N p+q+r+w.1+s+t+N u+h.v+ ", " w+h.h.x+N y+ ", " z+h.h.A+ ", " B+x.C+ ", " D+E+ ", " ", " "}; debian/compat0000644000000000000000000000000212251026544010365 0ustar 5 debian/kadu.dirs0000644000000000000000000000002312251026545010772 0ustar usr/share/doc/kadu debian/manpages/0000755000000000000000000000000012251026545010763 5ustar debian/manpages/kadu-config.10000644000000000000000000000503512251026545013237 0ustar .TH KADU 1 .SH NAME kadu-config \- script to get information about the installed version of kadu .SH SYNOPSIS .B kadu\-config [\-\-prefix\fI[=DIR]\fP] [\-\-exec\-prefix\fI[=DIR]\fP] [\-\-version] [\-\-libs] [\-\-cflags] [\-\-data\-dir] [\-\-modules\-dir] [\-\-qt\-moc\-dir] .br .SH DESCRIPTION \fIkadu\-config\fP is a tool for retrieving the library/include paths \fIkadu\fP was compiled with. Useful for folks compiling their own Kadu modules outside the main source tree. .PP \fIkadu-config\fP is based on \fIxmms\-config\fP from the \fIXMMS\fP package. .SH OPTIONS \fIkadu-config\fP accepts the following options: .TP .B \-\-prefix\fI[=DIR]\fP If specified, use \fIDIR\fP instead of the installation prefix that \fIkadu\fP was built with when computing the output for the \-\-cflags and \-\-libs options. This option is also used for the exec prefix if \-\-exec\-prefix was not specified. This option must be specified before any \-\-libs or \-\-cflags options. .TP .B \-\-exec\-prefix\fI[=DIR]\fP If specified, use \fIDIR\fP instead of the installation exec prefix that \fIkadu\fP was built with when computing the output for the \-\-cflags and \-\-libs options. This option must be specified before any \-\-libs or \-\-cflags options. .TP .B \-\-version Print the currently installed version of \fIkadu\fP on the standard output. .TP .B \-\-libs Print the linker flags that are necessary to link \fIkadu\fP to a program. .TP .B \-\-cflags Print the compiler flags that are necessary to compile a program that uses \fIkadu\fP. .TP .B \-\-data\-dir Print the directory that the \fIkadu\fP\'s icons, emoticons and sounds themes are installed in. .TP .B \-\-modules\-dir Print the directory that the \fIkadu\fP\'s modules keep their description and data files. .TP .B \-\-qt\-moc\-dir Print the directory that the \fIQt\fP\'s moc compiler is installed in. .SH AUTHOR \fIkadu\fP was written by Kadu Team (see /usr/share/kadu/doc/AUTHORS file for details). .PP Copyright (C) 2007, 2008 Patryk Cisek .PP This manual page was written by Patryk Cisek for the Debian project, based heavily on the \fIxmms-config\fP manual by Christopher Martin and may be used by others. This manual may be distributed under the terms of GPL license version 2, or (at your opinion) any later version. On Debian GNU/Linux system, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. If you're not using Debian, you may also find full text of the license at http://www.gnu.org/licenses/. debian/manpages/kadu.10000644000000000000000000000264712251026545012002 0ustar .TH KADU 1 .SH NAME kadu\ \- instant messenger for Gadu\-Gadu protocol .SH SYNOPSIS .B kadu .SH DESCRIPTION Gadu\-Gadu is very popular instant messenger for MS Windows in Poland. \fIkadu\fP is Gadu\-Gadu's client for Unix-like systems. The most complete documentations of \fBkadu\fP and related modules is at the project's home page at: .br \fIhttp://www.kadu.net\fP .SH ENVIRONMENT On startup \fIkadu\fP chacks if \fB$CONFIG_DIR\fP variable is set. If not, \fIkadu\fP will use default directory (which is \fI$HOME/.kadu\fP) to store it's configuration files. However, one may wish to run another instance of \fIkadu\fP, for different Gadu-Gadu account, on the same system account. In such case, one needs to set \fB$CONFIG_DIR\fP so it points to the directory that is supposed to hold configuration files for the other account. .SH AUTHOR kadu was written by Kadu Team (see /usr/share/kadu/doc/AUTHORS file for details). .PP Copyright (C) 2007, 2008 Patryk Cisek .PP This manual page was written by Patryk Cisek , for the Debian project (but may be used by others). It may be distributed under the terms of GPL license version 2, or (at your opinion) any later version. On Debian GNU/Linux system, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. If you're not using Debian, you may also find full text of the license at http://www.gnu.org/licenses/. debian/README.Debian0000644000000000000000000000245212251026544011233 0ustar Kadu for Debian --------------- When compiling Kadu from sources we are able to select which plugins we want to compile by editing .config file located in Kadu's source tree. This file is than parsed during cmake run. Some of these plugins are located in Kadu's source tree, and some (the ones not officially included, or developed by external developers) are not. These external plugins are downloaded during cmake run, than compiled (when executing make) and finally installed (when executing make install). In Debian these plugins are in kadu-external-plugins package. Currently we have following external plugins plugins: * AnonymousCheck: Adds ability to automatically search for a contact in public directory in case the interlocutor is not on our contact list. Previously part of PowerKadu. Now it's separate plugin. * GlobalHotKeys: Adds global hotkeys support to Kadu. * LEDNotify: Notification by Scroll Lock LED. * MimeTeX: Adds ability to send gif images containing mathematical formulas easily edited by built-in graphical editor. * NextInfo: Adds additional information about contacts. * PanelKadu: Turns Kadu's main window into a desktop panel. * SentHistory: Adds history of sent messages to chat windows. -- Patryk Cisek Mon, 21 Feb 2011 11:17:54 +0100