From 9b2075d9b89fc628c447fbb98f43ef72e4a9c81d Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 16:17:43 -0500 Subject: Initial import from old SVN repository Note that only the Debian and Ubuntu folders were preserved --- .../konversation/debian/cdbs/buildvars.mk | 86 ++ .../konversation/debian/cdbs/debian-qt-kde.mk | 109 ++ .../applications/konversation/debian/cdbs/kde.mk | 97 ++ .../konversation/debian/cdbs/team-members | 16 + .../konversation/debian/cdbs/uploaders.mk | 29 + .../konversation/debian/cdbs/versions.pl | 19 + .../applications/konversation/debian/changelog | 1268 ++++++++++++++++++++ .../applications/konversation/debian/compat | 1 + .../applications/konversation/debian/control | 44 + .../applications/konversation/debian/copyright | 87 ++ .../konversation/debian/konversation-kde3.docs | 2 + .../konversation/debian/konversation-kde3.install | 24 + .../konversation/debian/konversation-kde3.manpages | 1 + .../konversation/debian/konversation-kde3.menu | 9 + .../konversation/debian/konversation16x16.xpm | 207 ++++ .../konversation/debian/konversation32x32.xpm | 524 ++++++++ .../konversation/debian/man/konversation.1.docbook | 214 ++++ .../man/konversationircprotocolhandler.1.docbook | 95 ++ .../konversation/debian/patches/.gitignore | 0 .../applications/konversation/debian/rules | 46 + 20 files changed, 2878 insertions(+) create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/cdbs/buildvars.mk create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/cdbs/debian-qt-kde.mk create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/cdbs/kde.mk create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/cdbs/team-members create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/cdbs/uploaders.mk create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/cdbs/versions.pl create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/changelog create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/compat create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/control create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/copyright create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.docs create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.install create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.manpages create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.menu create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/konversation16x16.xpm create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/konversation32x32.xpm create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/man/konversation.1.docbook create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/man/konversationircprotocolhandler.1.docbook create mode 100644 ubuntu/lucid_automake/applications/konversation/debian/patches/.gitignore create mode 100755 ubuntu/lucid_automake/applications/konversation/debian/rules (limited to 'ubuntu/lucid_automake/applications/konversation/debian') diff --git a/ubuntu/lucid_automake/applications/konversation/debian/cdbs/buildvars.mk b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/buildvars.mk new file mode 100644 index 000000000..23d4709dc --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/buildvars.mk @@ -0,0 +1,86 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2002,2003 Colin Walters +# Description: Defines some useful variables, but no rules +# +# This program 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, or (at +# your option) any later version. +# +# This program 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. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_buildvars +_cdbs_rules_buildvars = 1 + +CDBS_VERSION = something + +# Common useful variables +DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':')) +DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') +DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) +DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') +DEB_ISNATIVE := $(shell dpkg-parsechangelog | egrep '^Version:' | perl -ne 'print if not /^Version:\s*.*-/;') + +# Split into arch/indep packages +ifneq ($(DEB_INDEP_PACKAGES),cdbs) +DEB_INDEP_PACKAGES := $(filter-out $(DONT_BUILD), $(strip $(shell $(_cdbs_scripts_path)/list-packages indep))) +DEB_ARCH_PACKAGES := $(filter-out $(DONT_BUILD), $(filter-out $(DEB_INDEP_PACKAGES),$(strip $(shell $(_cdbs_scripts_path)/list-packages same)))) +endif +# Split into normal and udeb packages +ifeq ($(DEB_UDEB_PACKAGES),) +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +DEB_UDEB_PACKAGES = $(filter-out $(DONT_BUILD),$(filter %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +else +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES), $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +endif +# Too much bother for now. If someone complains we'll fix it. +#DEB_ARCH_UDEB_PACKAGES = $(filter %-udeb, $(DEB_ARCH_PACKAGES)) +#DEB_INDEP_UDEB_PACKAGES = $(filter %-udeb, $(DEB_INDEP_PACKAGES)) +# A handy list of every package, udeb or not +DEB_ALL_PACKAGES = $(filter-out $(DONT_BUILD),$(DEB_PACKAGES) $(DEB_UDEB_PACKAGES)) +DEB_INDEP_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_INDEP_PACKAGES))) +DEB_ARCH_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_ARCH_PACKAGES))) + +DEB_DBG_PACKAGES = $(filter-out $(DONT_BUILD), $(filter %-dbg, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) + +# Some support for srcdir != builddir builds. +# These are relative to the root of the package +DEB_SRCDIR ?= . +DEB_BUILDDIR ?= $(strip $(DEB_SRCDIR)) + +# Miscellaneous bits +DEB_ARCH = $(shell dpkg --print-architecture) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) +DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) +DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) + +ifeq ($(words $(DEB_ALL_PACKAGES)),1) + DEB_DESTDIR = $(CURDIR)/debian/$(strip $(DEB_ALL_PACKAGES))/ +else + DEB_DESTDIR = $(CURDIR)/debian/tmp/ +endif + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.23-1.1) + +endif diff --git a/ubuntu/lucid_automake/applications/konversation/debian/cdbs/debian-qt-kde.mk b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..2be8f97f1 --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,109 @@ +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_debian-qt-kde +_cdbs_class_debian-qt-kde := 1 + +# Note: This _must_ be included before autotools.mk, or it won't work. +common-configure-arch common-configure-indep:: debian/stamp-cvs-make +debian/stamp-cvs-make: + cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in + cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh + $(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist; + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) +include debian/cdbs/uploaders.mk + +DEB_PATCHDIRS := debian/patches/common debian/patches + +DEB_KDE_ENABLE_FINAL := yes +DEB_INSTALL_DOCS_ALL := + +DEB_DH_MAKESHLIBS_ARGS_ALL := -V +DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib) + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) + else + cdbs_kde_enable_final = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +common-binary-indep:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_INDEP_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +common-binary-arch:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_ARCH_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +clean:: + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -rf debian/shlibs-check + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/opt/kde3/share/doc/kde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/kde3/share/doc/kde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/kde3/share/doc/kde/HTML/en/$$pkg; \ + /opt/kde3/bin/meinproc $(DEB_DESTDIR)/opt/kde3/share/doc/kde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/kde3/share/doc/kde/HTML/en/$$pkg; \ + done + +clean:: + if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \ + cd $(DEB_SRCDIR); \ + find . -name Makefile.in -print | \ + xargs --no-run-if-empty rm -f; \ + rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \ + configure configure.files configure.in stamp-h.in \ + subdirs; \ + fi + rm -f debian/stamp-cvs-make + +endif diff --git a/ubuntu/lucid_automake/applications/konversation/debian/cdbs/kde.mk b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/kde.mk new file mode 100644 index 000000000..9e4117558 --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/kde.mk @@ -0,0 +1,97 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Christopher L Cheney +# Description: A class for KDE packages; sets KDE environment variables, etc +# +# This program 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, or (at +# your option) any later version. +# +# This program 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. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_kde +_cdbs_class_kde := 1 + +# for dh_icons +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) + +export kde_cgidir = \$${libdir}/cgi-bin +export kde_confdir = \$${sysconfdir}/kde3 +export kde_htmldir = \$${datadir}/doc/kde/HTML + +ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) +endif + +ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = + cdbs_kde_enable_debug = --enable-debug=yes +else + cdbs_kde_enable_debug = --disable-debug +endif + +ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_debug = --enable-debug=full +endif + +cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/kde" +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi + +cleanbuilddir:: + -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) + +common-build-arch common-build-indep:: debian/stamp-kde-apidox +debian/stamp-kde-apidox: + $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) + touch $@ + +common-install-prehook-impl:: + mkdir -p po + -XGETTEXT=/usr/bin/kde-xgettext EXTRACTATTR=/opt/kde3/bin/extractattr sh $(DEB_SRCDIR)/admin/cvs.sh extract-messages + -for file in po/*pot; do \ + sed "s/charset=CHARSET/charset=UTF-8/" -i $$file; \ + done + +common-install-arch common-install-indep:: common-install-kde-apidox +common-install-kde-apidox:: + $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) + +clean:: + rm -f debian/stamp-kde-apidox + rm -rf po/*.pot + +# This is a convenience target for calling manually. It's not part of +# the build process. +buildprep: clean apply-patches + $(MAKE) -f admin/Makefile.common dist + debian/rules clean + +endif diff --git a/ubuntu/lucid_automake/applications/konversation/debian/cdbs/team-members b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/team-members new file mode 100644 index 000000000..05761af6e --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/team-members @@ -0,0 +1,16 @@ +Sune Vuorela +Ana Beatriz Guerrero Lopez +Fathi Boudra +Modestas Vainius +Josh Metzler +Isaac Clerencia +Adeodato Simó +Adeodato Simo +Christopher Martin +Daniel Schepler +Sarah Hobbs +Nacho Barrientos Arias +Ricardo Javier Cardenes Medina +Ricardo Cardenes +Armin Berres +Francesco Pedrini diff --git a/ubuntu/lucid_automake/applications/konversation/debian/cdbs/uploaders.mk b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/uploaders.mk new file mode 100644 index 000000000..31adfe31e --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/uploaders.mk @@ -0,0 +1,29 @@ + +MAINTAINER=Debian Qt/KDE Maintainers +UPLOADERS=$(shell grep -e +++ -e "^ -- " debian/changelog | grep -v "debian-qt-kde@lists.debian.org" | head -13 | /bin/sed 's/^\s*//;s/\s*$$//;s/^+++\? Changes by //;s/^+++\? //;s/-- //;s/:$$//;s/ <.*//' | sort -u | while read line ; do grep "$$line" debian/cdbs/team-members ; done | tr "\n" ", " | sed 's/,/, /g;s/, $$//') + + +debian/control.tmp: + @if [ ! -e debian/control.in ] ; then \ + echo "this package is not yet prepared for using automatic update of uploaders"; \ + echo "Please do so."; \ + exit 1; \ + fi + @sed 's/@@@UPLOADERS@@@/$(UPLOADERS)/;s#@@@MAINTAINER@@@#$(MAINTAINER)#' debian/control.in > debian/control.tmp + +check-uploaders: debian/control.tmp + @if ! diff -q debian/control debian/control.tmp ; then \ + echo "WARNING:: Control file differs from manually generated one" ; \ + echo "WARNING:: Please update it manually and check it afterwards" ; \ + echo "WARNING:: Uploaders are updated by debian/rules update-uploaders" ;\ + echo "WARNING:: If this is a binNMU, NMU or security upload, just ignore" ;\ + fi + + +clean:: + rm -f debian/control.tmp + +update-uploaders: debian/control.tmp + @mv -f debian/control.tmp debian/control + +makebuilddir:: check-uploaders diff --git a/ubuntu/lucid_automake/applications/konversation/debian/cdbs/versions.pl b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/cdbs/versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; +my ($version3, $version3_next); +my ($version2, $version2_next); + +($version3 = $version) =~ s/-[^-]+$//; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "KDE-Version3=$version3\n"; +print "KDE-Version2=$version2\n"; +print "KDE-Next-Version3=$version3_next\n"; +print "KDE-Next-Version2=$version2_next\n"; diff --git a/ubuntu/lucid_automake/applications/konversation/debian/changelog b/ubuntu/lucid_automake/applications/konversation/debian/changelog new file mode 100644 index 000000000..c53104f11 --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/changelog @@ -0,0 +1,1268 @@ +konversation-kde3 (1.1-0ubuntu3) karmic; urgency=low + + * Karmic rebuild + + -- Timothy Pearson Thu, 02 July 2009 16:08:00 -0600 + +konversation-kde3 (1.1-0ubuntu2) intrepid; urgency=low + + * Moved KDE3 to /opt/kde3 + * Integrated properly with KDE4.2+ + + -- Timothy Pearson Fri, 06 March 2009 01:35:00 -0600 + +konversation-kde3 (1.1-0ubuntu1) intrepid; urgency=low + + * Added -kde3 suffix + + -- Timothy Pearson Sun, 14 Dec 2008 14:31:00 -0600 + +konversation (1.1-0ubuntu2.1) intrepid-proposed; urgency=low + + * Reapply kubuntu_05_default_channels.diff dropped in 1.0.1-6ubuntu1. + * Removed 10_debian_channel.diff added in 1.0.1-6ubuntu1. + * Re-add missing changelog entries that went into a black hole. + * Kubuntu people now go to #kubuntu, not #debian again (LP: #218958), + even without kubuntu-default-settings installed. + * This merge should now be correct. + + -- Sarah Hobbs Tue, 04 Nov 2008 13:53:43 +1100 + +konversation (1.1-0ubuntu2) intrepid; urgency=low + + * Run buildprep before upload + + -- Jonathan Riddell Thu, 21 Aug 2008 10:08:33 +0100 + +konversation (1.1-0ubuntu1) intrepid; urgency=low + + * New upstream release (LP: #256733) + * Bump Standards-Version up to 3.8.0 + * Added po/*/konversation.gmo to the build clean target + + -- Jonathan Thomas (The man) Sun, 10 Aug 2008 17:19:20 -0400 + +konversation (1.0.1-6ubuntu1) intrepid; urgency=low + + * Merge with Debian, remaining change just the .orig md5sum, closes LP: #226180 + + -- Richard Birnie Wed, 07 May 2008 13:46:21 +0100 + +konversation (1.0.1-6) unstable; urgency=low + + [ Modestas Vainius ] + * Move Homepage stanza to debian/control source section. + * Bump Standards-Version to 3.7.3.0 + * Add DM-Upload-Allowed: yes to debian/control source section. + * Enhance 16_konversation_desktop.diff patch - remove Encoding field from + konversation.desktop too. + + -- Debian KDE Extras Team Tue, 04 Mar 2008 18:40:56 +0200 + +konversation (1.0.1-5) unstable; urgency=low + + [ Modestas Vainius ] + * Drop hackish docs removal stuff from debian/rules. There is a less + hackish way to achieve the same thing (i.e. not to installing upstrem + README) which should not cause problems with dash as /bin/sh + (Closes: #459159). + * New patches from 1.0.1-4ubuntu2: + * Add unfuzzed kubuntu_02_serverlist_compiz_workaround.patch as + 17_serverlist_compiz_workaround.diff. The patch comes from + upstream r604746 (KDE Bug #147557). + * I'm adding back kubuntu_01_kdepot.diff because it does not hurt and now + I understand how it helps for Ubuntu. + + -- Debian KDE Extras Team Mon, 21 Jan 2008 12:22:36 +0200 + +konversation (1.0.1-4ubuntu6) hardy; urgency=low + + * Edit 10_debian_channel.diff, renamed to + kubuntu_05_default_channels.diff, to default to #kubuntu. + (LP: #218958) + * Add this, and previous patch, to debian/patches/series, so they actually + apply + + -- Sarah Hobbs Fri, 18 Apr 2008 16:16:47 +1000 + +konversation (1.0.1-4ubuntu5) hardy; urgency=low + + * Added kubuntu_04_dcc_crash.diff to prevent Konversation from crashing + when a DCC Chat request is sent. (LP: #60898) + * Fixed in KDE SVN r605705 + + -- Guillaume Martres Sat, 12 Apr 2008 23:47:08 +0200 + +konversation (1.0.1-4ubuntu4) hardy; urgency=low + + * Fixed kubuntu_03_osd_kde4.diff + - Closes LP: #209368 + + -- Anthony Mercatante Tue, 08 Apr 2008 15:36:00 +0200 + +konversation (1.0.1-4ubuntu3) hardy; urgency=low + + * Added kubuntu_03_osd_kde4.diff, fixes OSD issue on the KDE4 desktop. + Patch from svn. + + -- Anthony Mercatante Tue, 11 Mar 2008 15:40:59 +0100 + +konversation (1.0.1-4ubuntu2) gutsy; urgency=low + + * Add kubuntu_02_serverlist_compiz_workaround.patch from upstream. + (KDE Bug #147557) + * Removed 98_buildprep.diff as we dont tend to use these in ubuntu. + Fixes FTBFS + * Added build-dep automake1.9 to fix FTBFS + + -- Sarah Hobbs Mon, 15 Oct 2007 22:08:45 +1000 + +konversation (1.0.1-4ubuntu1) gutsy; urgency=low + + * Merge with Debian for CVE patch, remaining change: + - kubuntu_01_kdepot.diff patch + + -- Jonathan Riddell Thu, 30 Aug 2007 11:17:04 +0100 + +konversation (1.0.1-4) unstable; urgency=low + + [ Modestas Vainius ] + * Add new patches: + - 15_CVE-2007-4400.diff to fix CVE-2007-4400 vulnerability. + The patch is based on upstream SVN commits #602433 and #602435 + (Closes: #439837). + - 16_konversation_desktop.diff to remove X-SuSE-IRCClient from + konversation.desktop Categories to shut lintian up. + * Change Debian menu section to Applications/Network/Communication. + + -- Debian KDE Extras Team Thu, 30 Aug 2007 12:07:06 +0300 + +konversation (1.0.1-3ubuntu1) gutsy; urgency=low + + [ Jonathan Riddell ] + * Drop channel patch, default channel is changed in kubuntu-default-settings + and it can fall back to freenode if that's not installed + + [ Frode M. Døving ] + * Mergeing from Debian. See changelog entries below. + A big thank you goes to the Debian KDE Extras Team, you rock! + * Remaining change: kubuntu_01_kdepot.diff + * Change maintainer address to ubuntu-core-dev. + + -- Frode M. Døving Wed, 25 Jul 2007 22:25:27 +0200 + +konversation (1.0.1-3) unstable; urgency=low + + [ Modestas Vainius ] + * Documentation is provided under the terms of GNU GFDL with no Invariant + Sections, no Front-Cover Texts, and no Back-Cover Texts. Mention this + in debian/copyright. + * Update standards version to 3.7.2.2: point to + /usr/share/common-licenses/GFDL in debian/copyright. + * Use more strict wildcards in konversation.install mostly to track + upstream changes and to eliminate empty apidox directory. + * New/updated patches: + - 10_debian_channel.diff - update to use port 7000 for irc.debian.org + by default to prevent possible DCC exploit. + - 12_dbug405384_dccsendfile.diff - remember whole URL (including protocol), + not just directory for "Send File" dialog (Closes: #405384). + - 13_dbug412894_lowercase_nick.diff - don't crash on typing text in + reopened query/channel after all channels/queries were left (lowercase + nicknames were not affected) (Closes: #412894). + - 14_dbug412803_assert_crash.diff - avoid a possible crash on DCOP info. + Remove a bogus assert (Closes: #412803). + * Add kdelibs-dbg to konversation-dbg Recommends. + + -- Debian KDE Extras Team Tue, 24 Jul 2007 01:15:48 +0300 + +konversation (1.0.1-2) unstable; urgency=low + + * Konversation is now maintained by Debian KDE Extras Team. + Modestas Vainius is responsible for the package. + + [Modestas Vainius] + * Update debian/copyright based on current copyright information in the + source code. + * Migrate from simple patch system to quilt. + * Patches: + - 01 to 04. Usual libtool & autotools update. + - 06_fix_relibtoolization.diff - remove a few redundant _LIBADD directives + from Makefile.am files to make relibtoolization possible. + - 10_debian_channel.diff - add irc://irc.debian.org/#debian to server list + by default. + - kubuntu_01_kdepot.diff.diff - drop this patch because I don't see why it's + needed. Current code leads to the same result. + - 11_dbug_autoreplace.diff - add Debian BTS (dbug) auto replace. Thanks to + Filipus Klutiero for the idea (Closes: #419897). + - 98_buildprep.diff - relibtoolization patch. + * Use ${binary:Version} instead of obsolete ${Source-Version} for the -dbg + package. + * Changes to debian/control: + - Drop versioned dependency on g++. + - Drop reduntant build dependency on libqt3-mt-dev. + - Drop autotools runtime from build dependencies. They are no longer needed. + - Build depend on autotools-dev for config.guess and config.sub. + + -- Debian KDE Extras Team Tue, 17 Jul 2007 03:24:41 +0300 + +konversation (1.0.1-1ubuntu2) feisty; urgency=low + + * Changed kubuntu_01_channel.diff to set the default port of the default + server to 8001 to prevent the DCC exploit (https://help.ubuntu.com/community/FixDCCExploit) + + -- Martin Meredith Sat, 27 Jan 2007 06:21:52 +0000 + +konversation (1.0.1-1ubuntu1) feisty; urgency=low + + * Merge from debian unstable + * Remaining changes: kubuntu_01_kdepot.diff and kubuntu_01_channel.diff + + -- Brandon Holtsclaw Mon, 30 Oct 2006 12:57:45 +0000 + +konversation (1.0.1-1) unstable; urgency=low + + * New upstream release. + + -- Nathaniel W. Turner Sat, 7 Oct 2006 04:13:14 +0000 + +konversation (1.0.1-0ubuntu1) edgy; urgency=low + + * New Upstream Bugfix Release ( UVFe approved by mdz ) + * Closes Malone: #64488 + + -- Brandon Holtsclaw Thu, 12 Oct 2006 10:03:06 -0500 + +konversation (1.0-1) unstable; urgency=low + + * New upstream release. (closes: #387045) + + Closes: #365759 (Server tab is blank while reconnecting) + + Closes: #356304 (FTBFS with G++ 4.1: extra qualification); patch + incorporated upstream; thanks to Martin Michlmayr for the NMU + + * Sync with Ubuntu. + + Drop kubuntu_01_channel.diff in favor of updated debian_01_channel.diff. + + * Preseed channel list with #debian at irc.debian.org instead of #debian-kde + at irc.freenode.net. (closes: #371880) + + * Stop shipping outdated and unused cdbs/kde.mk. + + * Change section of konversation-dbg to kde so it matches override file. + + -- Nathaniel W. Turner Wed, 13 Sep 2006 14:56:45 -0400 + +konversation (1.0-0ubuntu6) edgy; urgency=low + + * Set .pot name in debian/rules + + -- Jonathan Riddell Sun, 1 Oct 2006 13:00:19 +0100 + +konversation (1.0-0ubuntu5) edgy; urgency=low + + * Applyed Mez patch again (sorry!) for gnome users. + + -- Anthony Mercatante Sat, 9 Sep 2006 08:54:21 +0200 + +konversation (1.0-0ubuntu4) edgy; urgency=low + + * Back to old kubuntu_01_channel.diff since the settings are + overwritten bu kubuntu-default-settings in the first place. + Applying the wanted changes to kds. + + -- Anthony Mercatante Sat, 9 Sep 2006 08:33:24 +0200 + +konversation (1.0-0ubuntu3) edgy; urgency=low + + * Modified kubuntu_01_channel.diff to change the default irc server + to irc.ubuntu.com vs irc.freenode.net (Closes Malone: #52690) + thanks to Martin Meredith ( mez@ubuntu.com ) + + -- Brandon Holtsclaw Sat, 9 Sep 2006 02:12:26 -0500 + +konversation (1.0-0ubuntu2) edgy; urgency=low + + * Add automake and autoconf build-dep + + -- Jonathan Riddell Fri, 1 Sep 2006 21:41:38 +0000 + +konversation (1.0-0ubuntu1) edgy; urgency=low + + [ Jonathan Riddell ] + * Add kubuntu_01_kdepot.diff and use standard kde.mk in debian/rules + + [ Brandon Holtsclaw ] + * New Upstream Version ( uvf exception approved by kamoin ) + * Removed kubuntu_02_serverlist.patch adopted upstream + * Removed debian_02_gcc41.diff also adopted upstream + + -- Brandon Holtsclaw Thu, 31 Aug 2006 11:39:24 -0500 + +konversation (0.19-1.1ubuntu2) edgy; urgency=low + + * Added kubuntu_02_serverlist.patch (Closes: #34992) + + -- Stephan Hermann Fri, 7 Jul 2006 12:49:21 +0200 + +konversation (0.19-1.1ubuntu1) edgy; urgency=low + + * Merge from debian unstable. + + -- Stephan Hermann Fri, 7 Jul 2006 08:03:41 +0200 + +konversation (0.19-1.1) unstable; urgency=low + + * NMU as part of the GCC 4.1 transition. + * patches/debian_01_channel.diff: Remove extra qualification from C++ + header file. (Closes: #356304) + + -- Martin Michlmayr Thu, 25 May 2006 21:55:25 +0200 + +konversation (0.19-1) unstable; urgency=low + + * New upstream release. (Closes: #350562) + Adds many features and fixes many bugs, including: + + Middle-Click Paste behaves differently on channel input line and + text input line (Closes: #338489) + + * Synchronize with Ubuntu. + - However, disable the libtool-related patches, as they cause autoconf to + be re-run at build time, and this is not desirable. I don't have time + to investigate this properly now; NMUs that address the issue are + welcome. + + * Preseed initial channel list with #debian-kde instead of #kde. + + -- Nathaniel W. Turner Wed, 1 Feb 2006 12:46:01 -0500 + +konversation (0.19-0ubuntu4) dapper; urgency=low + + * debian/cdbs/kde.mk: + - added dh_iconcache. + + -- Daniel Holbach Sun, 21 May 2006 16:45:52 +0200 + +konversation (0.19-0ubuntu3) dapper; urgency=low + + * Edit debian/cdbs/kde.mk to generate .pot file + + -- Jonathan Riddell Tue, 9 May 2006 17:26:57 +0300 + +konversation (0.19-0ubuntu2) dapper; urgency=low + + * Don't use GCC 3.4 on hppa + + -- Jonathan Riddell Thu, 16 Feb 2006 12:04:31 +0000 + +konversation (0.19-0ubuntu1) dapper; urgency=low + + * New upstream release + * Relibtooled - makes tighter Depends + + -- Martin Meredith Mon, 30 Jan 2006 12:49:48 +0000 + +konversation (0.18-4) unstable; urgency=low + + * Synchronize with Ubuntu. + + * Build with default g++ on all architectures, instead of g++ 3.4 on arm, + m68k, and hppa, now that PR c++/21123 (Debian bug #323133) has been fixed. + Add temporary build-dependency on g++ (>= 4:4.0.2-2) until all buildds + have that version. + + Closes: #342996: Package explicitely build-depends on g++-3.4 + + * Bump debian/compat to 5 and build-depend on debhelper (>= 5.0). + + * Add konversation-dbg, to help trace problems (and remove my previous, + less-elegant method of conditionally including debug symbols). + + * Recommend python; it is used by the media and weather scripts. + + * Remove ancient Conflicts and Provides declarations for konversation-doc + and konversation-i18n. I believe these packages were never uploaded to + the official Debian archive, and were definitely removed long before the + sarge release. + + * Remove the .svn check in debian/rules in favor of passing -i to + dpkg-buildpackage (which simplifies maintenance). + + -- Nathaniel W. Turner Thu, 15 Dec 2005 08:46:25 -0500 + +konversation (0.18-3ubuntu2) dapper; urgency=low + + * Rebuild against the latest kdelibs4-dev to make us installable. + + -- Adam Conrad Mon, 12 Dec 2005 21:35:14 +1100 + +konversation (0.18-3ubuntu1) dapper; urgency=low + + * Resynchronise with Debian. + * Sponsored upload for Loic Pefferkorn + + -- Jonathan Riddell Mon, 21 Nov 2005 13:14:59 +0100 + +konversation (0.18-3) unstable; urgency=low + + * Build with g++-3.4 on arm, m68k, and hppa architectures to work around an + internal compiler error in g++ 4.0 on those architectures (bug #323133). + - debian/{control,rules} + + -- Nathaniel W. Turner Tue, 6 Sep 2005 21:19:00 -0400 + +konversation (0.18-2) unstable; urgency=low + + * Upload to Debian unstable, now that a C++ transitioned version of kdelibs + has been built on all architectures. + + * Use a more descriptive title in the Debian menu entry. + - debian/konversation.menu + + * Bump package's Standards-Version to 3.6.2 (no changes needed). + - debian/control: update Standards-Version + + * Update build dependencies to require a more recent version of debhelper + (>= 4.9) so that dh_installmenu puts the menu file in /usr/share instead + of /usr/lib, to comply with the latest menu policy. + - debian/control: update Build-Depends + + -- Nathaniel W. Turner Thu, 1 Sep 2005 22:26:21 -0400 + +konversation (0.18-1ubuntu4) dapper; urgency=low + + * Build with GCC 3.4 on arches where GCC 4.0 fails + See http://lists.debian.org/debian-devel/2005/09/msg00020.html + + -- Jonathan Riddell Fri, 28 Oct 2005 03:58:12 +0000 + +konversation (0.18-1ubuntu3) breezy; urgency=low + + * bumped cdbs build-dep back to 0.4.21 to make backports happy + the "dont ask me again for KDE packages, how can a IRC client + be 7MB big ?" release + + -- Oliver Grawert Tue, 26 Jul 2005 23:42:24 +0200 + +konversation (0.18-1ubuntu2) breezy; urgency=low + + * Add libxi-dev build-depends + + -- Jonathan Riddell Fri, 8 Jul 2005 09:52:14 +0000 + +konversation (0.18-1ubuntu1) breezy; urgency=low + + * Merged with Debian + * Sponsored upload for Martin Meredith + + -- Jonathan Riddell Sat, 11 Jun 2005 01:58:20 +0100 + +konversation (0.18-1) unstable; urgency=low + + * New upstream release. + (Not uploaded to Debian, due to the C++ transition.) + + * Recommend ruby, as the newly-added qurl script uses it. + + * Update konversation(1) manpage. + + * Update debian/cdbs/kde.mk to revision 1066 from + svn://svn.debian.org/pkg-kde/branches/kde-3.4.0/cdbs/kde.mk + + * Update homepage (again); it is now http://konversation.kde.org/ + + -- Nathaniel W. Turner Tue, 7 Jun 2005 21:48:59 -0400 + +konversation (0.17-1ubuntu1) breezy; urgency=low + + * Merge with debian. + * Upload for Frode M. Doeving + + -- Jonathan Riddell Tue, 31 May 2005 16:04:33 +0200 + +konversation (0.17-1) unstable; urgency=low + + * New upstream release. + + * Use the kde.mk class maintained by the Debian KDE Maintainers, instead of + the one shipped with CDBS. (Copied from + svn://svn.debian.org/pkg-kde/people/chrsmrtn/cdbs-experimental/kde.mk + revision 856.) + + One benefit is that experimental packages should now be actually be built + with debugging symbols. + + * Build-Depends on a more recent cdbs (>= 2.4.27-3), as the updated kde.mk + requires some targets that were added recently. + + * Minor packaging cleanups. + + -- Nathaniel W. Turner Wed, 6 Apr 2005 17:17:36 -0400 + +konversation (0.16-1ubuntu2) breezy; urgency=low + + * Rebuild package for new C++ ABI. + + -- Matthias Klose Mon, 30 May 2005 20:11:41 +0000 + +konversation (0.16-1ubuntu1) hoary; urgency=low + + * Sync changelog with Debian package + * Sponsored upload for İsmail Dönmez + + -- Jonathan Riddell Thu, 24 Mar 2005 09:31:10 -0500 + +konversation (0.16-1) unstable; urgency=low + + * New upstream release. + + Closes: #275282: Fallback to ISO-8859-1 (or whatever) if an incoming + message isn't UTF8 + + Closes: #303090: docs are installed in wrong place + + -- Nathaniel W. Turner Thu, 24 Mar 2005 09:31:10 -0500 + +konversation (0.15.1-0ubuntu1) hoary; urgency=low + + * New upstream release + * SECURITY UPDATE: Fixes multiple security vulnerabilities + * Wildcard variable parsing allows server to execute arbitrary IRC commands + * Unescaped variables in Perl scripts allow arbitrary commands to be run by local user + * Nick and password confused in quick connect dialogue + * References: + http://lists.netsys.com/pipermail/full-disclosure/2005-January/031033.html + * Merge following changes from 0.15-2 Debian package + * Added 000-remove-needless-alias.patch from upstream CVS (thanks to SuSE); + should fix a build failure on ia64. + * Deleted doc-expand-3.3-entities.patch; no longer needed. + * The konversation website has moved to http://konversation.berlios.de/; + updated references accordingly: + - debian/control + - debian/copyright + * sponored upload for İsmail Dönmez (upstream itself) + + -- Jonathan Riddell Wed, 19 Jan 2005 15:23:29 +0200 + +konversation (0.15+2005.02.17-0) unstable; urgency=low + + * Start building nightly snapshots tarballs with --no18n, as createPackage + no longer builds proper i18n trees (KDE upstream removed some required + Makefile.am files, and I lack the time to fix it properly right now). + + -- Nathaniel W. Turner Thu, 17 Feb 2005 11:59:13 -0500 + +konversation (0.15-3) unstable; urgency=high + + * Security update release. Applied patches from Wouter Coekaerts (included + in upstream 0.15.1) to fix the following issues: + + CAN-2005-0129: quick buttons recursive % expansion + + CAN-2005-0130: perl script arbitrary command execution + + CAN-2005-0131: potential server password leak + (Closes: #291503) + * Reverted website changes in 0.15-2; the konversation.org website is back. + + -- Nathaniel W. Turner Fri, 21 Jan 2005 13:07:21 -0500 + +konversation (0.15-2) unstable; urgency=low + + * Added 000-remove-needless-alias.patch from upstream CVS (thanks to SuSE); + should fix a build failure on ia64. (Closes: #289914) + * Deleted doc-expand-3.3-entities.patch; no longer needed. + * The konversation website has moved to http://konversation.berlios.de/; + updated references accordingly: + - debian/control + - debian/copyright + + -- Nathaniel W. Turner Wed, 5 Jan 2005 18:33:16 -0500 + +konversation (0.15-1) unstable; urgency=low + + * New upstream release. + + Closes: #266126: per-channel setting for character set + + Closes: #271045: CPU 100% usage when receiving channel list + + Closes: #271046: Channel list received from server is not complete + + Closes: #276551: Busy-loops on the IRC socket + + tarball layout has changed; packaging updated accordingly: + - doc-expand-3.3-entities.patch + - debian/rules + - debian/docs + * Removed 23 identical automatic snapshot entries from debian/changelog. + + -- Nathaniel W. Turner Wed, 1 Dec 2004 12:31:51 -0500 + +konversation (0.15-1ubuntu1) hoary; urgency=low + + * Initial Ubuntu upload + * Fixes broken build-depends + * sponored upload for İsmail Dönmez (upstream itself) + + -- Andreas Mueller Sun, 9 Jan 2005 13:28:12 +0200 + +konversation (0.14.0+20041129-1) experimental; urgency=low + + * New upstream CVS snapshot. + + irc.protocol has been renamed konvirc.protocol and no longer needs to be + maintained using update-alternatives; postinst and prerm updated + accordingly. + * Resync doc-expand-3.3-entities.patch: + + no longer need to patch ./doc/da/index.docbook + + -- Nathaniel W. Turner Tue, 30 Nov 2004 01:13:17 -0500 + +konversation (0.14.0+20040902.1-2) experimental; urgency=low + + * New upstream CVS snapshot. + + install the icons in the correct place + + -- Nathaniel W. Turner Thu, 2 Sep 2004 22:57:36 -0400 + +konversation (0.14.0+20040902-1) experimental; urgency=low + + * New upstream CVS snapshot. + * Do not call update-alternatives --remove when upgrading, as this can + effectively reset the administrator's settings. + - debian/konversation.prerm + + -- Nathaniel W. Turner Thu, 2 Sep 2004 11:21:08 -0400 + +konversation (0.14.0+20040831-1) experimental; urgency=low + + * New upstream CVS snapshot. + * Build with debugging symbols. + + -- Nathaniel W. Turner Tue, 31 Aug 2004 13:28:25 -0400 + +konversation (0.14.0+20040824-1) experimental; urgency=low + + * New upstream CVS snapshot. + * Manage the irc.protocol file with Debian's alternatives system. + - debian/rules, debian/konversation.{postinst,prerm} + + -- Nathaniel W. Turner Tue, 24 Aug 2004 20:15:29 -0400 + +konversation (0.14.0+20040819-1) experimental; urgency=low + + * New upstream CVS snapshot. + * doc-expand-3.3-entities.patch: resync + + -- Nathaniel W. Turner Thu, 19 Aug 2004 11:35:33 -0400 + +konversation (0.14.0+20040731-1) experimental; urgency=low + + * New upstream CVS snapshot. + * Added a debian/watch file for the curious. + * doc-expand-3.3-entities.patch: expand entity in docs as it's not + defined for all languages + + -- Nathaniel W. Turner Sun, 1 Aug 2004 13:54:48 -0400 + +konversation (0.14.0-4) unstable; urgency=low + + * Manage the irc.protocol file with Debian's alternatives system. + - debian/rules, debian/konversation.{postinst,prerm} (Closes: #267726) + * Removed calls to update-menus; dh_installmenu creates these for us. + - debian/konversation.postrm now empty; removed + * Added a debian/watch file. + * [This changelog entry is in version order, but not chronological order.] + + -- Nathaniel W. Turner Sun, 29 Aug 2004 14:56:46 -0400 + +konversation (0.14.0-3) unstable; urgency=low + + * After discussion with Riku Voipio and some thought, merged + konversation-doc and konversation-i18n back into main konversation + package. Splitting them out is not as beneficial as I had first thought. + - debian/*.install: Changed accordingly. + - debian/control: Added appropriate Conflicts and Provides. + + -- Nathaniel W. Turner Fri, 16 Jul 2004 23:54:29 -0400 + +konversation (0.14.0-2) unstable; urgency=low + + * debian/control: Added Riku Voipio to Uploaders. + * debian/{copyright,control}: Upstream homepage is now + http://www.konversation.org/ + * debian/konversation.1.docbook: Refer to konversationircprotocolhandler(1). + + -- Nathaniel W. Turner Mon, 12 Jul 2004 16:06:37 -0400 + +konversation (0.14.0-1) unstable; urgency=low + + * New upstream release 0.14. (Closes: #257754) + * Fix lintian warning 'description-starts-with-leading-spaces'. + * Write manpage for konversationircprotocolhandler. + + -- Nathaniel W. Turner Tue, 6 Jul 2004 20:29:45 -0400 + +konversation (0.14cvs20040621-1) experimental; urgency=low + + * New upstream CVS snapshot. + * All previous patches incorporated upstream. + * debian/konversation.menu: Specify icon in addition to iconNxN. + * debian/*.xpm: Regenerate Debian menu system icons from new upstream icon. + + -- Nathaniel W. Turner Mon, 21 Jun 2004 13:11:14 -0400 + +konversation (0.14cvs20040614-1) experimental; urgency=low + + * New upstream CVS snapshot. + + much snazzy new stuff + * New patches: + + 002_configureNotifications_tray.patch - add another item to tray menu + + 003_nicklist_hostmask_startup - minor bugfix + + -- Nathaniel W. Turner Mon, 14 Jun 2004 22:27:31 -0400 + +konversation (0.14cvs20040611-2) experimental; urgency=low + + * Do not ship .xcf files. + + -- Nathaniel W. Turner Sat, 12 Jun 2004 00:43:06 -0400 + +konversation (0.14cvs20040611-1) experimental; urgency=low + + * New upstream CVS snapshot. + * Removed 000_tray_menu_enhance.patch (applied upstream). + * Split out 3.6MB of architecture-independent files into separate + konversation-doc and konversation-i18n packages. + + -- Nathaniel W. Turner Fri, 11 Jun 2004 22:09:24 -0400 + +konversation (0.14cvs20040608-2) experimental; urgency=low + + * New patch: + + 000_tray_menu_enhance.patch - adds Configure Konversation to tray menu + + -- Nathaniel W. Turner Wed, 9 Jun 2004 00:02:32 -0400 + +konversation (0.14cvs20040608-1) experimental; urgency=low + + * New upstream CVS snapshot. + * Provide both 16x16 and 32x32 sized icons for the Debian menu system, and + regenerate them using The Gimp, which produces nicer results than + ImageMagick. + + -- Nathaniel W. Turner Tue, 8 Jun 2004 03:26:05 -0400 + +konversation (0.14cvs20040501-1) unstable; urgency=medium + + * New upstream snapshot. + * Urgency medium because the build system changes introduced in + 0.14cvs20040427-1 should fix a build failure (bug #246448). + * Deleted debian/patches/00_qwhatsthis.diff (applied upstream). + + -- Nathaniel W. Turner Sat, 1 May 2004 14:28:12 -0400 + +konversation (0.14cvs20040427-2) unstable; urgency=low + + * Updated Build-Depends on debhelper to (>= 4.1.0). + * debian/copyright: + - Added Gary R. Cramblitt (documentation author) to copyright. + - Updated section on upstream source to reflect new procedure. + * debian/patches/00_qwhatsthis.diff + - Added help for the rest of editserverdialog, based on Gary R. + Cramblitt's excellent documentation. + + -- Nathaniel W. Turner Wed, 28 Apr 2004 07:28:53 -0400 + +konversation (0.14cvs20040427-1) unstable; urgency=low + + * New CVS snapshot. + * Prepare the upstream snapshot tarball using cvs2dist from kdesdk-scripts + instead of my own homebrewed script. This has a number of advantages: + - debian/rules and debian/control are simplified a bit. + - Documentation is now included in the package. + - Translations are now included in the package. + * debian/rules: + - Cleaned up a bit. + * debian/control: + - No longer need to Build-Depend on autoconf or automake*. + - No longer need to Build-Depend on libqt3-compat-headers. + - Put "IRC" into the synopsis so that "apt-cache search" will find it. + - Updated long description per best practices. + * debian/patches/editserverdialog2ui.diff: + - Removed; upstream prefers not to use .ui files. + * debian/patches/00_qwhatsthis.diff + - Adds QWhatsThis help in some places (replaces editserverdialog2ui.diff). + + -- Nathaniel W. Turner Tue, 27 Apr 2004 20:47:14 -0400 + +konversation (0.14cvs20040413-3) experimental; urgency=low + + * debian/konversation.xpm: Resize icon so that it is *really* 32 pixels + wide, not 33. + + -- Nathaniel W. Turner Thu, 15 Apr 2004 13:50:23 -0400 + +konversation (0.14cvs20040413-2) experimental; urgency=low + + * Uploading locally to experimental until -1 goes into Debian. + * debian/konversation.1.docbook: + - Updated SCRIPTING section + - Added FILES section + * debian/dirs: Not needed; removed. + * debian/konversation.{xpm,menu,install}: Added a Debian Menu System icon. + + -- Nathaniel W. Turner Thu, 15 Apr 2004 13:28:19 -0400 + +konversation (0.14cvs20040413-1) unstable; urgency=low + + * New CVS snapshot. + * New maintainer (closes: #222154). + * Changed version numbering scheme to match that used by previous + maintainer. (Note that this is still pre-0.14.) + * debian/konversation.{menu,postinst,postrm}: Added a Debian menu system + entry (from previous package by Dominique Devriese -- thanks!). + * debian/control: + + Tweaked long description based on description at the kdeextragear site. + + Made Build-Depends on cdbs versioned per KDE packaging guidelines. + + Build-Depend on automake1.7 instead of automake1.8. + + Removed some gratuitous Build-Depends (thanks to the debian-qt-kde team + for pointing this out in the latest packaging guidelines). + * debian/copyright: rearranged for better clarity + * debian/patches/autoconnect-fix.diff: deleted (applied upstream). + + -- Nathaniel W. Turner Tue, 13 Apr 2004 21:33:21 -0400 + +konversation (0.13+20040326-2) unstable; urgency=low + + * debian/patches/autoconnect-fix.diff: Maintain state of auto connect + setting when editing a server item (fixes KDE bug 79182) + + -- Nathaniel W. Turner Tue, 6 Apr 2004 12:11:06 -0400 + +konversation (0.13+20040326-1) unstable; urgency=low + + * New CVS snapshot: + - [abatianni]: + + Added support for automatic text on highlight + + Fixed DCC Chat crash and logfile bug + + Enabled %o and %K placceholders in auto text + + Switched tab close buttons off by default [closes kde bug 77340] + + -- Nathaniel W. Turner Fri, 26 Mar 2004 00:21:21 -0500 + +konversation (0.13+20040323-1) unstable; urgency=low + + * New CVS snapshot. + + Fix bug 78108. Make quit action in tray menu work again. [psn] + * Changed suite to unstable. + * debian/copyright: explain the origin of both stable and snapshot tarballs + * debian/control: + + remove bash from Recommends; it is an Essential package + + add missing Build-Depends (discovered by building in a pbuilder chroot): + autoconf, automake1.8 + + -- Nathaniel W. Turner Thu, 25 Mar 2004 04:47:20 -0500 + +konversation (0.13+20040316-1) experimental; urgency=low + + * New CVS snapshot. + * Now properly built as a non-native package. + * debian/rules: + + no longer copy .desktop files to applnk, as KDE 3.2 is now in sid + + various cleanups + + -- Nathaniel W. Turner Mon, 15 Mar 2004 23:47:03 -0500 + +konversation (0.13+20040308-3) experimental; urgency=low + + * Nevermind that, the new nick code causes a segfault for me. I don't have + time to debug, so I'll just not define USE_NICKINFO for now. + + -- Nathaniel W. Turner Thu, 11 Mar 2004 07:37:08 -0500 + +konversation (0.13+20040308-2) experimental; urgency=low + + * Built with USE_NICKINFO defined. + * Not uploaded. + + -- Nathaniel W. Turner Thu, 11 Mar 2004 07:11:17 -0500 + +konversation (0.13+20040308-1) experimental; urgency=low + + * New CVS snapshot. + * Built against KDE 3.2. + + -- Nathaniel W. Turner Wed, 10 Mar 2004 02:47:36 -0500 + +konversation (0.13+20040223-1) experimental; urgency=low + + * New CVS snapshot. + * Added "What's This?" entries for most things in the "Edit Server" dialog. + Replaced hardcoded layout with UI file in the process. + + -- Nathaniel W. Turner Mon, 23 Feb 2004 23:51:32 -0500 + +konversation (0.13+20040131-1) experimental; urgency=low + + * New CVS snapshot. + * Use xsltproc instead of xmlto to generate manpage. + + -- Nathaniel W. Turner Sat, 31 Jan 2004 20:57:05 -0500 + +konversation (0.13+20031226-1) experimental; urgency=low + + * New CVS snapshot. + - abatianni: + + Dcc panel fixes + + Made coloring of nicklist and input widgets an option + + konversation/prefspageidentity.cpp: Removed debug output + + Are you sure dialog added before deleting identities + + -- Nathaniel W. Turner Sun, 28 Dec 2003 14:54:19 -0500 + +konversation (0.13+20031221-1) experimental; urgency=low + + * New CVS snapshot. + + Updated Changelog [abatianni] + + Logfile reader can now save and delete logs [abatianni] + + Mouse wheel now cycles tabs in the same order as it would scroll a + slider [abatianni] + + Fix logfile problem [abatianni] + + -- Nathaniel W. Turner Sun, 21 Dec 2003 20:09:19 -0500 + +konversation (0.13+20031217-1) experimental; urgency=low + + * New CVS snapshot. + + Ok, divider lines are going in the respective ui.rc file [abatianni] + + konversation/chatwindow.cpp: Save a crash [cartman] + + Removed some ancient code. [abatianni] + + More work on logfile reader [abatianni] + + -- Nathaniel W. Turner Wed, 17 Dec 2003 23:50:19 -0500 + +konversation (0.13+20031216-1) experimental; urgency=low + + * New CVS snapshot. + + Restructured the windows menu [abatianni] + + Logfiles now have the server group in their name so channels with the + same name can be logged in different networks [abatianni] + + Bounced build number [abatianni] + + Clean up the menus [psn] + * debian/patches/osd-plaintext.patch: removed; applied upstream + + -- Nathaniel W. Turner Wed, 17 Dec 2003 03:09:49 -0500 + +konversation (0.13+20031214.1-2) experimental; urgency=low + + * debian/patches/osd-plaintext.patch: a quick hack to turn any HTML that + gets passed to the OSD back into plain text + + -- Nathaniel W. Turner Mon, 15 Dec 2003 21:21:19 -0500 + +konversation (0.13+20031214.1-1) experimental; urgency=low + + * New CVS snapshot. + + Add icons to some of the actions [psn] + * debian/patches/no-clobber-nonawaynick.patch: deleted (applied upstream) + * debian/copyright: reworked per advice of Peter Palfrader and Andrew + Suffield on debian-legal + + -- Nathaniel W. Turner Mon, 15 Dec 2003 08:22:33 -0500 + +konversation (0.13+20031214-1) experimental; urgency=low + + * New CVS snapshot. + + konversation/inputfilter.cpp: Switched from Bounce to Support since it + reflects todays servers' behaviour more precisely [abatianni] + + Changed name of Notify List / Nicks online to something more sensible + [abatianni] + * debian/patches/no-clobber-nonawaynick.patch: If you are using an Away + nickname, doing "/away foo" more than once will cause konvi to forget your + regular nickname, and a subsequent "/away" will not restore it. This + patch fixes that. + + -- Nathaniel W. Turner Sun, 14 Dec 2003 12:07:46 -0500 + +konversation (0.13+20031212-1) experimental; urgency=low + + * New CVS snapshot. + + Added a patch by Thomas Nagy for mouse wheel tab cycling [abatianni] + + Fixed a compatibility issue with newer KDE versions that have a + different encoding string implementation [abatianni] + + Thnx goes to thiago for this one. Get a blockless socket. Reviewed by + Eisfuchs. [cartman] + + Fix the IRC color chooser to have a sane size. [psn] + + Remove the checkbox for bg color and add a 'None' entry to the combo + instead [psn] + + -- Nathaniel W. Turner Fri, 12 Dec 2003 22:51:50 -0500 + +konversation (0.13+20031211-1) experimental; urgency=low + + * New CVS snapshot. + + Fixed crash on open DCC panel when a DCC request comes in [abatianni] + + Fix blinking tabs [psn] + + Fixed a deadlock with small logfiles [abatianni] + + Committed a patch by Michael Nottebrock [abatianni] + + -- Nathaniel W. Turner Thu, 11 Dec 2003 21:41:03 -0500 + +konversation (0.13+20031208-1) experimental; urgency=low + + * New CVS snapshot. + + Improved joining of large channels (again) [abatianni] + + konversation/channel.cpp: Remove some unneeded sort() calls [psn] + + konversation/ircview.cpp: Minor clean up [psn] + + konversation/preferences.cpp: Fix memleak [psn] + + -- Nathaniel W. Turner Mon, 8 Dec 2003 17:04:48 -0500 + +konversation (0.13+20031206-2) experimental; urgency=low + + * debian/rules: make konvi scripts executable, install README.scripts + + -- Nathaniel W. Turner Sun, 7 Dec 2003 13:15:26 -0500 + +konversation (0.13+20031206-1) experimental; urgency=low + + * New CVS snapshot. + + Scripts can now be placed in central KDE installation folder [abatianni] + + i18n fixes + a small code simplification [lukas] + + Code shuffles and leak fixors reviewed by Dario Abatianni. Hail the + coolest KDE IRC applikation ;) [cartman] + + Server list is now a tree list [abatianni] + + Added an away nickname [psn] + + Right click a channel list item and you get a menu to open the URLs + found in the channel's topic [binner] + + Slower blinking tabs if only join/part/quit/nick change happened in + channel [binner] + + Implemented an option to hide Join / Part / Nickchange events + [abatianni] + + Added dialog to close queries on ignore [abatianni] + + make the alternating nicklist look a lot nicer [danimo] + + channellistpanel.cpp, channellistpanel.h: Apply filter during list + creation and not afterwards [binner] + + Custom CTCP::VERSION reply support for all those kids obsessed with my + mirc version ;) Reviewed by Dario Abatianni [cartman] + + scripts/: Added uptime script by Magnus Romnes [abatianni] + + First work on logfile reader ... not working completely yet. [abatianni] + + Some fixes for Nick() and LedListViewItems [abatianni] + + Added shortcut for "Close All Open Queries" that you can find in some + popular scripted mirc proggies. This helps with auto-messagers too ;) . + Reviewed by Berkus & style comments by Berkus. [cartman] + + -- Nathaniel W. Turner Sun, 7 Dec 2003 13:01:04 -0500 + +konversation (0.13+20031201-1) experimental; urgency=low + + * Not uploaded because I cannot build the darn thing (grrr autotools). + * New CVS snapshot. + + Added tab move context menu items [abatianni] + + Don't put email addresses into URL catcher [abatianni] + + Rejoin all open channels on reconnect (by psn) + + Added useful scripts dir [karchebny] + + Implemented the following: [psn] + * /aaway to go away on all servers + * /ame to send actions to all channels + * /amsg to send message to all channels + + -- Nathaniel W. Turner Mon, 1 Dec 2003 19:38:42 -0500 + +konversation (0.13+20031123-1) experimental; urgency=low + + * New CVS snapshot. + + Highlight email addresses [psn] + + Patched URL regex to not match stuff like awwww...nice :) [abatianni] + + nickchangedialog.cpp: Current nick does not get inserted into nick list + anymore if it is already in there [abatianni] + + No more duplicate entries in DCC send list [abatianni] + + Add a close tab button to the tab bar [psn] + + Make copy url to clipboard compatible with kmail and konq. Fill up both + selection and clipboard. [psn] + + Make it possible to hide the topic line [psn] + + Fixed wrong ops count with channel owners, halfops and admins + [abatianni] + * debian/{control,copyright}: merged in some minor changes from my proposed + 0.13-2 package + * debian/patches/000-authors.patch: deleted (applied upstream) + * debian/patches/002-del-empty-docs.patch: new patch: do not package the + empty README and NEWS files + * debian/rules: + + install examples/dcop-away.sh executable, as linda does not like it + otherwise, and some other packages also do this (exim4, autotools, ...) + + make usr/share/apps/kconf_update/*.pl executable as well, for a similar + reason (quiets lintian, and there is precedent for either way) + + -- Nathaniel W. Turner Sun, 23 Nov 2003 18:22:31 -0500 + +konversation (0.13+20031120-1) experimental; urgency=low + + * New CVS snapshot. + + Use the [KDE prefs] framework as far as possible [psn] + + -- Nathaniel W. Turner Fri, 21 Nov 2003 01:43:04 -0500 + +konversation (0.13+20031119-1) experimental; urgency=low + + * New CVS snapshot. + + Add a configure toolbars action [psn] + + DCC Chat working, a little rough but we can improve it [abatianni] + + -- Nathaniel W. Turner Wed, 19 Nov 2003 22:16:52 -0500 + +konversation (0.13+20031117-1) experimental; urgency=low + + * New CVS snapshot. + + Add new completion mode: Shell like with completion box [psn] + + -- Nathaniel W. Turner Mon, 17 Nov 2003 21:54:06 -0500 + +konversation (0.13+20031116-1) experimental; urgency=low + + * Moved snapshot packages to experimental dist. (actually did this with the + previous build, but forgot to mention it in the changelog) + * New CVS snapshot. + + Post freeze commit :) This commit does the following: + * Add systray notification (it's disabled by default and still buggy so + use with care or risk going crazy ;)) + * Add shell like nick completion mode (aka uga mode). It's a bit + primitive at the moment though. The default is the old cycle through + nick list. + * A cleaner way of handling tab shortcuts. + That's all for now I think :) [psn] + + Layouting fix for nick completion preferences page [abatianni] + + Updated authors [abatianni] + + Moved close button settings into new prefs page [abatianni] + + Moved general tab settings to new prefs page [abatianni] + + Fix cycle completion so that it adds the configured extra chars [psn] + + Fix event handling for the systray notification [psn] + + Show shell like completion possibilities in chatwindow [psn] + + Keep the case of the nicks in the completion list [psn] + + First very rough implementation of DCC Chat (receiver side) [abatianni] + + -- Nathaniel W. Turner Sun, 16 Nov 2003 20:39:51 -0500 + +konversation (0.13+20031114-1) unstable; urgency=low + + * New CVS snapshot. + + no changes; just incremented build number + + -- Nathaniel W. Turner Fri, 14 Nov 2003 17:04:25 -0500 + +konversation (0.13-1) unstable; urgency=low + + * New upstream beta release. + + -- Nathaniel W. Turner Fri, 14 Nov 2003 16:33:52 -0500 + +konversation (0.12pre13+cvs20031113-1) unstable; urgency=low + + * New CVS snapshot. + + Fix nick detection for nicks with special chars (psn) + + Make the nick completion list stay sorted (psn) + + Fixed error message on dns resolution failure (abatianni) + * Disabled 001-trayicon-notify.patch for now, because I get build failures + with it (I'll look into this later). + + -- Nathaniel W. Turner Thu, 13 Nov 2003 20:29:25 -0500 + +konversation (0.12pre13+cvs20031109-2) unstable; urgency=low + + * Applied patch from Peter Simonsson to make tray icon blink on new messages + - debian/patches/001-trayicon-notify.patch + + -- Nathaniel W. Turner Tue, 11 Nov 2003 08:44:16 -0500 + +konversation (0.12pre13+cvs20031109-1) unstable; urgency=low + + * New CVS snapshot. + + Add knotify support to user offline notify + + -- Nathaniel W. Turner Sun, 9 Nov 2003 14:11:00 -0500 + +konversation (0.12pre13+cvs20031104-2) unstable; urgency=low + + * debian/konversation.1.docbook: + + Corrected DOCTYPE + + Removed innaccurate para about GNU Info + + Added list of generic options and better explanation thereof + + Added short section on scripting + + Added a SEE ALSO section, referenced dcop(1) + + Misc. cleanups + * debian/rules: + + include proper dependency info for man page target + + install an example + + -- Nathaniel W. Turner Thu, 6 Nov 2003 23:52:01 -0500 + +konversation (0.12pre13+cvs20031104-1) unstable; urgency=low + + * New CVS snapshot. + + Style changes now don't trash users color settings anymore + + -- Nathaniel W. Turner Wed, 5 Nov 2003 15:59:27 -0500 + +konversation (0.12pre13+cvs20031027-1) unstable; urgency=low + + * New CVS snapshot. + + added support for extended user modes (admin, owner, halfop) + + implemented /say command + + added Whois item on query menus + * debian/patches/000-authors.patch: added Sascha Cunz (extended user modes + patch) + + -- Nathaniel W. Turner Tue, 28 Oct 2003 02:25:07 -0500 + +konversation (0.12pre13+cvs20031026-1) unstable; urgency=low + + * New CVS snapshot: + + build number incremented + + more keyboard shortcuts + + make large paste message more informative + + ignore: !* hostmask now added automagically if you specify only nick + + -- Nathaniel W. Turner Sun, 26 Oct 2003 23:10:31 -0500 + +konversation (0.12pre13+cvs20031025-1) unstable; urgency=low + + * New CVS snapshot: + + the Actions menu now contains some actions + + keyboard shortcuts added for many things + * debian/control: do not assume readers know what IRC is + * debian/rules: remove config.status in the clean target (this was causing + some build failures); also remove some other generated files + + -- Nathaniel W. Turner Sun, 26 Oct 2003 02:26:52 -0500 + +konversation (0.12pre13+cvs20031022-1) unstable; urgency=low + + * New CVS snapshot. (nothing interesting) + * debian/copyright: wrote a proper copyright file + * debian/rules: converted to CDBS + * debian/patches/000-authors.patch: synchronize AUTHORS file with Help | + About | Authors dialog contents + * debian/control: + + updated Standards-Version (no changes) + + actually wrote a long Description + + added cdbs to Build-Depends + + added xmlto to Build-Depends for manpage + * wrote a very minimal manpage + + -- Nathaniel W. Turner Thu, 23 Oct 2003 08:22:53 -0400 + +konversation (0.12pre13+cvs20031017-2) unstable; urgency=low + + * debian/control: + + fixed maintainer field + + wrote proper Build-Depends (I think) + + -- Nathaniel W. Turner Mon, 20 Oct 2003 11:54:58 -0400 + +konversation (0.12pre13+cvs20031017-1) unstable; urgency=low + + * New CVS snapshot. + + OSD text now has a black border. + + -- Nathaniel W. Turner Fri, 17 Oct 2003 15:41:27 -0400 + +konversation (0.12pre13+cvs20031011-2) unstable; urgency=low + + * Install .desktop file in old KDE 3.1 location too. + + -- Nathaniel W. Turner Sun, 11 Oct 2003 00:30:00 -0400 + +konversation (0.12-1) unstable; urgency=low + + * Initial Release. + + -- Nathaniel W. Turner Fri, 10 Oct 2003 23:39:24 -0400 + diff --git a/ubuntu/lucid_automake/applications/konversation/debian/compat b/ubuntu/lucid_automake/applications/konversation/debian/compat new file mode 100644 index 000000000..7ed6ff82d --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/compat @@ -0,0 +1 @@ +5 diff --git a/ubuntu/lucid_automake/applications/konversation/debian/control b/ubuntu/lucid_automake/applications/konversation/debian/control new file mode 100644 index 000000000..652cf7b08 --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/control @@ -0,0 +1,44 @@ +Source: konversation-kde3 +Section: kde +Priority: optional +Maintainer: Timothy Pearson +XSBC-Original-Maintainer: Debian KDE Extras Team +Uploaders: Modestas Vainius +Build-Depends: debhelper (>= 5.0), cdbs (>= 0.4.27-3), kdelibs4-kde3-dev, xsltproc, docbook-xsl, libxi-dev, quilt (>= 0.40), automake1.11-kde3, autoconf2.63, libtool, libltdl-dev +Standards-Version: 3.8.3 +DM-Upload-Allowed: yes +Homepage: http://konversation.kde.org/ + +Package: konversation-kde3 +Architecture: any +Depends: ${shlibs:Depends} +Recommends: python, ruby +Suggests: libsoap-lite-perl +Description: user friendly Internet Relay Chat (IRC) client for KDE [KDE3] + Konversation is a client for the Internet Relay Chat (IRC) protocol. + It is easy to use and well-suited for novice IRC users, but novice + and experienced users alike will appreciate its many features: + . + * Standard IRC features + * Easy to use graphical interface + * Multiple server and channel tabs in a single window + * IRC color support + * Pattern-based message highlighting and OnScreen Display + * Multiple identities for different servers + * Multi-language scripting support (with DCOP) + * Customizable command aliases + * NickServ-aware log-on (for registered nicknames) + * Smart logging + * Traditional or enhanced-shell-style nick completion + * DCC file transfer with resume support + +Package: konversation-kde3-dbg +Architecture: any +Priority: extra +Depends: konversation-kde3 (= ${binary:Version}) +Recommends: kdelibs-kde3-dbg +Description: debugging symbols for konversation + This package contains the debugging symbols associated with konversation. + They will automatically be used by gdb for debugging konversation-related + issues. + diff --git a/ubuntu/lucid_automake/applications/konversation/debian/copyright b/ubuntu/lucid_automake/applications/konversation/debian/copyright new file mode 100644 index 000000000..cb5c85c8e --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/copyright @@ -0,0 +1,87 @@ +This package was debianized by Nathaniel W. Turner on +Fri, 10 Oct 2003 23:39:24 -0400. + +Maintenance was taken over by Debian KDE Extras Team on +Tue, 17 Jul 2007 03:09:05 +0300 + +Konversation is copyright as follows: + © 2002, 2003, 2004, 2005, 2006 by Dario Abatianni + © 2002, 2003 by Matthias Gierlings + © 2000, 2001, 2002, 2003 by Shiro Kawai + © 2002 by Olivier Goffart + © 2002 by Carsten Pfeiffer + © 2003 by Alex Zepeda + © 2003, 2005 by Stanislav Karchebny + © 2003 by Mickael Marchand + © 2003 by Benjamin C Meyer + © 2003 by Waldo Bastian + © 2003, 2004, 2005, 2006 by Peter Simonsson + © 2003, 2004 by Christian Mühlhäuser + © 2003, 2004, 2005, 2006 by Nathaniel W. Turner + (Debian package maintainer) + © 2003, 2004, 2005 by Gary R. Cramblitt + (documentation author) + © 2004, 2005, 2006, 2007 by John Tapsell + © 2004, 2005 by Shintaro Matsuoka + © 2004, 2005 by İsmail Dönmez + © 2004 by Michiel de Boer + © 2004 by Eli MacKenzie + © 2004 by Jason Keirstead + © 2004 by Michael Goettsche + © 2004 by Michael Brade + © 2005 by Sebastian "segfault2k" Sariego B. + (application icons) + © 2005 by Ian Monroe + © 2005 by Ivor Hewitt + © 2005 by Renchi Raju + © 2005, 2006 by Eike Hein + +Konversation includes portions of code copyrighted by: + © 1998 by Netscape Communications Corporation + © 1999 by Lars Knoll + © 1994 by Bruce Schneier + © 1996 by Jim Conger + © by George Anescu + © by John Viega + © by Matt Messier + © by Robey Pointer + © by mouser + +Konversation's kaddressbook interface includes code from libkabc: + © 2001 by Cornelius Schumacher + © 2002 by Duncan Mac-Vicar Prett + © 2002 by Nick Betcher + © 2003, 2004 by Will Stephenson + © 2002, 2003, 2004 by the Kopete developers + +Parts of the core KDE libraries are included in the source (in the +konversation/compat directory) to allow building konversation under KDE 3.2 +(which lacks certain required interfaces): + © 2000, 2001, 2002, 2003, 2004, 2005 by Thiago Macieira + + © 2003 by Scott Wheeler + +This program 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. + +On Debian systems, the complete text of the GNU General Public License can +be found in /usr/share/common-licenses/GPL file. + +Permission to copy, distribute and/or modify documentation is granted +under the terms of the GNU Free Documentation License, Version 1.2 +or any later version published by the Free Software Foundation; +with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + +On Debian systems, the complete text of the GNU Free Documentation License +can be found in /usr/share/common-licenses/GFDL file. + +Upstream Source: + +* Stable Releases + + The upstream source for 1.0.1 came from + http://download.berlios.de/konversation/konversation-1.0.1.tar.bz2 + +Homepage: http://konversation.kde.org/ diff --git a/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.docs b/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.docs new file mode 100644 index 000000000..e7f450c0c --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.docs @@ -0,0 +1,2 @@ +TODO +AUTHORS diff --git a/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.install b/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.install new file mode 100644 index 000000000..d5212b6a1 --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.install @@ -0,0 +1,24 @@ +debian/tmp/opt/kde3/bin/konversation +debian/tmp/opt/kde3/share/applications/kde/konversation.desktop +debian/tmp/opt/kde3/share/apps/kconf_update/* +debian/tmp/opt/kde3/share/apps/konversation/eventsrc +debian/tmp/opt/kde3/share/apps/konversation/konversationui.rc +debian/tmp/opt/kde3/share/apps/konversation/scripts/* +debian/tmp/opt/kde3/share/apps/konversation/themes/* +debian/tmp/opt/kde3/share/config.kcfg/konversation.kcfg +debian/tmp/opt/kde3/share/doc/kde/HTML/da/konversation/* +debian/tmp/opt/kde3/share/doc/kde/HTML/en/konversation/* +debian/tmp/opt/kde3/share/doc/kde/HTML/es/konversation/* +debian/tmp/opt/kde3/share/doc/kde/HTML/et/konversation/* +debian/tmp/opt/kde3/share/doc/kde/HTML/it/konversation/* +debian/tmp/opt/kde3/share/doc/kde/HTML/pt/konversation/* +debian/tmp/opt/kde3/share/doc/kde/HTML/ru/konversation/* +debian/tmp/opt/kde3/share/doc/kde/HTML/sv/konversation/* +debian/tmp/opt/kde3/share/icons/* +debian/tmp/opt/kde3/share/locale/* +debian/tmp/opt/kde3/share/services/konvirc.protocol +debian/tmp/opt/kde3/share/services/konvirc6.protocol + +# Debian menu XPM icons +debian/*.xpm /opt/kde3/share/pixmaps + diff --git a/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.manpages b/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.manpages new file mode 100644 index 000000000..13cdaf4b2 --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.manpages @@ -0,0 +1 @@ +debian/man/*.1 diff --git a/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.menu b/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.menu new file mode 100644 index 000000000..0ae6e17ad --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/konversation-kde3.menu @@ -0,0 +1,9 @@ +?package(konversation):\ + needs="X11"\ + section="Applications/Network/Communication"\ + title="Konversation IRC Client"\ + hints="KDE,IRC Clients"\ + icon="/usr/share/pixmaps/konversation32x32.xpm"\ + icon16x16="/usr/share/pixmaps/konversation16x16.xpm"\ + icon32x32="/usr/share/pixmaps/konversation32x32.xpm"\ + command="/opt/kde3/bin/konversation" diff --git a/ubuntu/lucid_automake/applications/konversation/debian/konversation16x16.xpm b/ubuntu/lucid_automake/applications/konversation/debian/konversation16x16.xpm new file mode 100644 index 000000000..4b4a9376c --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/konversation16x16.xpm @@ -0,0 +1,207 @@ +/* XPM */ +static char * konversation16x16_xpm[] = { +"16 16 188 2", +" c None", +". c #0068C6", +"+ c #1272CA", +"@ c #287FCE", +"# c #0F70C9", +"$ c #2A80CF", +"% c #90BCE6", +"& c #71ABDF", +"* c #4D96D7", +"= c #579BD9", +"- c #5FA0DB", +"; c #67A5DD", +"> c #6EA9DE", +", c #73ACE1", +"' c #7BB2E4", +") c #6AA7DD", +"! c #8DBBE4", +"~ c #93BFE6", +"{ c #1F7ACC", +"] c #87B7E3", +"^ c #9BC4E8", +"/ c #98C2E7", +"( c #95C0E7", +"_ c #92BFE6", +": c #B6D7F3", +"< c #D9ECFA", +"[ c #E8F5FC", +"} c #E9F5FC", +"| c #E0F1FB", +"1 c #C2DFF7", +"2 c #98C4EA", +"3 c #8CB9E3", +"4 c #237CCD", +"5 c #67A5DC", +"6 c #92BEE6", +"7 c #8DBBE5", +"8 c #88B8E4", +"9 c #84B6E3", +"0 c #AFD4F3", +"a c #E3F2FC", +"b c #ECF7FB", +"c c #EBF7FB", +"d c #EBF6FB", +"e c #CFE9FD", +"f c #80B4E3", +"g c #1474CA", +"h c #4892D6", +"i c #4691D5", +"j c #83B5E3", +"k c #7DB2E2", +"l c #78AFE1", +"m c #B6DAF7", +"n c #D0EBFD", +"o c #CDE9FE", +"p c #CDEAFE", +"q c #D8EEFD", +"r c #E0F1FC", +"s c #D6EDFD", +"t c #C5E6FF", +"u c #579EDD", +"v c #3688D2", +"w c #5198D8", +"x c #7FB3E2", +"y c #79AFE1", +"z c #75ADE0", +"A c #80B6E5", +"B c #BFE2FD", +"C c #C2E5FF", +"D c #C1E5FF", +"E c #C1E4FF", +"F c #C0E4FF", +"G c #9ECCF2", +"H c #3587D1", +"I c #4B95D7", +"J c #77AEE0", +"K c #6BA7DD", +"L c #65A4DC", +"M c #60A1DC", +"N c #74B0E4", +"O c #8AC0ED", +"P c #A3D2F6", +"Q c #AED8F9", +"R c #67A8E1", +"S c #4491D5", +"T c #4792D6", +"U c #94BCC1", +"V c #F4F4D3", +"W c #9DC0BD", +"X c #62A2D5", +"Y c #E1E8B8", +"Z c #C2D4A9", +"` c #4A94D5", +" . c #90C6F1", +".. c #418FD5", +"+. c #3386D1", +"@. c #217BCD", +"#. c #4B94D7", +"$. c #96BCB2", +"%. c #FFFFFF", +"&. c #97BCB0", +"*. c #CEDAAC", +"=. c #FEFEFA", +"-. c #9EC0AB", +";. c #438FD4", +">. c #509BDA", +",. c #3A8AD3", +"'. c #2E83D0", +"). c #267FCE", +"!. c #207ACD", +"~. c #1F7ACD", +"{. c #549AD9", +"]. c #88B2A6", +"^. c #D0DC9E", +"/. c #FEFEFC", +"(. c #CAD89D", +"_. c #2D83D0", +":. c #2C82D0", +"<. c #2C82CF", +"[. c #2B82D0", +"}. c #267ECE", +"|. c #1E79CD", +"1. c #1172C9", +"2. c #5EA0DB", +"3. c #8FB6A7", +"4. c #FAF8D9", +"5. c #F8F6C5", +"6. c #5B9AB1", +"7. c #3084D1", +"8. c #2980CF", +"9. c #237DCE", +"0. c #1C79CC", +"a. c #1675CB", +"b. c #0F71C9", +"c. c #6AA7DE", +"d. c #93B9A7", +"e. c #F9F6C8", +"f. c #B0C682", +"g. c #EFE977", +"h. c #D1D65D", +"i. c #418ED2", +"j. c #398AD3", +"k. c #257ECE", +"l. c #1876CB", +"m. c #3487D2", +"n. c #1D79CC", +"o. c #9EC5E9", +"p. c #97BAA3", +"q. c #F2EC88", +"r. c #90B797", +"s. c #A6C074", +"t. c #EBE345", +"u. c #97B672", +"v. c #428FD5", +"w. c #3C8CD3", +"x. c #3587D2", +"y. c #2F84D1", +"z. c #2880CF", +"A. c #227CCE", +"B. c #7DB1E2", +"C. c #99C2E8", +"D. c #93BAAC", +"E. c #D0D559", +"F. c #80AFB1", +"G. c #61A0D7", +"H. c #C0CA48", +"I. c #A1BC65", +"J. c #4C95D7", +"K. c #4591D5", +"L. c #3F8DD4", +"M. c #3889D3", +"N. c #3185D1", +"O. c #86B7E3", +"P. c #1E79CC", +"Q. c #88B8E3", +"R. c #B1D0ED", +"S. c #9CC4E9", +"T. c #97C1E8", +"U. c #93BFE7", +"V. c #8EBCE6", +"W. c #8ABAE5", +"X. c #86B7E4", +"Y. c #81B4E3", +"Z. c #9AC3E8", +"`. c #7EB2E1", +" + c #1675CA", +".+ c #056AC7", +"++ c #1071C9", +"@+ c #046AC6", +" . + @ @ @ @ @ @ @ @ # . ", +" $ % & * = - ; > , ' ) ! ~ { ", +". ] ^ / ( ~ _ : < [ } | 1 2 3 . ", +"4 5 6 7 8 9 0 a b b b c d e f g ", +"h i 8 j k l m n o p q r s t u v ", +"h w x y z > A B C D E F F G H v ", +"h I J & K L - M N O P Q R S $ v ", +"h T U V W X Y Z ` T ...H +.@.v ", +"h #.$.%.&.*.=.-.;.>.,.'.).!.~.v ", +"h {.].%.^./.(._.:.<.[.}.|.1.~.v ", +"h 2.3.%.4.5.6.v 7.8.9.0.a.b.).v ", +"h c.d.e.f.g.h.i.j.+.:.k.~.l.m.v ", +"n.o.p.q.r.s.t.u.v.w.x.y.z.A.B.b.", +". C.D.E.F.G.H.I.J.K.L.M.N.+.O.. ", +" P.Q.R.S.T.U.V.W.X.Y.k Z.`. + ", +" . .+++++++++++++++++@+. "}; diff --git a/ubuntu/lucid_automake/applications/konversation/debian/konversation32x32.xpm b/ubuntu/lucid_automake/applications/konversation/debian/konversation32x32.xpm new file mode 100644 index 000000000..60c8f3b0c --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/konversation32x32.xpm @@ -0,0 +1,524 @@ +/* XPM */ +static char * konversation32x32_xpm[] = { +"31 31 490 2", +" c None", +". c #0068C6", +"+ c #0C6FC8", +"@ c #569AD9", +"# c #60A0DB", +"$ c #599CD9", +"% c #1172C9", +"& c #84B6E3", +"* c #D2E4F5", +"= c #7BB1E1", +"- c #4B94D7", +"; c #4893D6", +"> c #4792D6", +", c #4E96D7", +"' c #569BD9", +") c #5C9EDA", +"! c #5B9DDA", +"~ c #599DDA", +"{ c #589CD9", +"] c #559AD9", +"^ c #5399D8", +"/ c #5197D8", +"( c #71ABDF", +"_ c #CCE1F2", +": c #97C1E7", +"< c #247DCE", +"[ c #B6D3EE", +"} c #1172CA", +"| c #4993D6", +"1 c #5A9EDA", +"2 c #63A3DC", +"3 c #6EA9DE", +"4 c #79AFE1", +"5 c #83B5E3", +"6 c #8DBBE5", +"7 c #9FC6E9", +"8 c #A5CAEB", +"9 c #B2D3F0", +"0 c #B9D8F2", +"a c #C0DDF5", +"b c #B7D7F3", +"c c #AFD2F0", +"d c #A1C8EB", +"e c #6FA9DE", +"f c #5097D7", +"g c #1574CA", +"h c #9CC4E9", +"i c #3A8AD2", +"j c #85B6E3", +"k c #5399D9", +"l c #2C82D0", +"m c #A4C9EA", +"n c #A2C8EA", +"o c #A0C6E9", +"p c #9DC5E9", +"q c #9BC4E8", +"r c #9AC3E8", +"s c #98C2E7", +"t c #A9CEEE", +"u c #C5E1F8", +"v c #DAEEFE", +"w c #E5F4FD", +"x c #EBF6FC", +"y c #EEF7FC", +"z c #ECF7FC", +"A c #E9F5FD", +"B c #DEF1FE", +"C c #D5ECFE", +"D c #C2DFF8", +"E c #A3CAED", +"F c #8CBAE5", +"G c #4D95D7", +"H c #2F84D1", +"I c #9DC4E9", +"J c #91BDE6", +"K c #1D79CC", +"L c #589CDA", +"M c #9BC3E8", +"N c #99C3E8", +"O c #96C1E7", +"P c #95C0E7", +"Q c #92BEE6", +"R c #90BDE6", +"S c #B0D3F1", +"T c #D4EDFF", +"U c #E0F2FD", +"V c #EEF8FC", +"W c #D1EBFF", +"X c #ADD2F1", +"Y c #6DA8DE", +"Z c #9CC4E8", +"` c #8FBDE5", +" . c #227CCE", +".. c #74ACE0", +"+. c #96C0E7", +"@. c #93BFE7", +"#. c #8EBCE5", +"$. c #89B9E4", +"%. c #A5CDEE", +"&. c #D1ECFF", +"*. c #DEF1FD", +"=. c #EDF7FC", +"-. c #ECF7FB", +";. c #E1F2FC", +">. c #CDEAFF", +",. c #A0CAEE", +"'. c #056AC7", +"). c #99C2E8", +"!. c #90BDE5", +"~. c #277FCF", +"{. c #86B7E4", +"]. c #83B6E3", +"^. c #BCDDF7", +"/. c #D5EDFE", +"(. c #ECF6FB", +"_. c #E9F5FC", +":. c #E7F5FC", +"<. c #E8F5FC", +"[. c #EBF6FB", +"}. c #EBF7FB", +"|. c #CCE9FF", +"1. c #BADDF9", +"2. c #7EB2E2", +"3. c #8FBDE6", +"4. c #8DBCE5", +"5. c #8ABAE5", +"6. c #88B9E4", +"7. c #85B7E3", +"8. c #81B4E2", +"9. c #7DB2E2", +"0. c #C3E3FB", +"a. c #CFEAFE", +"b. c #CBE9FF", +"c. c #CAE9FF", +"d. c #CAE8FF", +"e. c #CBE8FE", +"f. c #D4EDFD", +"g. c #DFF1FC", +"h. c #E9F5FB", +"i. c #EAF6FB", +"j. c #E4F3FC", +"k. c #CBE9FE", +"l. c #C7E7FF", +"m. c #C1E3FC", +"n. c #046AC6", +"o. c #3084D1", +"p. c #81B5E2", +"q. c #8BBAE5", +"r. c #80B4E2", +"s. c #7EB3E2", +"t. c #A6CFF1", +"u. c #C8E8FF", +"v. c #C8E7FF", +"w. c #C6E7FF", +"x. c #C6E7FE", +"y. c #CFEAFD", +"z. c #C5E6FF", +"A. c #C4E6FF", +"B. c #A0CDF1", +"C. c #0168C6", +"D. c #3587D2", +"E. c #87B8E4", +"F. c #82B5E3", +"G. c #7FB3E2", +"H. c #7CB1E1", +"I. c #79B0E1", +"J. c #76ADE0", +"K. c #73ACDF", +"L. c #7BB2E2", +"M. c #B6DCF9", +"N. c #C3E6FF", +"O. c #C3E5FF", +"P. c #C2E5FF", +"Q. c #C1E5FF", +"R. c #B3DBF9", +"S. c #67A5DE", +"T. c #3A8AD3", +"U. c #7CB2E1", +"V. c #80B3E2", +"W. c #7AB0E1", +"X. c #77AFE0", +"Y. c #75ADE0", +"Z. c #72ABDF", +"`. c #6FAADE", +" + c #6CA7DD", +".+ c #6FA9DF", +"++ c #A5D1F4", +"@+ c #C0E4FE", +"#+ c #C1E4FF", +"$+ c #C0E4FF", +"%+ c #BFE4FF", +"&+ c #BEE4FF", +"*+ c #BEE3FF", +"=+ c #A2CFF4", +"-+ c #599DDB", +";+ c #3F8DD4", +">+ c #74ADDF", +",+ c #7DB1E2", +"'+ c #78AFE1", +")+ c #76AEE0", +"!+ c #70AADF", +"~+ c #6AA7DD", +"{+ c #67A5DC", +"]+ c #65A3DC", +"^+ c #60A1DB", +"/+ c #6CA8DF", +"(+ c #91C3EE", +"_+ c #A8D4F6", +":+ c #B3DCFB", +"<+ c #BDE3FF", +"[+ c #BCE3FF", +"}+ c #BBE2FF", +"|+ c #A6D3F6", +"1+ c #5DA0DC", +"2+ c #4892D6", +"3+ c #3889D2", +"4+ c #4490D5", +"5+ c #7CB1DB", +"6+ c #82B3CF", +"7+ c #88B6C4", +"8+ c #7BAED1", +"9+ c #6CA8DE", +"0+ c #6AA6DD", +"a+ c #66A4DC", +"b+ c #6CA7D2", +"c+ c #61A1DA", +"d+ c #5D9FDA", +"e+ c #5A9DD9", +"f+ c #569BD8", +"g+ c #4F97D7", +"h+ c #9DCEF4", +"i+ c #B8E0FE", +"j+ c #78B4E7", +"k+ c #428FD4", +"l+ c #418ED4", +"m+ c #408DD4", +"n+ c #287FCE", +"o+ c #6BA7DD", +"p+ c #D8E0A0", +"q+ c #FCFBEA", +"r+ c #FEFDF9", +"s+ c #B3CDB4", +"t+ c #69A6DD", +"u+ c #65A4DC", +"v+ c #6DA7CE", +"w+ c #F0F0B7", +"x+ c #F3F3BD", +"y+ c #D4DEA3", +"z+ c #8BB4A9", +"A+ c #5299D8", +"B+ c #4C95D6", +"C+ c #65A6E0", +"D+ c #B4DEFE", +"E+ c #6BABE4", +"F+ c #3E8DD3", +"G+ c #3B8BD2", +"H+ c #3989D2", +"I+ c #3788D2", +"J+ c #1C78CC", +"K+ c #4D96D7", +"L+ c #5FA0DB", +"M+ c #DAE1A6", +"N+ c #FFFFFF", +"O+ c #B2CCB1", +"P+ c #62A2DB", +"Q+ c #DBE2A7", +"R+ c #F9F8D7", +"S+ c #74AAB6", +"T+ c #4C95D7", +"U+ c #4792D5", +"V+ c #96CAF3", +"W+ c #62A5E0", +"X+ c #3D8CD3", +"Y+ c #3588D1", +"Z+ c #3286D1", +"`+ c #3084D0", +" @ c #2E83D0", +".@ c #549AD9", +"+@ c #73ABDF", +"@@ c #D9E1A1", +"#@ c #A4C3A2", +"$@ c #AAC59A", +"%@ c #FEFEF9", +"&@ c #FDFCF0", +"*@ c #9DBE9D", +"=@ c #4E97D7", +"-@ c #4791D6", +";@ c #5BA1DE", +">@ c #589FDD", +",@ c #3C8BD3", +"'@ c #398AD2", +")@ c #3587D1", +"!@ c #3286D0", +"~@ c #2B81CF", +"{@ c #267FCE", +"]@ c #096DC8", +"^@ c #92BEE5", +"/@ c #579CD9", +"(@ c #5499D8", +"_@ c #D0DA89", +":@ c #9FBF9A", +"<@ c #70A6AC", +"[@ c #FBFAE4", +"}@ c #FCFBEC", +"|@ c #BBCC76", +"1@ c #3285D1", +"2@ c #438FD5", +"3@ c #3C8CD3", +"4@ c #3989D3", +"5@ c #3185D0", +"6@ c #2D82D0", +"7@ c #2A81CF", +"8@ c #257ECE", +"9@ c #237DCD", +"0@ c #056BC7", +"a@ c #5B9EDA", +"b@ c #D2DA89", +"c@ c #ABC491", +"d@ c #F1F1C0", +"e@ c #FBFBE8", +"f@ c #F9F7D7", +"g@ c #DEE079", +"h@ c #3D8CC9", +"i@ c #3386D1", +"j@ c #2D82CF", +"k@ c #277FCE", +"l@ c #227CCD", +"m@ c #1A78CB", +"n@ c #076CC8", +"o@ c #046AC7", +"p@ c #5D9FDB", +"q@ c #D2DB89", +"r@ c #FDFDF3", +"s@ c #F3F0AA", +"t@ c #F9F7D1", +"u@ c #F8F6C1", +"v@ c #EDEA85", +"w@ c #5797B5", +"x@ c #3B8BD3", +"y@ c #3889D3", +"z@ c #3185D1", +"A@ c #2B81D0", +"B@ c #267ECE", +"C@ c #1071CA", +"D@ c #0C6FC9", +"E@ c #92BFE5", +"F@ c #65A4DD", +"G@ c #62A2DC", +"H@ c #5EA0DB", +"I@ c #D3D984", +"J@ c #FBF9DC", +"K@ c #F9F6CC", +"L@ c #F4F0A2", +"M@ c #F6F2AD", +"N@ c #F4F09E", +"O@ c #E3E05C", +"P@ c #4F94C5", +"Q@ c #408ED4", +"R@ c #3D8CD4", +"S@ c #398AD3", +"T@ c #3688D2", +"U@ c #2980CF", +"V@ c #1E7ACD", +"W@ c #1B78CC", +"X@ c #1876CB", +"Y@ c #1474CA", +"Z@ c #0E70C9", +"`@ c #6AA7DE", +" # c #66A4DD", +".# c #D0D777", +"+# c #F8F4B7", +"@# c #F6F1A8", +"## c #B8CA7A", +"$# c #EAE45E", +"%# c #F1EB7F", +"&# c #F0E971", +"*# c #BAC852", +"=# c #4591D5", +"-# c #428FD5", +";# c #3E8DD4", +"># c #3789D2", +",# c #3487D2", +"'# c #2D83D0", +")# c #237DCE", +"!# c #207BCD", +"~# c #1977CC", +"{# c #1675CB", +"]# c #1273CA", +"^# c #6FAADF", +"/# c #6BA7DE", +"(# c #68A6DD", +"_# c #CED66D", +":# c #F3EF95", +"<# c #F2EC88", +"[# c #A2BF88", +"}# c #92B47F", +"|# c #ECE34B", +"1# c #EDE659", +"2# c #EBE242", +"3# c #85AE86", +"4# c #4691D6", +"5# c #4390D5", +"6# c #2880CF", +"7# c #217CCD", +"8# c #1776CB", +"9# c #9BC4E9", +"0# c #73ACE0", +"a# c #6DA9DE", +"b# c #CDD463", +"c# c #F0EA77", +"d# c #EEE86C", +"e# c #9DBC83", +"f# c #5C9EDB", +"g# c #C1CA42", +"h# c #EBE241", +"i# c #EAE239", +"j# c #E1D921", +"k# c #609DBA", +"l# c #418ED5", +"m# c #1F7ACD", +"n# c #1C79CC", +"o# c #93BEE5", +"p# c #CDD35B", +"q# c #EDE55D", +"r# c #ECE452", +"s# c #9BBA82", +"t# c #61A1DC", +"u# c #6BA5C3", +"v# c #E1D923", +"w# c #E9DE27", +"x# c #E8DD20", +"y# c #C5CA31", +"z# c #4F97D4", +"A# c #95C0E6", +"B# c #81B4E3", +"C# c #CBD154", +"D# c #EBE245", +"E# c #EAE13B", +"F# c #9BBB82", +"G# c #8EB58C", +"H# c #E7DB17", +"I# c #E7DB13", +"J# c #E6D908", +"K# c #98B770", +"L# c #77AEE0", +"M# c #B1D1EE", +"N# c #B0C573", +"O# c #BECA59", +"P# c #ADC371", +"Q# c #81B0BB", +"R# c #67A5DD", +"S# c #B1C257", +"T# c #AFC156", +"U# c #81AE99", +"V# c #5A9DD2", +"W# c #4F97D8", +"X# c #8FBCE5", +"Y# c #1775CB", +"Z# c #E4EFF8", +"`# c #80B4E3", +" $ c #7CB1E2", +".$ c #72ACDF", +"+$ c #5198D8", +"@$ c #4A94D7", +"#$ c #CFE3F4", +"$$ c #D6E6F5", +"%$ c #E0EDF8", +"&$ c #C8DEF3", +"*$ c #C6DDF2", +"=$ c #C5DDF2", +"-$ c #C3DBF2", +";$ c #C2DBF1", +">$ c #C0DAF1", +",$ c #BFD9F1", +"'$ c #BED9F0", +")$ c #BCD7F0", +"!$ c #BAD6F0", +"~$ c #B9D6EF", +"{$ c #B7D4EF", +"]$ c #B6D4EF", +"^$ c #B4D3EE", +"/$ c #B3D2EE", +"($ c #B2D1EE", +"_$ c #B0D0ED", +":$ c #AFD0ED", +"<$ c #ADCEED", +"[$ c #ACCEEC", +"}$ c #AACDEC", +"|$ c #C9DFF3", +"1$ c #DCEAF7", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . ", +" . . + @ # # # # # # # # # # # # # # # # # # # # # $ % . . ", +". . & * = - ; > > > > > > > , ' ) ! ~ { ' ] ^ / > > ( _ : . . ", +". < [ } | ^ 1 2 3 4 5 6 : 7 7 7 8 9 0 a a b c d 6 e f g h i . ", +". j k l 8 m n o p q r r s s t u v w x y z A B C D E F G H I . ", +". J K L 7 p M N O P Q J R S T U y V V V V V y x U W X Y . Z . ", +". ` ...r : +.@.J #.F $.%.&.*.=.=.=.=.=.=.-.-.-.-.;.>.,.'.).. ", +". !.~.4 P Q R 6 F $.{.].^./.(._.:.<.[.-.}.}.[.[.[.:.|.1.'.).. ", +". !.l 2.3.4.5.6.7.5 8.9.0.a.|.b.c.d.e.f.g.h.i.i.j.k.l.m.n.).. ", +". !.o.p.q.6.{.].r.s.= 4 t.u.v.l.l.l.l.w.w.x.k.y.z.A.A.B.C.).. ", +". !.D.5 E.5 F.G.H.I.J.K.L.M.z.A.A.A.N.O.O.P.P.P.Q.Q.R.S.C.).. ", +". !.T.U.5 V.9.W.X.Y.Z.`. +.+++@+#+#+$+$+$+%+%+&+*+=+-+| . ).. ", +". !.;+>+G.,+'+)+..!+Y ~+{+]+^+/+(+_+:+<+[+[+}+|+1+| 2+3+. ).. ", +". !.4+`.H.5+6+7+8+9+0+a+b+c+d+e+f+^ / g+h+i+j+k+l+m+m+n+. ).. ", +". J ; o+'+p+q+r+s+t+u+v+w+x+y+z+A+g+B+C+D+E+F+G+H+3+I+J+. ).. ", +". J K+L+Y.M+N+N+O+a+P+Q+N+N+R+S+, T+U+V+W+X+i Y+Z+`+ @% . ).. ", +". J A+.@+@@@N+N+#@T+$@%@N+&@*@=@- -@;@>@,@'@)@!@ @~@{@]@. ).. ", +". ^@/@k (@_@N+N+:@<@[@N+}@|@1@I+;+2@k+3@4@Y+5@6@7@8@9@0@. ).. ", +". ^@a@L ] b@N+N+c@d@e@f@g@h@i@o.l ~@5@D.D.Z+j@~@k@l@m@n@o@).. ", +". ^@^+p@~ q@N+r@s@t@u@v@w@x@y@D.z@ @A@~.B@{@n+~.l@J+C@D@]@r . ", +". E@F@G@H@I@J@K@L@M@N@O@P@Q@R@S@T@i@H l U@8@ .V@W@X@Y@} Z@r . ", +". E@`@ #2 .#+#@###$#%#&#*#=#-#;#x@>#,#z@'#7@~.)#!#K ~#{#]#M . ", +". E@^#/#(#_#:#<#[#}#|#1#2#3#4#5#Q@3@S@T@Z+H A@6#8@7#V@W@8#9#. ", +". E@0#!+a#b#c#d#e#f#g#h#i#j#k#; 4+l#;#T.>#,#o.'#7@{@)#m#n#9#. ", +". o#'+Y.( p#q#r#s#t#u#v#w#x#y#z#| 4#5#;+3@y@D.Z+ @A@6#< 7#Z . ", +". A#B#W.)+C#D#E#F#F@G@G#H#I#J#K#, - > 4+l#R@T.T@i@o.l U@6#m . ", +". L#M#s.= N#O#P#Q#`@R#2 S#T#U#V#k W#T+| =#-#;+x@y@D.z@ @t+X#. ", +". Y#Z#P `# $I.)+.$^#9+(#F@t#H@a@/@.@+$, @$> 5#Q@R@S@T@T+#$U@. ", +". . # $$%$&$*$=$-$;$>$,$'$)$!$~${$]$^$/$($_$:$<$[$}$|$1$!+. . ", +" . . . @3+3+3+3+3+3+3+3+3+3+3+3+3+3+3+3+3+3+3+3+3+5@C.. . ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . "}; diff --git a/ubuntu/lucid_automake/applications/konversation/debian/man/konversation.1.docbook b/ubuntu/lucid_automake/applications/konversation/debian/man/konversation.1.docbook new file mode 100644 index 000000000..f48e27b95 --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/man/konversation.1.docbook @@ -0,0 +1,214 @@ + + + + + + Nathaniel + W + Turner + nate@houseofnate.net + + + 2004 + Nathaniel W. Turner + + + + 2005-05-31 + + + + KONVERSATION + 1 + + + konversation + user friendly IRC client for KDE + + + + konversation + + + + + + + + + + + + + DESCRIPTION + + Konversation is client for the Internet Relay Chat (IRC) protocol. + + + IRC is a great way to meet friends on the net, make new acquaintances and + lose yourself in talk about your favorite subject. + + + Konversation is under active development and is currently in beta. + + + + OPTIONS + + All KDE and Qt + programs accept a some common command-line options. + + + + Generic options: + + + Show help about options + + + + Show Qt specific options + + + + Show KDE specific options + + + + Show all options + + + + Show author information + + + , + Show version information + + + + Show license information + + + + Indicates end of options + + + + + + Options + + + server + Server to connect + + + + port + Port to use (default: 6667) + + + + channel + Channel to join after connection + + + + nickname + Nickname to use + + + + password + Password for connection + + + + Use SSL for connection (default: + false) + + + + + + + SCRIPTING + Konversation looks for scripts in /usr/share/apps/konversation/scripts and + in ~/.kde/share/apps/konversation/scripts. + To execute a script, use the exec command: + + /exec + scriptname + arguments + + + For example: + + /exec gauge 75 + + + FILES + + + + ~/.kde/share/config/konversationrc + Main configuration + + + + ~/.kde/share/config/konversation.eventsrc + + Notification settings + + + + ~/.kde/share/apps/konversation/logs + + Directory containing channel log + files + + + + + + SEE ALSO + + The Konversation Handbook is an excellent resource for further reading. + It can be found under the Help menu in Konversation. + + + The following manual pages may also be of interest: + + konversationircprotocolhandler + 1 + , + + dcop + 1 + + + + + COPYRIGHT + + This manual page was written by Nathaniel W. Turner + nate@houseofnate.net for the + Debian system (but may be used by others). + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU General Public License, + Version 2 or any later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found in + /usr/share/common-licenses/GPL. + + + diff --git a/ubuntu/lucid_automake/applications/konversation/debian/man/konversationircprotocolhandler.1.docbook b/ubuntu/lucid_automake/applications/konversation/debian/man/konversationircprotocolhandler.1.docbook new file mode 100644 index 000000000..1752d7b2c --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/man/konversationircprotocolhandler.1.docbook @@ -0,0 +1,95 @@ + + + + + + Nathaniel + W + Turner + nate@houseofnate.net + + + 2004 + Nathaniel W. Turner + + + + 2004-07-06 + + + + KONVERSATIONIRCPROTOCOLHANDLER + 1 + + + konversationircprotocolhandler + handler for irc:// URI scheme + + + + konversationircprotocolhandler + + + + + + + DESCRIPTION + + This program takes a URI of the form + irc://server:port/ + (or simply irc://server/) and opens a + connection to the specified IRC server in a running Konversation client. + + + This program is registered with KDE as a handler for the irc URI scheme, + and KDE applications will use this program to handle such URI. + (For example, it will be called if a user clicks on an irc:// link on a + web page in Konqueror.) + + + This program can also be used directly, but since it is somewhat internal + to Konversation, it's interface might change in an incompatible way, and + relying on it is not advised. It is better to use Konversation's dcop + interface directly. + + + + BUGS + + This program will only work if there is a currently running konversation + process. + + + + SEE ALSO + + + konversation + 1 + , + + dcop + 1 + + + + + COPYRIGHT + + This manual page was written by Nathaniel W. Turner + nate@houseofnate.net for the + Debian system (but may be used by others). + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU General Public License, + Version 2 or any later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found in + /usr/share/common-licenses/GPL. + + + diff --git a/ubuntu/lucid_automake/applications/konversation/debian/patches/.gitignore b/ubuntu/lucid_automake/applications/konversation/debian/patches/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/ubuntu/lucid_automake/applications/konversation/debian/rules b/ubuntu/lucid_automake/applications/konversation/debian/rules new file mode 100755 index 000000000..d6b5c064e --- /dev/null +++ b/ubuntu/lucid_automake/applications/konversation/debian/rules @@ -0,0 +1,46 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include debian/cdbs/kde.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk + +DEB_CONFIGURE_INCLUDEDIR := /opt/kde3/include/kde +DEB_CONFIGURE_MANDIR := /opt/kde3/share/man +DEB_CONFIGURE_PREFIX := /opt/kde3 +DEB_CONFIGURE_INFODIR := /opt/kde3/share/info + +cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_DH_STRIP_ARGS := --dbg-package=konversation-kde3-dbg +DEB_INSTALL_DOCS_ALL = +DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/kde3 --with-extra-libs=/opt/kde3/lib --with-extra-includes=/opt/kde3/include/kde + +post-patches:: debian/stamp-bootstrap + +debian/stamp-bootstrap: + ! [ -f /usr/share/libtool/ltmain.sh ] || \ + cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh + ! [ -f /usr/share/libtool/config/ltmain.sh ] || \ + cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh + cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in + + make -f admin/Makefile.common cvs + touch debian/stamp-bootstrap + +### Manpages +XP = xsltproc --nonet --output debian/man/ +DB2MAN = /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl + +%.1 : %.1.docbook + $(XP) $(DB2MAN) $< + +GENERATED_MANPAGES := $(patsubst %.docbook,%,$(wildcard debian/man/*.docbook)) +build/konversation:: $(GENERATED_MANPAGES) +clean:: + -rm -f $(GENERATED_MANPAGES) + -rm -f po/*/konversation.gmo + +### Extra file installation +install/konversation-kde3:: + install -D -m 644 konversation/scripts/README \ + debian/konversation-kde3/opt/kde3/share/doc/konversation/README.scripts -- cgit v1.2.3