summaryrefslogtreecommitdiffstats
path: root/ubuntu/precise/applications/tdesvn/debian
diff options
context:
space:
mode:
Diffstat (limited to 'ubuntu/precise/applications/tdesvn/debian')
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/cdbs/buildvars.mk86
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/cdbs/debian-qt-kde.mk110
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/cdbs/kde.mk97
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/cdbs/team-members16
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/cdbs/uploaders.mk29
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/cdbs/versions.pl19
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/changelog417
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/compat1
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/control60
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/control.in61
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/copyright207
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/docs3
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/icons/tdesvn.xpm214
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/libsvnqt-trinity-dev.install2
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/libsvnqt4-trinity.install1
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/man/tdesvn.1171
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/man/tdesvnaskpass.1145
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/patches/series0
-rwxr-xr-xubuntu/precise/applications/tdesvn/debian/rules27
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/source/format1
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/source/options6
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/tdesvn-kio-plugins-trinity.install4
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.install14
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.manpages2
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.menu8
-rw-r--r--ubuntu/precise/applications/tdesvn/debian/watch2
26 files changed, 1703 insertions, 0 deletions
diff --git a/ubuntu/precise/applications/tdesvn/debian/cdbs/buildvars.mk b/ubuntu/precise/applications/tdesvn/debian/cdbs/buildvars.mk
new file mode 100644
index 000000000..23d4709dc
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/cdbs/buildvars.mk
@@ -0,0 +1,86 @@
+# -*- mode: makefile; coding: utf-8 -*-
+# Copyright © 2002,2003 Colin Walters <walters@debian.org>
+# 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/precise/applications/tdesvn/debian/cdbs/debian-qt-kde.mk b/ubuntu/precise/applications/tdesvn/debian/cdbs/debian-qt-kde.mk
new file mode 100644
index 000000000..5e704aa4a
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/cdbs/debian-qt-kde.mk
@@ -0,0 +1,110 @@
+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:
+ 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/trinity/share/doc/tde/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/trinity/share/doc/tde/HTML/en/$$pkg; \
+ cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
+ /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en/$$pkg/index.docbook; \
+ done
+ for pkg in $(DOC_HTML_PRUNE) ; do \
+ rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
+ done
+
+clean::
+ rm -f debian/stamp-cvs-make
+
+endif
+
+#common-build-indep:: debian/stamp-kde-apidox
+#debian/stamp-kde-apidox:
+# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox)
+# touch $@
+#
+#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
diff --git a/ubuntu/precise/applications/tdesvn/debian/cdbs/kde.mk b/ubuntu/precise/applications/tdesvn/debian/cdbs/kde.mk
new file mode 100644
index 000000000..4a098a312
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/cdbs/kde.mk
@@ -0,0 +1,97 @@
+# -*- mode: makefile; coding: utf-8 -*-
+# Copyright © 2003 Christopher L Cheney <ccheney@debian.org>
+# 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}/trinity
+export kde_htmldir = \$${datadir}/doc/tde/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/"
+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/trinity/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/precise/applications/tdesvn/debian/cdbs/team-members b/ubuntu/precise/applications/tdesvn/debian/cdbs/team-members
new file mode 100644
index 000000000..05761af6e
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/cdbs/team-members
@@ -0,0 +1,16 @@
+Sune Vuorela <debian@pusling.com>
+Ana Beatriz Guerrero Lopez <ana@debian.org>
+Fathi Boudra <fboudra@free.fr>
+Modestas Vainius <geromanas@mailas.com>
+Josh Metzler <joshdeb@metzlers.org>
+Isaac Clerencia <isaac@debian.org>
+Adeodato Simó <dato@net.com.org.es>
+Adeodato Simo <dato@net.com.org.es>
+Christopher Martin <chrsmrtn@debian.org>
+Daniel Schepler <schepler@debian.org>
+Sarah Hobbs <hobbsee@ubuntu.com>
+Nacho Barrientos Arias <nacho@debian.org>
+Ricardo Javier Cardenes Medina <rcardenes@debian.org>
+Ricardo Cardenes <rcardenes@debian.org>
+Armin Berres <trigger+debian@space-based.de>
+Francesco Pedrini <francesco.pedrini@gmail.com>
diff --git a/ubuntu/precise/applications/tdesvn/debian/cdbs/uploaders.mk b/ubuntu/precise/applications/tdesvn/debian/cdbs/uploaders.mk
new file mode 100644
index 000000000..31adfe31e
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/cdbs/uploaders.mk
@@ -0,0 +1,29 @@
+
+MAINTAINER=Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
+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/precise/applications/tdesvn/debian/cdbs/versions.pl b/ubuntu/precise/applications/tdesvn/debian/cdbs/versions.pl
new file mode 100644
index 000000000..9ce11d8a3
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/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/precise/applications/tdesvn/debian/changelog b/ubuntu/precise/applications/tdesvn/debian/changelog
new file mode 100644
index 000000000..07180f154
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/changelog
@@ -0,0 +1,417 @@
+tdesvn-trinity (1.0.4-2~2ubuntu4) karmic; urgency=low
+
+ * Karmic rebuild
+
+ -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600
+
+tdesvn-trinity (1.0.4-2~0ubuntu4) intrepid; urgency=low
+
+ * Moved Trinity to /opt/trinity
+ * Integrated properly with KDE4.2+
+
+ -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 10 March 2009 12:31:00 -0600
+
+tdesvn-trinity (1.0.4-2~0ubuntu3) intrepid; urgency=low
+
+ * Added -trinity suffix
+
+ -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 31 Dec 2008 17:59:00 -0600
+
+tdesvn (1.0.4-2~hardy1) hardy-backports; urgency=low
+
+ * Upload fixed Trinity package from sid for compatibility with svn 1.5
+ (LP: #283468)
+ - Intrepid package is KDE4 and not a suitable solution for
+ hardy-backports
+
+ -- Scott Kitterman <scott@kitterman.com> Wed, 15 Oct 2008 01:14:20 -0400
+
+tdesvn (1.0.4-2) unstable; urgency=low
+
+ * debian/control
+ - Add Vcs-* fields.
+ - Set the Debian KDE Extras Team as Maintainer and add myself to
+ Uploaders.
+
+ -- Michael Biebl <biebl@debian.org> Fri, 10 Oct 2008 22:46:45 +0200
+
+tdesvn (1.0.4-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@debian.org> Sat, 04 Oct 2008 06:55:22 +0200
+
+tdesvn (1.0.2-1) unstable; urgency=low
+
+ * New upstream release.
+ * Switch to quilt for patch handling.
+ * debian/patches/01-shortcuts.patch
+ - Make sure we use unique shortcuts which don't interfere with other
+ components when tdesvn is embedded as kpart. Closes: #452245
+
+ -- Michael Biebl <biebl@debian.org> Sat, 20 Sep 2008 10:46:07 +0200
+
+tdesvn (1.0.1-1) experimental; urgency=low
+
+ * New upstream release.
+ * debian/patches/01-bashisms_kconf_update.patch
+ - Removed, merged upstream.
+ * debian/patches/02-docimages.patch
+ - Removed, fixed upstream.
+ * debian/control
+ - Add Build-Depends on libsqlite3-dev, required for building the log cache
+ support.
+
+ -- Michael Biebl <biebl@debian.org> Wed, 03 Sep 2008 02:40:29 +0200
+
+tdesvn (0.14.6-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@debian.org> Tue, 15 Jul 2008 14:26:45 +0200
+
+tdesvn (0.14.5-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/control
+ - Don't conflict with kde4 versions of tdesdk-kio-plugins. Closes: #483260
+ - Bump Standards-Version to 3.8.0. No further changes.
+ * debian/watch
+ - Update watch file to match the new download location.
+ * debian/patches/02-docimages.patch
+ - Specifiy the path to the doc images directly.
+ Beginning with version 2.4.7, cmake copies symlinks verbatim, leading to
+ dangling symlinks. Closes: #480585
+
+ -- Michael Biebl <biebl@debian.org> Mon, 14 Jul 2008 20:06:12 +0200
+
+tdesvn (0.14.4-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@debian.org> Mon, 19 May 2008 18:25:35 +0200
+
+tdesvn (0.14.3-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/rules
+ - Include the cmake.mk class provided by cdbs.
+ * debian/cdbs/cmake.mk
+ - Drop our custom cmake.mk Makefile as we now use the one provided by
+ cdbs.
+ * debian/control
+ - Bump Build-Depends on cdbs to (>= 0.4.50) for the cmake support.
+ - Drop the "-1" revsion of the libssl-dev Build-Depends to make lintian
+ happy.
+
+ -- Michael Biebl <biebl@debian.org> Fri, 04 Apr 2008 01:02:42 +0200
+
+tdesvn (0.14.2-2) unstable; urgency=low
+
+ * debian/rules
+ - Pass -DLIB_SUFFIX="" to DEB_CMAKE_EXTRA_FLAGS. This ensures that the
+ libraries are installed into lib and not lib64 on 64-bit architectures.
+ Closes: #468064
+ - Update DEB_DH_MAKESHLIBS_ARGS for libsvnqt4.
+
+ -- Michael Biebl <biebl@debian.org> Tue, 26 Feb 2008 23:31:17 +0100
+
+tdesvn (0.14.2-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/control
+ - Bump Standards-Version to 3.7.3. No further changes required.
+
+ -- Michael Biebl <biebl@debian.org> Wed, 20 Feb 2008 00:15:24 +0100
+
+tdesvn (0.14.1-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/watch
+ - Updated for the new download location. Closes: #449689
+
+ -- Michael Biebl <biebl@debian.org> Mon, 12 Nov 2007 11:36:34 +0100
+
+tdesvn (0.14.0-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/tdesvn.menu
+ - Change section to "Applications/Programming" to comply with the new menu
+ spec.
+ * debian/patches/01-bashisms_kconf_update.patch
+ - Fix a bashism in the kconf_update script.
+ * debian/control
+ - Use the new "Homepage:" field to specify the upstream URL.
+ - SONAME bump, rename the libsvnqt3 package to libsvnqt4.
+ * Rename libsvnqt3.install to libsvnqt4.install.
+ * debian/tdesvn.install
+ - Install the kconf_update files.
+ * debian/libsvnqt-dev.install
+ - No longer install the libtool *.la files for libsvnqt.
+
+ -- Michael Biebl <biebl@debian.org> Thu, 18 Oct 2007 02:20:32 +0200
+
+tdesvn (0.13.0-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@debian.org> Fri, 10 Aug 2007 00:13:38 +0200
+
+tdesvn (0.12.1-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/watch
+ - Adapt to new directory layout.
+ * debian/control
+ - Replace ${Source-Version} with ${binary:Version}.
+
+ -- Michael Biebl <biebl@debian.org> Wed, 13 Jun 2007 16:07:32 +0200
+
+tdesvn (0.12.0-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/patches/01-po_ca.patch
+ + Removed. Merged upstream.
+
+ -- Michael Biebl <biebl@debian.org> Sat, 05 May 2007 02:07:52 +0200
+
+tdesvn (0.11.2-2) unstable; urgency=low
+
+ * debian/patches/01-po_ca.patch
+ - Added. Updates to the Catalan translation by Antoni Bella Pérez. Thanks!
+ Closes: #417963
+
+ -- Michael Biebl <biebl@debian.org> Thu, 05 Apr 2007 21:16:11 +0200
+
+tdesvn (0.11.2-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@debian.org> Mon, 26 Mar 2007 00:51:07 +0200
+
+tdesvn (0.11.1-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@debian.org> Mon, 5 Mar 2007 06:44:49 +0100
+
+tdesvn (0.11.0-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/patches/01-kompare_diff.patch
+ + Removed. Fixed upstream.
+ * debian/control
+ + Add a "Suggests: kdiff3" to tdesvn. kdiff3 can be used as an external
+ merge program.
+
+ -- Michael Biebl <biebl@debian.org> Fri, 27 Oct 2006 12:52:15 +0200
+
+tdesvn (0.10.0-2) unstable; urgency=low
+
+ * Update maintainer email address to biebl@debian.org.
+ * debian/patches/01-kompare_diff.patch
+ + Added. Fixes a problem when using kompare as external diff application.
+ Closes: #394817
+
+ -- Michael Biebl <biebl@debian.org> Mon, 23 Oct 2006 13:12:45 +0200
+
+tdesvn (0.10.0-1) unstable; urgency=low
+
+ * New upstream release.
+ * API bump for libsvnqt
+ + Updated debian/control: libsvnqt2 -> libsvnqt3.
+ + Moved debian/libsvnqt2.install to debian/libsvnqt3.install.
+
+ -- Michael Biebl <biebl@teco.edu> Thu, 5 Oct 2006 01:50:41 +0200
+
+tdesvn (0.9.3-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/control
+ + Changed build dependency from libsvn0-dev to libsvn-dev.
+ + libsvnqt-dev: Changed "Depends: libsvn0-dev" to libsvn-dev.
+ * debian/patches/01-cmake_uic.patch
+ + Removed, merged upstream.
+ * debian/patches/02-build_system.patch
+ + Removed, fixed upstream.
+
+ -- Michael Biebl <biebl@teco.edu> Sat, 16 Sep 2006 16:54:55 +0200
+
+tdesvn (0.9.2-1) unstable; urgency=low
+
+ * New upstream release.
+ + Improved UTF-8 handling. Closes: #381424
+ + Dynamic context menues can now be disabled from within tdesvn.
+ Closes: #377592. This also addresses #370303.
+ * Switched the build system to CMake.
+ + Added debian/cdbs/cmake.mk, a cdbs class for CMake (taken from the
+ strigi package).
+ + Updated the build dependencies in debian/control accordingly.
+ + Updated debian/rules. Include debian/cdbs/cmake.mk instead of
+ /usr/share/cdbs/1/class/kde.mk.
+ * Updated debian/watch to scan for bz2 tarballs.
+ * Backported two build system related fixes from trunk (01-cmake_uic.patch
+ and 02-build_system.patch).
+
+ -- Michael Biebl <biebl@teco.edu> Fri, 1 Sep 2006 13:40:57 +0200
+
+tdesvn (0.9.1-1) unstable; urgency=medium
+
+ * New upstream release.
+ + Correct diffs for non-UTF8 locales. Closes: #369809
+ * Ship updated admin/cvs.sh with support for autoconf-2.6. Closes: #379826
+
+ -- Michael Biebl <biebl@teco.edu> Tue, 25 Jul 2006 22:36:03 +0200
+
+tdesvn (0.9.0-1) unstable; urgency=low
+
+ * New upstream release.
+ + The dynamic context menu entries are now in their own, exclusive
+ submenu. This is a workaround for #370303.
+ * Removed patch makefile_am.diff, merged upstream.
+
+ -- Michael Biebl <biebl@teco.edu> Mon, 24 Jul 2006 02:52:17 +0200
+
+tdesvn (0.8.5-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@teco.edu> Sun, 25 Jun 2006 08:00:01 +0200
+
+tdesvn (0.8.4-1) unstable; urgency=low
+
+ * New upstream release.
+ * Bumped Standards-Version to 3.7.2, no further changes required.
+
+ -- Michael Biebl <biebl@teco.edu> Sun, 21 May 2006 13:32:16 +0200
+
+tdesvn (0.8.3-1) unstable; urgency=low
+
+ * New upstream release. Closes: #365643
+ + Local characters in URLs are properly encoded now. Closes: #364910
+ + Do not print a warning message if svnqt and tdesvn version differ.
+ Closes: #365743
+ * Bumped Standards-Version to 3.7.1, no further changes required.
+
+ -- Michael Biebl <biebl@teco.edu> Thu, 4 May 2006 00:18:09 +0200
+
+tdesvn (0.8.2-1) unstable; urgency=low
+
+ * New upstream release.
+ * Added a "Recommends: graphviz" to tdesvn. dot is part of the graphviz
+ package and used by tdesvn to generate nice looking revision graphs.
+ * The soname of svnqt changed from 1 to 2. Updated the control files
+ accordingly.
+ * Moved libsvnqt2 in front of tdesvn in debian/control. This way the shlibs
+ file of libsvnqt2 is created before dh_shlibdeps for tdesvn is run.
+
+ -- Michael Biebl <biebl@teco.edu> Sun, 23 Apr 2006 00:40:43 +0200
+
+tdesvn (0.8.1-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@teco.edu> Sun, 2 Apr 2006 15:18:56 +0200
+
+tdesvn (0.8.0-1) unstable; urgency=low
+
+ * New upstream release.
+ * Added two new binary packages libsvnqt1 and libsvnqt-dev. svnqt is a Qt
+ wrapper library for subversion. tdesvn uses it to ease the access to
+ libsvn.
+ * Updated copyright file and added information about svnqt.
+ * Bumped debhelper compatibility to 5.
+
+ -- Michael Biebl <biebl@teco.edu> Fri, 24 Mar 2006 08:56:09 +0100
+
+tdesvn (0.7.4-1) unstable; urgency=low
+
+ * New upstream release.
+ * Fixed indentation of homepage url in the long description.
+ * Disabled autoloading of kded service, added patch kded_no_autoload.diff.
+ Fixes problem with dynamic context menus. Closes: #348411
+
+ -- Michael Biebl <biebl@teco.edu> Wed, 1 Mar 2006 22:19:30 +0100
+
+tdesvn (0.7.3-1) unstable; urgency=low
+
+ * New upstream release.
+ + Removed patch store_passwords_config.diff, merged upstream.
+ + Removed patch settings_icons.diff, merged upstream.
+
+ -- Michael Biebl <biebl@teco.edu> Thu, 2 Feb 2006 15:25:50 +0100
+
+tdesvn (0.7.2-2) unstable; urgency=low
+
+ * subversion_settings.cpp was not regenerated from the patched ui file.
+ Enforce its recreation via rm. This really fixes #345518.
+
+ -- Michael Biebl <biebl@teco.edu> Fri, 13 Jan 2006 16:09:35 +0100
+
+tdesvn (0.7.2-1) unstable; urgency=low
+
+ * New upstream release.
+ + Removed patch context_menu.diff, merged upstream.
+ * Added patch store_passwords_config.diff. Closes: #345518
+ * Added patch settings_icons.diff for more distinct icons in the settings
+ dialog.
+
+ -- Michael Biebl <biebl@teco.edu> Fri, 13 Jan 2006 04:31:54 +0100
+
+tdesvn (0.7.1-1) unstable; urgency=low
+
+ * New upstream release.
+ * Tightened build dependency on tdelibs4-dev because of the C++ allocator
+ change.
+ * Tightened build dependency on libsvn0-dev as tdesvn now requires subversion
+ 1.2 or higher.
+ * Split up package into core application tdesvn and KIO plugin package
+ tdesvn-kio-plugins.
+ * Updated menu icon.
+ * Use Debian libtool and regenerate the autotools files. Closes: #343952
+ + Add build dependencies to automake1.9, autoconf and libtool.
+ + Patch makefile_am.diff from Aurelien Jarno <aurel32@debian.org> adds
+ missing libraries needed for linking.
+
+ -- Michael Biebl <biebl@teco.edu> Mon, 19 Dec 2005 21:47:39 +0100
+
+tdesvn (0.6.3-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@teco.edu> Mon, 24 Oct 2005 17:37:02 +0200
+
+tdesvn (0.6.2-1) unstable; urgency=low
+
+ * New upstream release.
+ * Added a versioned build dependency to libssl-dev (>= 0.9.8a-1) to make
+ sure tdesvn links against a version of openssl which has symbol
+ versioning.
+
+ -- Michael Biebl <biebl@teco.edu> Wed, 5 Oct 2005 15:40:53 +0200
+
+tdesvn (0.6.1-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@teco.edu> Tue, 4 Oct 2005 04:04:14 +0200
+
+tdesvn (0.6.0-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Michael Biebl <biebl@teco.edu> Fri, 23 Sep 2005 16:47:04 +0200
+
+tdesvn (0.5.3-2) unstable; urgency=low
+
+ * Removed useless build dependency on build-essential which was
+ generated by cdbs. Closes: #326638
+
+ -- Michael Biebl <biebl@teco.edu> Mon, 5 Sep 2005 18:50:39 +0200
+
+tdesvn (0.5.3-1) unstable; urgency=low
+
+ * Initial release. Closes: #323697
+
+ -- Michael Biebl <biebl@teco.edu> Fri, 2 Sep 2005 19:26:13 +0200
+
diff --git a/ubuntu/precise/applications/tdesvn/debian/compat b/ubuntu/precise/applications/tdesvn/debian/compat
new file mode 100644
index 000000000..7ed6ff82d
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/ubuntu/precise/applications/tdesvn/debian/control b/ubuntu/precise/applications/tdesvn/debian/control
new file mode 100644
index 000000000..0c1f99451
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/control
@@ -0,0 +1,60 @@
+Source: tdesvn-trinity
+Section: devel
+Priority: optional
+Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
+Uploaders: Michael Biebl <biebl@debian.org>
+Build-Depends: cdbs (>= 0.4.50), debhelper (>= 5.0.0), cmake (>= 2.4), tdelibs4-trinity-dev (>= 4:3.4.3-2), libsvn-dev (>= 1.2.0), libssl-dev (>= 0.9.8a), libsqlite3-dev, gettext, quilt, libaprutil1-dev
+Standards-Version: 3.8.4
+
+Package: libsvnqt4-trinity
+Section: libs
+Architecture: any
+Replaces: libsvnqt4-trinity (<< 4:14.0.0)
+Breaks: libsvnqt4-trinity (<< 4:14.0.0)
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Qt wrapper library for subversion [Trinity]
+ This package provides svnqt, a Qt wrapper library around the
+ subversion library.
+ .
+ It is based on the RapidSvn SvnCpp library, a subversion client API
+ written in C++.
+
+Package: libsvnqt-trinity-dev
+Section: libdevel
+Architecture: any
+Replaces: libsvnqt-trinity-dev (<< 4:14.0.0)
+Breaks: libsvnqt-trinity-dev (<< 4:14.0.0)
+Depends: libsvnqt4-trinity (= ${binary:Version}), libqt3-mt-dev, libsvn-dev
+Description: Qt wrapper library for subversion (development files) [Trinity]
+ This package contains the header files and symbolic links that developers
+ using svnqt will need.
+
+Package: tdesvn-trinity
+Section: devel
+Architecture: any
+Replaces: kdesvn-trinity (<< 4:14.0.0)
+Breaks: kdesvn-trinity (<< 4:14.0.0)
+Depends: ${shlibs:Depends}, ${misc:Depends}, tdesvn-kio-plugins-trinity (= ${binary:Version})
+Recommends: kompare-trinity, graphviz
+Suggests: khelpcenter-trinity, kdiff3-trinity
+Description: subversion client with tight KDE integration [Trinity]
+ KDESvn is a graphical client for the subversion revision control
+ system (svn).
+ .
+ Besides offering common and advanced svn operations, it features
+ a tight integration into KDE and can be embedded into other KDE
+ applications like konqueror via the KDE component technology KParts.
+
+Package: tdesvn-kio-plugins-trinity
+Section: devel
+Architecture: any
+Replaces: kdesvn-kio-plugins-trinity (<< 4:14.0.0)
+Breaks: kdesvn-kio-plugins-trinity (<< 4:14.0.0)
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Conflicts: tdesdk-kio-plugins-trinity
+Description: subversion I/O slaves for Trinity
+ This packages includes KIO slaves for svn, svn+file, svn+http,
+ svn+https, svn+ssh. This allows you to access subversion repositories
+ inside any KIO enabled KDE application.
+ .
+ This package is part of tdesvn-trinity.
diff --git a/ubuntu/precise/applications/tdesvn/debian/control.in b/ubuntu/precise/applications/tdesvn/debian/control.in
new file mode 100644
index 000000000..dc185ccef
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/control.in
@@ -0,0 +1,61 @@
+Source: tdesvn-trinity
+Section: devel
+Priority: optional
+Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
+XSBC-Original-Maintainer: @@@MAINTAINER@@@
+Uploaders: @@@UPLOADERS@@@
+Build-Depends: cdbs (>= 0.4.50), debhelper (>= 5.0.0), cmake (>= 2.4), tdelibs4-trinity-dev (>= 4:3.4.3-2), libsvn-dev (>= 1.2.0), libssl-dev (>= 0.9.8a), libsqlite3-dev, gettext, quilt, libaprutil1-dev
+Standards-Version: 3.8.4
+
+Package: libsvnqt4-trinity
+Section: libs
+Architecture: any
+Replaces: libsvnqt4-kde3 (<< 4:3.5.13)
+Breaks: libsvnqt4-kde3 (<< 4:3.5.13)
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Qt wrapper library for subversion [Trinity]
+ This package provides svnqt, a Qt wrapper library around the
+ subversion library.
+ .
+ It is based on the RapidSvn SvnCpp library, a subversion client API
+ written in C++.
+
+Package: libsvnqt-trinity-dev
+Section: libdevel
+Architecture: any
+Replaces: libsvnqt-kde3-dev (<< 4:3.5.13)
+Breaks: libsvnqt-kde3-dev (<< 4:3.5.13)
+Depends: libsvnqt4-trinity (= ${binary:Version}), libqt3-mt-dev, libsvn-dev
+Description: Qt wrapper library for subversion (development files) [Trinity]
+ This package contains the header files and symbolic links that developers
+ using svnqt will need.
+
+Package: tdesvn-trinity
+Section: devel
+Architecture: any
+Replaces: tdesvn-kde3 (<< 4:3.5.13)
+Breaks: tdesvn-kde3 (<< 4:3.5.13)
+Depends: ${shlibs:Depends}, ${misc:Depends}, tdesvn-kio-plugins-trinity (= ${binary:Version})
+Recommends: kompare-trinity, graphviz
+Suggests: khelpcenter-trinity, kdiff3-trinity
+Description: subversion client with tight KDE integration [Trinity]
+ KDESvn is a graphical client for the subversion revision control
+ system (svn).
+ .
+ Besides offering common and advanced svn operations, it features
+ a tight integration into KDE and can be embedded into other KDE
+ applications like konqueror via the KDE component technology KParts.
+
+Package: tdesvn-kio-plugins-trinity
+Section: devel
+Architecture: any
+Replaces: tdesvn-kio-plugins-kde3 (<< 4:3.5.13)
+Breaks: tdesvn-kio-plugins-kde3 (<< 4:3.5.13)
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Conflicts: tdesdk-kio-plugins-trinity
+Description: subversion I/O slaves for Trinity
+ This packages includes KIO slaves for svn, svn+file, svn+http,
+ svn+https, svn+ssh. This allows you to access subversion repositories
+ inside any KIO enabled KDE application.
+ .
+ This package is part of tdesvn-trinity.
diff --git a/ubuntu/precise/applications/tdesvn/debian/copyright b/ubuntu/precise/applications/tdesvn/debian/copyright
new file mode 100644
index 000000000..74f00ccfd
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/copyright
@@ -0,0 +1,207 @@
+This package was debianized by Michael Biebl <biebl@teco.edu> on
+Sun, 21 Aug 2005 01:08:16 +0200.
+
+It was downloaded from http://www.alwins-world.de/programs/tdesvn/
+
+Upstream Author: Rajko Albrecht <ral@alwins-world.de>
+
+Copyright:
+
+ Copyright (C) 2005 Rajko Albrecht <ral@alwins-world.de>
+
+ 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.
+
+ 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+ Most of the files in src/svncpp/* are taken from the RapidSVN Project and
+ distributed under the LGPL.
+
+ On Debian GNU/Linux systems, the complete text of the GPL and LGPL
+ can be found in the /usr/share/common-licenses/GPL and
+ /usr/share/common-licenses/LGPL files.
+
+ In addition, as a special exception, Rajko Albrecht
+ gives permission to link the code of this program with any
+ version of the OpenSSL library which is distributed under a
+ license identical to that listed in the included COPYING.OpenSSL
+ file, and distribute linked combinations including the two.
+ you must obey the GNU General Public License in all respects
+ for all of the code used other than OpenSSL. If you modify
+ this file, you may extend this exception to your version of the
+ file, but you are not obligated to do so. If you do not wish to
+ do so, delete this exception statement from your version.
+
+
+COPYING.OpenSSL
+---------------
+
+ LICENSE ISSUES
+ ==============
+
+ The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
+ the OpenSSL License and the original SSLeay license apply to the toolkit.
+ See below for the actual license texts. Actually both licenses are BSD-style
+ Open Source licenses. In case of any license issues related to OpenSSL
+ please contact openssl-core@openssl.org.
+
+ OpenSSL License
+ ---------------
+
+/* ====================================================================
+ * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in
+ * the documentation and/or other materials provided with the
+ * distribution.
+ *
+ * 3. All advertising materials mentioning features or use of this
+ * software must display the following acknowledgment:
+ * "This product includes software developed by the OpenSSL Project
+ * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
+ *
+ * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
+ * endorse or promote products derived from this software without
+ * prior written permission. For written permission, please contact
+ * openssl-core@openssl.org.
+ *
+ * 5. Products derived from this software may not be called "OpenSSL"
+ * nor may "OpenSSL" appear in their names without prior written
+ * permission of the OpenSSL Project.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
+ * acknowledgment:
+ * "This product includes software developed by the OpenSSL Project
+ * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
+ * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ * ====================================================================
+ *
+ * This product includes cryptographic software written by Eric Young
+ * (eay@cryptsoft.com). This product includes software written by Tim
+ * Hudson (tjh@cryptsoft.com).
+ *
+ */
+
+ Original SSLeay License
+ -----------------------
+
+/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
+ * All rights reserved.
+ *
+ * This package is an SSL implementation written
+ * by Eric Young (eay@cryptsoft.com).
+ * The implementation was written so as to conform with Netscapes SSL.
+ *
+ * This library is free for commercial and non-commercial use as long as
+ * the following conditions are aheared to. The following conditions
+ * apply to all code found in this distribution, be it the RC4, RSA,
+ * lhash, DES, etc., code; not just the SSL code. The SSL documentation
+ * included with this distribution is covered by the same copyright terms
+ * except that the holder is Tim Hudson (tjh@cryptsoft.com).
+ *
+ * Copyright remains Eric Young's, and as such any Copyright notices in
+ * the code are not to be removed.
+ * If this package is used in a product, Eric Young should be given attribution
+ * as the author of the parts of the library used.
+ * This can be in the form of a textual message at program startup or
+ * in documentation (online or textual) provided with the package.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * "This product includes cryptographic software written by
+ * Eric Young (eay@cryptsoft.com)"
+ * The word 'cryptographic' can be left out if the rouines from the library
+ * being used are not cryptographic related :-).
+ * 4. If you include any Windows specific code (or a derivative thereof) from
+ * the apps directory (application code) you must include an acknowledgement:
+ * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
+ *
+ * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * The licence and distribution terms for any publically available version or
+ * derivative of this code cannot be changed. i.e. this code cannot simply be
+ * copied and put under another distribution licence
+ * [including the GNU Public Licence.]
+ */
+
+
+svnqt
+-----
+
+The svnqt library (files src/svnqt/*) is based on the RapidSvn SvnCpp library,
+which is distributed under the LGPL.
+
+ * ====================================================================
+ * Copyright (c) 2002-2005 The RapidSvn Group. All rights reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library (in the file LGPL.txt); if not,
+ * write to the Free Software Foundation, Inc., 51 Franklin St,
+ * Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * This software consists of voluntary contributions made by many
+ * individuals. For exact contribution history, see the revision
+ * history and logs, available at http://rapidsvn.tigris.org/.
+ * ====================================================================
+
+On Debian GNU/Linux systems, the complete text of the GPL and LGPL
+can be found in the /usr/share/common-licenses/GPL and
+/usr/share/common-licenses/LGPL files.
+
diff --git a/ubuntu/precise/applications/tdesvn/debian/docs b/ubuntu/precise/applications/tdesvn/debian/docs
new file mode 100644
index 000000000..ca0272abf
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/docs
@@ -0,0 +1,3 @@
+AUTHORS
+README
+TODO
diff --git a/ubuntu/precise/applications/tdesvn/debian/icons/tdesvn.xpm b/ubuntu/precise/applications/tdesvn/debian/icons/tdesvn.xpm
new file mode 100644
index 000000000..38da00075
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/icons/tdesvn.xpm
@@ -0,0 +1,214 @@
+/* XPM */
+static char * tdesvn_xpm[] = {
+"32 32 179 2",
+" c None",
+". c #567CB8",
+"+ c #5A7FBA",
+"@ c #5F83BC",
+"# c #6487BE",
+"$ c #698BC0",
+"% c #6E8EC2",
+"& c #7392C4",
+"* c #7896C6",
+"= c #7D9AC8",
+"- c #819DCA",
+"; c #86A1CC",
+"> c #8BA5CE",
+", c #90A9D0",
+"' c #95ACD2",
+") c #9AB0D4",
+"! c #9FB4D6",
+"~ c #A3B7D8",
+"{ c #9EB4D6",
+"] c #90A8D0",
+"^ c #7C99C8",
+"/ c #7796C6",
+"( c #698AC0",
+"_ c #5A7FB9",
+": c #9DB1D1",
+"< c #5F6A7C",
+"[ c #353941",
+"} c #677690",
+"| c #8796B0",
+"1 c #A3A4A5",
+"2 c #D4D4D4",
+"3 c #1D1F22",
+"4 c #849ABF",
+"5 c #9FACC1",
+"6 c #EEEEEE",
+"7 c #FFFFFF",
+"8 c #737579",
+"9 c #677895",
+"0 c #ACBEDB",
+"a c #EEEFF0",
+"b c #E7E7E7",
+"c c #656A72",
+"d c #889EC4",
+"e c #A0B5D6",
+"f c #D6DFEE",
+"g c #ABBDDA",
+"h c #99A7BD",
+"i c #8499BA",
+"j c #5E7FB2",
+"k c #5976A4",
+"l c #8CA5CB",
+"m c #7486A3",
+"n c #93A9CB",
+"o c #CFDAEA",
+"p c #AEC0DD",
+"q c #809AC3",
+"r c #7690B9",
+"s c #496490",
+"t c #1A1D21",
+"u c #5D6269",
+"v c #5D6F8D",
+"w c #869FC7",
+"x c #22262B",
+"y c #7B7D81",
+"z c #B1B6BC",
+"A c #B0C0D9",
+"B c #9AB1D4",
+"C c #C2C8D1",
+"D c #878D97",
+"E c #5A6D8C",
+"F c #2D3849",
+"G c #B2B2B2",
+"H c #888E99",
+"I c #88A1C8",
+"J c #91A9D0",
+"K c #95ADD2",
+"L c #98AFD3",
+"M c #9CB2D5",
+"N c #7E8DA4",
+"O c #78797B",
+"P c #E6E6E6",
+"Q c #AAB8CE",
+"R c #B4C4DF",
+"S c #B0C2DD",
+"T c #ADBEDC",
+"U c #A8BBDA",
+"V c #A4B8D8",
+"W c #D5DEED",
+"X c #FEFEFE",
+"Y c #F4F4F4",
+"Z c #474E5A",
+"` c #2B3443",
+" . c #BEBEBE",
+".. c #92979F",
+"+. c #99ADCE",
+"@. c #A2B6D7",
+"#. c #A5B9D9",
+"$. c #ABBEDC",
+"%. c #94A0B4",
+"&. c #898A8B",
+"*. c #EAEAEA",
+"=. c #B7C3D6",
+"-. c #BFCDE4",
+";. c #BCCBE2",
+">. c #B9C8E1",
+",. c #B6C6E0",
+"'. c #B2C3DE",
+"). c #DAE2EF",
+"!. c #F5F5F5",
+"~. c #48505B",
+"{. c #425B83",
+"]. c #25272B",
+"^. c #808387",
+"/. c #5F6F88",
+"(. c #87A0C8",
+"_. c #262A31",
+":. c #6E7175",
+"<. c #ABAFB7",
+"[. c #B4C3DB",
+"}. c #99AFD3",
+"|. c #BBC2CD",
+"1. c #818792",
+"2. c #5D7191",
+"3. c #5674A3",
+"4. c #506A93",
+"5. c #6D8CC0",
+"6. c #8EA7CE",
+"7. c #7A8DAC",
+"8. c #96ABCF",
+"9. c #CCD7E9",
+"0. c #B1C2DE",
+"a. c #819BC5",
+"b. c #7993BE",
+"c. c #D0D9E8",
+"d. c #909EB4",
+"e. c #A0ADC3",
+"f. c #95ABD0",
+"g. c #6E89B5",
+"h. c #647186",
+"i. c #475A79",
+"j. c #6183B9",
+"k. c #758194",
+"l. c #BBBBBC",
+"m. c #F1F1F1",
+"n. c #A9B2C0",
+"o. c #8EA6CE",
+"p. c #B9C0CC",
+"q. c #77797E",
+"r. c #425A7E",
+"s. c #545B66",
+"t. c #DDDDDD",
+"u. c #B6B8BA",
+"v. c #BAC5D8",
+"w. c #C5D2E6",
+"x. c #C2D0E5",
+"y. c #C0CEE4",
+"z. c #BDCCE3",
+"A. c #BBCBE2",
+"B. c #E4E5E6",
+"C. c #BABABA",
+"D. c #334258",
+"E. c #606B7D",
+"F. c #78797A",
+"G. c #CBCBCB",
+"H. c #6A7079",
+"I. c #8AA2C8",
+"J. c #B1B9C7",
+"K. c #E2E2E2",
+"L. c #696C72",
+"M. c #465F86",
+"N. c #9EB1D2",
+"O. c #525C6C",
+"P. c #484F5B",
+"Q. c #7D91B1",
+"R. c #6D8AB8",
+"S. c #64748E",
+"T. c #4C6388",
+"U. c #6385BC",
+"V. c #5B5B5B",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! : < [ } ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! | 1 2 3 4 > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! 5 6 7 8 9 > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! 0 a b c d > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) e f g h i ] > ; - ^ / & % ( # @ _ ",
+". + @ j k % & * = - ; > l m n o p { ) ' ] > q r ^ / & % ( # @ _ ",
+". + s t u v & * = - ; w x y z A ~ { ) ' ] B C D E / & % ( # @ _ ",
+". + F G 7 H I J K L M N O 7 P Q R S T U V W X Y Z / & % ( # @ _ ",
+". + ` .7 ..+.@.#.U $.%.&.7 *.=.-.;.>.,.'.).X !.~./ & % ( # @ _ ",
+". + {.].^./.& * = - ; (._.:.<.[.~ { ) ' ] }.|.1.2./ & % ( # @ _ ",
+". + @ 3.4.5.& * = - ; > 6.7.8.9.0.{ ) ' ] > a.b.^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! c.d.e.f.] > ; - ^ / g.h.i.j.@ _ ",
+". + @ # $ % & * = - ; > , ' ) ! k.l.m.n.o.> ; - ^ / p.6 q.r.@ _ ",
+". + @ # $ % & * = - ; > , ' ) ! s.t.7 u.v.w.x.y.z.A.B.7 C.D.@ _ ",
+". + @ # $ % & * = - ; > , ' ) ! E.F.G.H.I.> ; - ^ / J.K.L.M.@ _ ",
+". + @ # $ % & * = - ; > , ' ) ! N.O.P.Q.] > ; - ^ / R.S.T.U.@ _ ",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ) ' ] > ; - ^ / & % ( # @ _ ",
+" ",
+" V. ",
+" ",
+" V. ",
+" "};
diff --git a/ubuntu/precise/applications/tdesvn/debian/libsvnqt-trinity-dev.install b/ubuntu/precise/applications/tdesvn/debian/libsvnqt-trinity-dev.install
new file mode 100644
index 000000000..fb3c81018
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/libsvnqt-trinity-dev.install
@@ -0,0 +1,2 @@
+debian/tmp/opt/trinity/lib*/*.so
+debian/tmp/opt/trinity/include/svnqt/
diff --git a/ubuntu/precise/applications/tdesvn/debian/libsvnqt4-trinity.install b/ubuntu/precise/applications/tdesvn/debian/libsvnqt4-trinity.install
new file mode 100644
index 000000000..fcfe51754
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/libsvnqt4-trinity.install
@@ -0,0 +1 @@
+debian/tmp/opt/trinity/lib*/libsvnqt.so.*
diff --git a/ubuntu/precise/applications/tdesvn/debian/man/tdesvn.1 b/ubuntu/precise/applications/tdesvn/debian/man/tdesvn.1
new file mode 100644
index 000000000..bc8ceb053
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/man/tdesvn.1
@@ -0,0 +1,171 @@
+.\" This file was generated by kdemangen.pl
+.TH KDESVN 1 "Dez 2005" "K Desktop Environment" "A Subversion Client for KDE (standalone application)"
+.SH NAME
+tdesvn
+\- A Subversion client for KDE (standalone application)
+.SH SYNOPSIS
+tdesvn [Qt\-options] [KDE\-options] [options] exec <command> [URL]
+.SH DESCRIPTION
+A Subversion client for KDE (standalone application)
+.SH OPTIONS
+.SS
+.SS Arguments:
+.TP
+.B exec
+<command> Execute subversion command ("exec help" for more information, opens KDE Help Center)
+.TP
+.B URL
+Path to local working copy or a repository.
+.SS Options:
+.TP
+.B \-r startrev
+[:endrev] Execute single subversion command on specific revision(-range)
+.TP
+.B \-R
+Ask for revision when executing single command
+.TP
+.B \-o <file>
+Save output of subversion command (eg "cat") into file <file>
+.TP
+.B \-l <number>
+Limit log output to <number>
+.SS
+.SS Generic options:
+.TP
+.B \-\-help
+Show help about options
+.TP
+.B \-\-help\-qt
+Show Qt specific options
+.TP
+.B \-\-help\-kde
+Show KDE specific options
+.TP
+.B \-\-help\-all
+Show all options
+.TP
+.B \-\-author
+Show author information
+.TP
+.B \-v, \-\-version
+Show version information
+.TP
+.B \-\-license
+Show license information
+.TP
+.B \-\-
+End of options
+.SS
+.SS KDE options:
+.TP
+.B \-\-caption <caption>
+Use 'caption' as name in the titlebar
+.TP
+.B \-\-icon <icon>
+Use 'icon' as the application icon
+.TP
+.B \-\-miniicon <icon>
+Use 'icon' as the icon in the titlebar
+.TP
+.B \-\-config <filename>
+Use alternative configuration file
+.TP
+.B \-\-dcopserver <server>
+Use the DCOP Server specified by 'server'
+.TP
+.B \-\-nocrashhandler
+Disable crash handler, to get core dumps
+.TP
+.B \-\-waitforwm
+Waits for a WM_NET compatible windowmanager
+.TP
+.B \-\-style <style>
+sets the application GUI style
+.TP
+.B \-\-geometry <geometry>
+sets the client geometry of the main widget - see man X for the argument format
+.SS
+.SS Qt options:
+.TP
+.B \-\-display <displayname>
+Use the X-server display 'displayname'
+.TP
+.B \-\-session <sessionId>
+Restore the application for the given 'sessionId'
+.TP
+.B \-\-cmap
+Causes the application to install a private color
+map on an 8-bit display
+.TP
+.B \-\-ncols <count>
+Limits the number of colors allocated in the color
+cube on an 8-bit display, if the application is
+using the QApplication::ManyColor color
+specification
+.TP
+.B \-\-nograb
+tells Qt to never grab the mouse or the keyboard
+.TP
+.B \-\-dograb
+running under a debugger can cause an implicit
+-nograb, use -dograb to override
+.TP
+.B \-\-sync
+switches to synchronous mode for debugging
+.TP
+.B \-\-fn, \-\-font <fontname>
+defines the application font
+.TP
+.B \-\-bg, \-\-background <color>
+sets the default background color and an
+application palette (light and dark shades are
+calculated)
+.TP
+.B \-\-fg, \-\-foreground <color>
+sets the default foreground color
+.TP
+.B \-\-btn, \-\-button <color>
+sets the default button color
+.TP
+.B \-\-name <name>
+sets the application name
+.TP
+.B \-\-title <title>
+sets the application title (caption)
+.TP
+.B \-\-visual TrueColor
+forces the application to use a TrueColor visual on
+an 8-bit display
+.TP
+.B \-\-inputstyle <inputstyle>
+sets XIM (X Input Method) input style. Possible
+values are onthespot, overthespot, offthespot and
+root
+.TP
+.B \-\-im <XIM server>
+set XIM server
+.TP
+.B \-\-noxim
+disable XIM
+.TP
+.B \-\-reverse
+mirrors the whole layout of widgets
+.SS
+
+.SH EXAMPLE
+tdesvn file:///path/to/local/working/copy
+.br
+tdesvn http://remote/svn/project/trunk
+
+.SH SEE ALSO
+Full user documentation is available through the KDE Help Center. You can also enter the URL
+.BR help:/tdesvn/
+directly into konqueror or you can run
+.BR "`khelpcenter help:/tdesvn/'"
+from the command-line.
+.br
+.SH AUTHORS
+.nf
+Rajko Albrecht <ral@alwins-world.de>
+.br
+
diff --git a/ubuntu/precise/applications/tdesvn/debian/man/tdesvnaskpass.1 b/ubuntu/precise/applications/tdesvn/debian/man/tdesvnaskpass.1
new file mode 100644
index 000000000..053bb8cdd
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/man/tdesvnaskpass.1
@@ -0,0 +1,145 @@
+.\" This file was generated by kdemangen.pl
+.TH KDESVNASKPASS 1 "Aug 2005" "K Desktop Environment" "ssh-askpass for tdesvn"
+.SH NAME
+tdesvnaskpass
+\- ssh-askpass for tdesvn
+.SH SYNOPSIS
+tdesvnaskpass [Qt\-options] [KDE\-options] [prompt]
+.SH DESCRIPTION
+ssh-askpass for tdesvn.
+.SH OPTIONS
+.SS
+.SS Arguments:
+.TP
+.B prompt
+Prompt that is displayed to the user.
+.SS Generic options:
+.TP
+.B \-\-help
+Show help about options
+.TP
+.B \-\-help\-qt
+Show Qt specific options
+.TP
+.B \-\-help\-kde
+Show KDE specific options
+.TP
+.B \-\-help\-all
+Show all options
+.TP
+.B \-\-author
+Show author information
+.TP
+.B \-v, \-\-version
+Show version information
+.TP
+.B \-\-license
+Show license information
+.TP
+.B \-\-
+End of options
+.SS
+.SS KDE options:
+.TP
+.B \-\-caption <caption>
+Use 'caption' as name in the titlebar
+.TP
+.B \-\-icon <icon>
+Use 'icon' as the application icon
+.TP
+.B \-\-miniicon <icon>
+Use 'icon' as the icon in the titlebar
+.TP
+.B \-\-config <filename>
+Use alternative configuration file
+.TP
+.B \-\-dcopserver <server>
+Use the DCOP Server specified by 'server'
+.TP
+.B \-\-nocrashhandler
+Disable crash handler, to get core dumps
+.TP
+.B \-\-waitforwm
+Waits for a WM_NET compatible windowmanager
+.TP
+.B \-\-style <style>
+sets the application GUI style
+.TP
+.B \-\-geometry <geometry>
+sets the client geometry of the main widget - see man X for the argument format
+.SS
+.SS Qt options:
+.TP
+.B \-\-display <displayname>
+Use the X-server display 'displayname'
+.TP
+.B \-\-session <sessionId>
+Restore the application for the given 'sessionId'
+.TP
+.B \-\-cmap
+Causes the application to install a private color
+map on an 8-bit display
+.TP
+.B \-\-ncols <count>
+Limits the number of colors allocated in the color
+cube on an 8-bit display, if the application is
+using the QApplication::ManyColor color
+specification
+.TP
+.B \-\-nograb
+tells Qt to never grab the mouse or the keyboard
+.TP
+.B \-\-dograb
+running under a debugger can cause an implicit
+-nograb, use -dograb to override
+.TP
+.B \-\-sync
+switches to synchronous mode for debugging
+.TP
+.B \-\-fn, \-\-font <fontname>
+defines the application font
+.TP
+.B \-\-bg, \-\-background <color>
+sets the default background color and an
+application palette (light and dark shades are
+calculated)
+.TP
+.B \-\-fg, \-\-foreground <color>
+sets the default foreground color
+.TP
+.B \-\-btn, \-\-button <color>
+sets the default button color
+.TP
+.B \-\-name <name>
+sets the application name
+.TP
+.B \-\-title <title>
+sets the application title (caption)
+.TP
+.B \-\-visual TrueColor
+forces the application to use a TrueColor visual on
+an 8-bit display
+.TP
+.B \-\-inputstyle <inputstyle>
+sets XIM (X Input Method) input style. Possible
+values are onthespot, overthespot, offthespot and
+root
+.TP
+.B \-\-im <XIM server>
+set XIM server
+.TP
+.B \-\-noxim
+disable XIM
+.TP
+.B \-\-reverse
+mirrors the whole layout of widgets
+.SS
+
+.SH SEE ALSO
+.BR tdesvn(1)
+.br
+.SH AUTHORS
+.nf
+Rajko Albrecht <ral@alwins-world.de>
+.br
+
diff --git a/ubuntu/precise/applications/tdesvn/debian/patches/series b/ubuntu/precise/applications/tdesvn/debian/patches/series
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/patches/series
diff --git a/ubuntu/precise/applications/tdesvn/debian/rules b/ubuntu/precise/applications/tdesvn/debian/rules
new file mode 100755
index 000000000..abada8378
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/rules
@@ -0,0 +1,27 @@
+#!/usr/bin/make -f
+
+# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function
+# Also include the main Trinity path
+ifeq ("$(LD_LIBRARY_PATH)", "")
+LD_LIBRARY_PATH=debian/tmp/opt/trinity/lib
+else
+LD_LIBRARY_PATH += :debian/tmp/opt/trinity/lib
+endif
+export LD_LIBRARY_PATH
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/cmake.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/cdbs/1/rules/utils.mk
+include debian/cdbs/debian-qt-kde.mk
+
+DEB_KDE_APIDOX := yes
+
+CXXFLAGS := -DSMB_CTX_FLAG_USE_KERBEROS -DSMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS -g -Wall $(DEB_OPT_FLAG)
+
+DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_INSTALL_PREFIX="/opt/trinity" -DCONFIG_INSTALL_DIR="/etc/trinity" -DSYSCONF_INSTALL_DIR="/etc/trinity" -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/" -DAUTODETECT_QT_DIRS="ON" -DCMAKE_VERBOSE_MAKEFILE="ON" -DBUILD_ALL="ON" -DCMAKE_SKIP_RPATH="OFF" \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo
+
+# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to
+# never build in parallel, regardless of DEB_BUILD_OPTIONS.
+DEB_BUILD_PARALLEL = true
diff --git a/ubuntu/precise/applications/tdesvn/debian/source/format b/ubuntu/precise/applications/tdesvn/debian/source/format
new file mode 100644
index 000000000..89ae9db8f
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/source/format
@@ -0,0 +1 @@
+3.0 (native)
diff --git a/ubuntu/precise/applications/tdesvn/debian/source/options b/ubuntu/precise/applications/tdesvn/debian/source/options
new file mode 100644
index 000000000..9d7c8e036
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/source/options
@@ -0,0 +1,6 @@
+# Use bzip2 instead of gzip
+compression = "bzip2"
+compression-level = 9
+
+# Don't run differences
+diff-ignore = .*
diff --git a/ubuntu/precise/applications/tdesvn/debian/tdesvn-kio-plugins-trinity.install b/ubuntu/precise/applications/tdesvn/debian/tdesvn-kio-plugins-trinity.install
new file mode 100644
index 000000000..edba29129
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/tdesvn-kio-plugins-trinity.install
@@ -0,0 +1,4 @@
+debian/tmp/opt/trinity/share/services/*.protocol
+debian/tmp/opt/trinity/lib/trinity/kio*
+debian/tmp/opt/trinity/lib/trinity/kded_tdesvnd.*
+debian/tmp/opt/trinity/share/services/kded/
diff --git a/ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.install b/ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.install
new file mode 100644
index 000000000..fe0936b26
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.install
@@ -0,0 +1,14 @@
+debian/icons/tdesvn.xpm /opt/trinity/share/pixmaps/
+debian/tmp/opt/trinity/bin/
+debian/tmp/opt/trinity/lib/*.so*
+debian/tmp/opt/trinity/lib/trinity/tdesvnpart*
+debian/tmp/opt/trinity/share/apps/tdesvn/
+debian/tmp/opt/trinity/share/apps/tdesvnpart/
+debian/tmp/opt/trinity/share/apps/konqueror/servicemenus/
+debian/tmp/opt/trinity/share/apps/kconf_update/
+debian/tmp/opt/trinity/share/icons/
+debian/tmp/opt/trinity/share/locale/*/LC_MESSAGES/*.mo
+debian/tmp/opt/trinity/share/config.kcfg/
+debian/tmp/opt/trinity/share/applications/tde/*.desktop
+debian/tmp/opt/trinity/share/doc/tde/
+
diff --git a/ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.manpages b/ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.manpages
new file mode 100644
index 000000000..8cb778203
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.manpages
@@ -0,0 +1,2 @@
+debian/man/tdesvn.1
+debian/man/tdesvnaskpass.1
diff --git a/ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.menu b/ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.menu
new file mode 100644
index 000000000..12595e540
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/tdesvn-trinity.menu
@@ -0,0 +1,8 @@
+?package(tdesvn):\
+ needs="X11"\
+ section="Applications/Programming"\
+ hints="KDE,Version control"\
+ title="KDESvn"\
+ longtitle="SVN client"\
+ icon="/usr/share/pixmaps/tdesvn.xpm"\
+ command="/opt/trinity/bin/tdesvn"
diff --git a/ubuntu/precise/applications/tdesvn/debian/watch b/ubuntu/precise/applications/tdesvn/debian/watch
new file mode 100644
index 000000000..80c0f090c
--- /dev/null
+++ b/ubuntu/precise/applications/tdesvn/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://tdesvn.alwins-world.de/trac.fcgi/wiki/DownLoads .*tdesvn-(.*)\.tar\.bz2