summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/applications/yakuake/debian
diff options
context:
space:
mode:
Diffstat (limited to 'ubuntu/maverick/applications/yakuake/debian')
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/README39
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/cdbs/buildvars.mk86
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/cdbs/debian-qt-kde.mk109
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/cdbs/kde.mk97
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/cdbs/team-members16
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/cdbs/uploaders.mk29
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/cdbs/versions.pl19
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/changelog159
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/compat1
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/control20
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/copyright35
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/icons/yakuake-16.xpm161
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/icons/yakuake.xpm226
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/patches/.gitignore0
-rwxr-xr-xubuntu/maverick/applications/yakuake/debian/rules33
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.install2
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.manpages1
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.menu8
-rw-r--r--ubuntu/maverick/applications/yakuake/debian/yakuake.150
19 files changed, 1091 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/yakuake/debian/README b/ubuntu/maverick/applications/yakuake/debian/README
new file mode 100644
index 000000000..85f0e1b9f
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/README
@@ -0,0 +1,39 @@
+Once the application is started, simply press F12 (by default) to open
+the console.
+
+However, on mac's, F12 is assigned to "right click"
+
+To solve this problem - use the following instructions:
+
+Run Yakuake.
+
+In a terminal, run the command
+
+killall -9 yakuake
+
+This is so that the default configuration files are created (only needed if you have never ran yakuake before)
+
+Next, edit the following file
+
+~/.kde/share/config/yakuakerc
+
+which should look something like this
+
+ [Options]
+ background=true
+ focus=false
+ height=30
+ location=80
+ screen=1
+ steps=20
+ tabs=true
+ width=50
+
+Add the following to the file:
+
+ [Global Shortcuts]
+ AccessKey=F11
+
+And save the file.
+
+Now, restart yakuake, and you should be able to use the F11 key to access yakuake!
diff --git a/ubuntu/maverick/applications/yakuake/debian/cdbs/buildvars.mk b/ubuntu/maverick/applications/yakuake/debian/cdbs/buildvars.mk
new file mode 100644
index 000000000..23d4709dc
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/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/maverick/applications/yakuake/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/yakuake/debian/cdbs/debian-qt-kde.mk
new file mode 100644
index 000000000..47e83ef4a
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/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/trinity/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/trinity/share/doc/kde/HTML/en/$$pkg; \
+ cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \
+ /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/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/trinity/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/maverick/applications/yakuake/debian/cdbs/kde.mk b/ubuntu/maverick/applications/yakuake/debian/cdbs/kde.mk
new file mode 100644
index 000000000..5b6508f8c
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/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/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/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/maverick/applications/yakuake/debian/cdbs/team-members b/ubuntu/maverick/applications/yakuake/debian/cdbs/team-members
new file mode 100644
index 000000000..05761af6e
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/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/maverick/applications/yakuake/debian/cdbs/uploaders.mk b/ubuntu/maverick/applications/yakuake/debian/cdbs/uploaders.mk
new file mode 100644
index 000000000..31adfe31e
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/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/maverick/applications/yakuake/debian/cdbs/versions.pl b/ubuntu/maverick/applications/yakuake/debian/cdbs/versions.pl
new file mode 100644
index 000000000..9ce11d8a3
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/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/maverick/applications/yakuake/debian/changelog b/ubuntu/maverick/applications/yakuake/debian/changelog
new file mode 100644
index 000000000..2e7869e5a
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/changelog
@@ -0,0 +1,159 @@
+yakuake-trinity (2.8.1-2ubuntu1) karmic; urgency=low
+
+ * Karmic rebuild
+
+ -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600
+
+yakuake-trinity (2.8.1-2ubuntu0) intrepid; urgency=low
+
+ * Moved KDE3 to /opt/trinity
+ * Integrated properly with KDE4.2+
+
+ -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 05 March 2009 01:11:00 -0600
+
+yakuake-trinity (2.8.1-1ubuntu2) intrepid; urgency=low
+
+ * Added -trinity suffix
+
+ -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Fri, 09 Dec 2008 11:03:00 -0600
+
+yakuake (2.8.1-1ubuntu2) hardy; urgency=low
+
+ * Fixing broken upload due to MD5 differences
+
+ -- Richard A. Johnson <nixternal@kubuntu.org> Fri, 18 Jan 2008 15:00:19 -0600
+
+yakuake (2.8.1-1ubuntu1) hardy; urgency=low
+
+ * Merge from Debian unstable, remaining Ubuntu changes:
+ - kubuntu_01_kdepot.patch and kubuntu_03_clean_desktop_file.patch
+
+ -- Richard A. Johnson <nixternal@kubuntu.org> Fri, 18 Jan 2008 14:21:25 -0600
+
+yakuake (2.8.1-1) unstable; urgency=low
+
+ * New upstream release:
+ - Fix non traslucent issues for non-KDE users. (Closes: 349144)
+ - French translation is back. (Closes: #432091)
+ * Move Homepage to source field.
+ * Update to Standards-Version 3.7.3, no changes required.
+
+ -- Ana Beatriz Guerrero Lopez <ana@debian.org> Thu, 17 Jan 2008 21:54:40 +0100
+
+yakuake (2.8.1-0ubuntu1) hardy; urgency=low
+
+ * New upstream release
+
+ -- Richard A. Johnson <nixternal@kubuntu.org> Thu, 17 Jan 2008 12:07:57 -0600
+
+yakuake (2.8-1ubuntu1) hardy; urgency=low
+
+ * Merge from Debian unstable, remaining Ubuntu changes:
+ - debian/: README for changing Global Access Key
+ - debian/patches: kubuntu_01_kdepot.diff
+ - debian/patches: kubuntu_03_clean_desktop_file.patch adding Categories
+ and GenericName
+ * debian/control:
+ - Updated Maintainer field to Ubuntu MOTU
+ - Updated Homepage by moving it up and removing it from the bottom
+
+ -- Richard A. Johnson <nixternal@kubuntu.org> Tue, 20 Nov 2007 10:04:32 -0600
+
+yakuake (2.8-1) unstable; urgency=low
+
+ * New upstream release.
+ * Update menu file.
+
+ -- Ana Beatriz Guerrero Lopez <ana@debian.org> Mon, 01 Oct 2007 22:47:16 +0200
+
+yakuake (2.8-0ubuntu1) gutsy; urgency=low
+
+ * New upstream release
+
+ -- Anthony Mercatante <tonio@ubuntu.com> Wed, 03 Oct 2007 10:26:43 +0200
+
+yakuake (2.8~beta1-1ubuntu1) gutsy; urgency=low
+
+ * Merge from Debian unstable, Remaining Ubuntu changes:
+ - Added README for changing Global Access Key (Closes: Malone 3209)
+ * New Ubuntu changes:
+ - Drop kubuntu_02_no_startup_notify_on_session_restore.patch
+ - recreated kubuntu_01_kdepot.diff as last wouldn't apply clean
+ - recreated kubuntu_03_clean_desktop_file.patch removing Categories and
+ adding GenericName
+
+ -- Richard A. Johnson <nixternal@ubuntu.com> Mon, 21 May 2007 21:57:21 -0500
+
+yakuake (2.8~beta1-1) unstable; urgency=low
+
+ * The 'I like picnics indoors' release.
+ * Pre-release of new upstream version. (Closes: #389108)
+ * Drop patches. Relibtoolization in build time.
+
+ -- Ana Beatriz Guerrero Lopez <ana@debian.org> Mon, 07 May 2007 23:53:22 +0100
+
+yakuake (2.7.5-4ubuntu2) feisty; urgency=low
+
+ * Add kubuntu_03_clean_desktop_file.patch, adding Categories
+ and GenericName.
+
+ -- Anthony Mercatante <tonio@ubuntu.com> Mon, 05 Feb 2007 15:51:03 +0100
+
+yakuake (2.7.5-4ubuntu1) feisty; urgency =low
+
+ * Re-sync with Debian. Changes kept:
+ * Added README for changing Global Access Key (Closes: Malone 3209)
+ -- Martin Meredith <mez@ubuntu.com> Sat, 21 Jan 2006 07:40:08 +0000
+ * added patches/kubuntu_02_no_startup_notify_on_session_restore.patch
+ -- Martin Meredith <mez@ubuntu.com> Fri, 30 Dec 2005 18:14:21 +0000
+ * Add kubuntu_01_kdepot.diff for .pot generation
+ -- Jonathan Riddell <jriddell@ubuntu.com> Thu, 8 Dec 2005 03:42:35 +0000
+ * Re-add dh_iconcache
+
+ -- Barry deFreese <bddebian@comcast.net> Thu, 1 Feb 2007 22:16:03 -0500
+
+yakuake (2.7.5-4) unstable; urgency=low
+
+ * Modified building system for using quilt.
+ * Added space to homepage pseudo header.
+ * Fixed .desktop file. (Closes: #389108)
+
+ -- Ana Beatriz Guerrero Lopez <ana@debian.org> Sat, 28 Oct 2006 14:07:05 +0200
+
+yakuake (2.7.5-3) unstable; urgency=low
+
+ * Bumped compat to 5.
+ * Bumped Standards-Version to 3.7.2, no changes required.
+ * Removing spanish translation :( (Closes: #384929)
+
+ -- Ana Beatriz Guerrero Lopez <ana@ekaia.org> Sun, 10 Sep 2006 21:37:35 +0200
+
+yakuake (2.7.5-2) unstable; urgency=medium
+
+ * Substituting re-libtoolizing at build time with patches. (Closes: #379821)
+ * Adding spanish translation from Juan Manuel Garcia Molina
+ <juanma@debian.org> (Closes: #359244)
+ * Added copyright of the debian packaging.
+
+ -- Ana Beatriz Guerrero Lopez <ana@ekaia.org> Thu, 27 Jul 2006 21:03:17 +0200
+
+yakuake (2.7.5-1) unstable; urgency=low
+
+ * New upstream release. Besides, yakuake has also a new upstream author.
+
+ -- Ana Beatriz Guerrero Lopez <ana@ekaia.org> Sun, 22 Mar 2006 22:43:07 +0100
+
+yakuake (2.7.3-2) unstable; urgency=low
+
+ * The package doesn't depend from libfreetype6 and other spurious
+ libraries anymore.
+ * Added dependency on konsole. (Closes: #347437)
+
+ -- Ana Beatriz Guerrero Lopez <ana@ekaia.org> Sat, 7 Jan 2006 18:43:27 +0100
+
+yakuake (2.7.3-1) unstable; urgency=low
+
+ * Initial release. (Closes: #336262)
+
+ -- Ana Beatriz Guerrero Lopez <ana@ekaia.org> Sat, 29 Oct 2005 11:08:43 +0000
+
diff --git a/ubuntu/maverick/applications/yakuake/debian/compat b/ubuntu/maverick/applications/yakuake/debian/compat
new file mode 100644
index 000000000..7ed6ff82d
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/ubuntu/maverick/applications/yakuake/debian/control b/ubuntu/maverick/applications/yakuake/debian/control
new file mode 100644
index 000000000..5632af112
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/control
@@ -0,0 +1,20 @@
+Source: yakuake-trinity
+Section: kde
+Priority: optional
+Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
+XSBC-Original-Maintainer: Ana Beatriz Guerrero Lopez <ana@debian.org>
+Build-Depends: cdbs, debhelper (>= 5), quilt, kdelibs4-trinity-dev, automake, autoconf, libtool, libltdl-dev
+Standards-Version: 3.8.4
+Homepage: http://extragear.kde.org/apps/yakuake/
+
+Package: yakuake-trinity
+Architecture: any
+Depends: ${shlibs:Depends}, konsole-trinity
+Description: a Quake-style terminal emulator based on KDE Konsole technology [Trinity]
+ YaKuake is inspired from the terminal in the Quake game: when you press a key
+ (by default F12, but that can be changed) a terminal window slides down from
+ the top of the screen. Press the key again, and the terminal slides back.
+ .
+ It is faster than a keyboard shortcut because it is already loaded into memory
+ and as such is very useful to anyone who frequently finds themselves switching
+ in and out of terminal sessions.
diff --git a/ubuntu/maverick/applications/yakuake/debian/copyright b/ubuntu/maverick/applications/yakuake/debian/copyright
new file mode 100644
index 000000000..df27b9653
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/copyright
@@ -0,0 +1,35 @@
+This package was debianized by Ana Beatriz Guerrero Lopez
+<ana@ekaia.org> on Sat, 29 Oct 2005 11:08:43 +0000.
+
+It was downloaded from http://extragear.kde.org/apps/yakuake/
+
+Upstream Author: François Chazal <neptune3k@free.fr>
+ Eike Hein <Eike Hein>
+
+This software is copyright:
+ (c) 2005 by François Chazal.
+ (c) 2006-2007 by Eike Hein.
+
+
+License:
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; version 2 dated June, 1991.
+
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ MA 02110-1301, USA.
+
+
+The GNU General Public License which can be found,
+on Debian systems, at /usr/share/common-licenses/GPL.
+
+The Debian packaging is (C) 2005-2007, Ana Beatriz Guerrero Lopez <ana@ekaia.org>
+and is licensed under the GPL, see above.
+
diff --git a/ubuntu/maverick/applications/yakuake/debian/icons/yakuake-16.xpm b/ubuntu/maverick/applications/yakuake/debian/icons/yakuake-16.xpm
new file mode 100644
index 000000000..a16b98fef
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/icons/yakuake-16.xpm
@@ -0,0 +1,161 @@
+/* XPM */
+static char *yakuake-16[] = {
+/* columns rows colors chars-per-pixel */
+"16 16 139 2",
+" c black",
+". c #0D373D",
+"X c #24370B",
+"o c #2B330C",
+"O c #223D13",
+"+ c #362E0E",
+"@ c #132645",
+"# c #213E42",
+"$ c #1A4F3E",
+"% c #284528",
+"& c #2E4B36",
+"* c #22533F",
+"= c #15455F",
+"- c #164A5B",
+"; c #164E59",
+": c #164C5C",
+"> c #175456",
+", c #195457",
+"< c #195654",
+"1 c #1A545C",
+"2 c #1A5A57",
+"3 c #1D5E53",
+"4 c #334B40",
+"5 c #29496A",
+"6 c #2C4A6D",
+"7 c #2E4C6A",
+"8 c #37516A",
+"9 c #3A5473",
+"0 c #3A5573",
+"q c #3B5473",
+"w c #3A5574",
+"e c #3B5774",
+"r c #3B5775",
+"t c #3B5875",
+"y c #3B5876",
+"u c #3C5877",
+"i c #3D5977",
+"p c #404D3E",
+"a c #43474C",
+"s c #494342",
+"d c #4B4B4B",
+"f c #4E4E4E",
+"g c gray31",
+"h c #555555",
+"j c #565656",
+"k c #5D5D5D",
+"l c #474C6A",
+"z c #484C6A",
+"x c #4A4E6A",
+"c c #4B4E6A",
+"v c #4C526A",
+"b c #4D526A",
+"n c #4E546A",
+"m c #465D75",
+"M c #475D75",
+"N c #465D76",
+"B c #485D76",
+"V c #4B5F79",
+"C c #4C5F7D",
+"Z c #51536A",
+"A c #55566A",
+"S c #565A6A",
+"D c #4E6378",
+"F c #4D607E",
+"G c #556072",
+"H c #546577",
+"J c #60626A",
+"K c #62646A",
+"L c #1D4E85",
+"P c #355383",
+"I c #3F5C83",
+"U c #539C3F",
+"Y c #64B82A",
+"T c #65BC28",
+"R c #66BC28",
+"E c #66BD28",
+"W c #5FC51D",
+"Q c #61C71B",
+"! c #60C51C",
+"~ c #60C51D",
+"^ c #61C61C",
+"/ c #63CA15",
+"( c #72CF17",
+") c #70CF1B",
+"_ c #71CF1B",
+"` c #74D31B",
+"' c #75D519",
+"] c gray55",
+"[ c #8E8E8E",
+"{ c #959595",
+"} c #A09FA0",
+"| c #A4A4A4",
+" . c #AAB9A8",
+".. c #ACBAA8",
+"X. c #BABEBA",
+"o. c gray74",
+"O. c gray",
+"+. c #B1C0A8",
+"@. c #B3C5A8",
+"#. c #B5C5A9",
+"$. c #B5C6A9",
+"%. c #B6C8A8",
+"&. c #BACAA9",
+"*. c #BCCDA9",
+"=. c #BDCDA9",
+"-. c gray76",
+";. c #C5C5C5",
+":. c #C6C6C6",
+">. c #C5C5C9",
+",. c #CBCBCB",
+"<. c gray80",
+"1. c #CCCCCD",
+"2. c #CCCDCD",
+"3. c #CDCDCD",
+"4. c #CFCFD1",
+"5. c gray82",
+"6. c gray85",
+"7. c gainsboro",
+"8. c #DDDDDD",
+"9. c #E0E0DF",
+"0. c #E1E1E1",
+"q. c #E4E4E3",
+"w. c gray90",
+"e. c #E6E6E6",
+"r. c #E6E7E7",
+"t. c #E7E7E6",
+"y. c #E7E8E8",
+"u. c gray91",
+"i. c #E9E9E9",
+"p. c #E9E9EA",
+"a. c #E9EAEA",
+"s. c #EAEAEA",
+"d. c #EAEBEB",
+"f. c gray92",
+"g. c #ECECEC",
+"h. c #EDECEC",
+"j. c gray94",
+"k. c #F6F6F6",
+"l. c None",
+/* pixels */
+"g h k g g g g g g g g g g k h g ",
+"h | 3.3.3.3.3.3.3.3.,.,.,.3.| h ",
+"k u.H i i t r r e e e 9 e 6 6.k ",
+"g u.m 3.F 8 7 6 5 5 5 5 5 L e.g ",
+"g u.B 8 <.A Z c x x x x x P u.g ",
+"h u.V 5.c Z b Z c c S K K I u.g ",
+"g u.B & s a & & % O X o + # u.g ",
+"g u.F &.%.#.$.=.*.$..... .. u.g ",
+"h u.C ( E U Y E E ) _ ` ` * u.g ",
+"g u.F / ^ ^ ^ W W W W W Q $ u.g ",
+"g u.G 3 2 < > , 1 ; : : = @ 8.g ",
+"g [ 8.9.q.j.j.5.>.j.j.h.u.u.[ g ",
+"g g g { -.:.0.u.u.e.8.X.{ g g g ",
+"l.l.g g g [ O.5.O.-.[ g h f l.l.",
+"l.l.l.g g 3.u.k.k.k.5.g g l.l.l.",
+"l.l.l.g g g g g g g g g g l.l.l."
+};
diff --git a/ubuntu/maverick/applications/yakuake/debian/icons/yakuake.xpm b/ubuntu/maverick/applications/yakuake/debian/icons/yakuake.xpm
new file mode 100644
index 000000000..6745c7c0e
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/icons/yakuake.xpm
@@ -0,0 +1,226 @@
+/* XPM */
+static char *yakuake[] = {
+/* columns rows colors chars-per-pixel */
+"32 32 188 2",
+" c #000000",
+". c #0D0D0D",
+"X c #151515",
+"o c #181818",
+"O c #0D373D",
+"+ c #25360B",
+"@ c #22380B",
+"# c #2B330C",
+"$ c #223D13",
+"% c #362E0E",
+"& c #31310E",
+"* c #232323",
+"= c #2A2A2A",
+"- c #313131",
+"; c #3C3C3C",
+": c #0E375D",
+"> c #132747",
+", c #0B3F7B",
+"< c #173E64",
+"1 c #183D63",
+"2 c #213E42",
+"3 c #0E403F",
+"4 c #1A4F3E",
+"5 c #1D503D",
+"6 c #244322",
+"7 c #28462A",
+"8 c #25453D",
+"9 c #2E4B36",
+"0 c #22533F",
+"q c #0D4B5A",
+"w c #144A46",
+"e c #1C4941",
+"r c #164C5D",
+"t c #17505B",
+"y c #195657",
+"u c #19545A",
+"i c #1A5A55",
+"p c #154762",
+"a c #144862",
+"s c #184064",
+"d c #334B40",
+"f c #3C4743",
+"g c #394455",
+"h c #3D4A5D",
+"j c #2A4763",
+"k c #29496A",
+"l c #374261",
+"z c #334F6A",
+"x c #394561",
+"c c #3B4A61",
+"v c #38496A",
+"b c #37516C",
+"n c #3C546C",
+"m c #3A5573",
+"M c #3B5876",
+"N c #47443E",
+"B c #404D3E",
+"V c #4F4131",
+"C c #4E4438",
+"Z c #51402C",
+"A c #43474C",
+"S c #45484D",
+"D c #4C4541",
+"F c #4F4B47",
+"G c #4C4C4B",
+"H c #4E565C",
+"J c #555555",
+"K c #5F5F5F",
+"L c #444E62",
+"P c #474B6A",
+"I c #494D6A",
+"U c #425065",
+"Y c #43516A",
+"T c #495462",
+"R c #4D536A",
+"E c #465D75",
+"W c #485E77",
+"Q c #495F78",
+"! c #52556A",
+"~ c #505C67",
+"^ c #545C69",
+"/ c #595D6A",
+"( c #4D617B",
+") c #56606A",
+"_ c #5A616A",
+"` c #576274",
+"' c #646464",
+"] c #62636A",
+"[ c #65686A",
+"{ c #6D6D6D",
+"} c #686A78",
+"| c #6C737A",
+" . c gray49",
+".. c #1D4E85",
+"X. c #264C84",
+"o. c #355383",
+"O. c #3D5A82",
+"+. c #415D83",
+"@. c #4D6180",
+"#. c #617487",
+"$. c #7B7D86",
+"%. c #3EA54D",
+"&. c #539C3F",
+"*. c #5AA737",
+"=. c #5FA738",
+"-. c #5BAC34",
+";. c #57BF2F",
+":. c #63BA1C",
+">. c #63BD26",
+",. c #65BB28",
+"<. c #6FBF2E",
+"1. c #43A642",
+"2. c #4BA940",
+"3. c #52A947",
+"4. c #52B040",
+"5. c #5FC41D",
+"6. c #5EC120",
+"7. c #58C12A",
+"8. c #5DC920",
+"9. c #57C633",
+"0. c #60C51C",
+"q. c #63CA15",
+"w. c #66CA1A",
+"e. c #6BC11C",
+"r. c #69CB19",
+"t. c #67D01D",
+"y. c #6CD111",
+"u. c #72CF17",
+"i. c #70CD1B",
+"p. c #73D21A",
+"a. c #75DB1F",
+"s. c #7AD41B",
+"d. c #7ED91B",
+"f. c #63C220",
+"g. c #60CC20",
+"h. c #7CD520",
+"j. c #80D91C",
+"k. c #808387",
+"l. c #8D8D8D",
+"z. c #939393",
+"x. c #989898",
+"c. c #A09FA0",
+"v. c #A7A29D",
+"b. c #A9A49F",
+"n. c #A3A3A1",
+"m. c #A8A5A0",
+"M. c #A9A9A9",
+"N. c #AEACB0",
+"B. c #ABBAA8",
+"V. c #B1ACB2",
+"C. c #B3B2B1",
+"Z. c #B6B0B8",
+"A. c #B9B4BC",
+"S. c #BAB8B5",
+"D. c #BDBDBD",
+"F. c #BEBBC3",
+"G. c #B3C4A8",
+"H. c #B6C8A8",
+"J. c #BACBA8",
+"K. c #B2C2B0",
+"L. c #C0BCC2",
+"P. c #C4C4C4",
+"I. c #C6C5C8",
+"U. c #C2CDC2",
+"Y. c #CACACA",
+"T. c #D1D1CF",
+"R. c #D1D1D2",
+"E. c #DBDBDC",
+"W. c #D5E5CE",
+"Q. c #D5EBCC",
+"!. c #D8E3CE",
+"~. c #D3E4D1",
+"^. c #D2E8D2",
+"/. c #D8E4D0",
+"(. c #DBEAD2",
+"). c #E2DCD6",
+"_. c #E2DDD9",
+"`. c #E7E2DC",
+"'. c #E8E3DE",
+"]. c #E3E3E3",
+"[. c #EAE5E1",
+"{. c #ECEAE6",
+"}. c #EBEBEB",
+"|. c #F1EFF0",
+" X c #F0F0EF",
+".X c #F4F4F4",
+"XX c #FCFCFC",
+"oX c None",
+/* pixels */
+"' z.x.x.z.x.z.x.z.x.z.x.z.z.z.z.z.z.z.z.z.z.z.z.z.l.z.l.z.z.{ . ",
+"z.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXY.X ",
+"x.XX{.]._._._._.).).)._._.).).).).)._._.).).).)._.).)._.E..XY.o ",
+"z.XX].| b E M M M M M m M M M m m m m M m m b m m m m h C.XXI.o ",
+"z.XX`.m : s < < 1 1 < < < < < < 1 1 1 1 1 1 1 1 < s s s v.XXY.o ",
+"z.XX`.E j Y.#.( n n z z k k k k k k k k k k k k k k k ..b.XXI.o ",
+"z.XX`.E T k.{.$./ / / ^ ^ ^ R Y v v v v v v v v b v v X.b.XXI.o ",
+"z.XX`.E L Y.$.} ^ ! ! R R I P P I I P P P P P P P P R o.b.XXP.o ",
+"z.XX`.E x R I I I P I I I I R I I I I I R ! ^ / ` ] [ +.n.XXI.o ",
+"z.XX`.E x R R R R R R R R R R R ! R ! ! ! ^ / / ] ] [ O.n.XXI.o ",
+"z.XX'.E c R R R R R R R R R R R ! ^ ^ ^ / / ] ] ] ] [ +.n.XXI.o ",
+"z.XX'.E c / / _ _ / / / / _ _ _ / / / ] / / _ ^ ! ^ / O.m.XXP.o ",
+"z.XX'.Q U _ _ _ ) ) _ _ ) ) ) / ~ ~ ~ H G F D C V Z Z g M.XXP.o ",
+"z.XX'.Q 8 B N D S A f 9 f 9 7 7 6 6 6 $ @ + # # # % & 2 N.XXP.o ",
+"z.XX'.( ^.Q.!.!.!.~.W.W./.(.^.(.~.~.~.~.~.~.~.~.~.~.~.3 V.XXP.o ",
+"z..X'.( K.J.J.H.H.G.G.G.H.J.J.J.J.J.H.G.G.G.B.B.B.B.B.O V..XP.X ",
+"z.XX[.( 3.=.<.d.h.h.d.d.d.s.s.s.s.d.j.j.j.d.s.i.e.:.0.e V.XXP.o ",
+"z.XX[.@.-.u.,.>.-.&.*.,.,.,.,.,.i.i.i.i.i.i.i.p.p.s.a.e V.XXP.X ",
+"z..X[.( 2.y.r.t.w.f.>.w.w.w.w.w.w.f.w.w.w.w.r.r.w.r.t.5 V.XXP.X ",
+"z.XX[.( %.w.0.0.0.0.0.0.0.0.0.5.5.5.5.5.0.6.0.0.0.0.5.5 V..XP.X ",
+"l..X{.@.%.8.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.;.;.;.9.w V..XP.o ",
+"z..X{.` q i i i i i y y t u y u t t r r a r r r r p a > S.XXP.o ",
+"z..X].T.A.L.F.F.L.L.F.D.L.F.Z.A.A.F.F.F.F.L.L.L.F.F.P.P.E. XP.X ",
+"z.XX X.X.X.X}.XXXXXXXXXXXXE.I.R.T.E.XXXXXXXXXXXX|.}. X X}..XY.X ",
+"{ Y.].{..XXX.X}.E.E.E.].].].].}.].].].].].{.}.U.U..X.X}.].R.l.. ",
+". * ; G { z.N.I.D.P.P.E.}.{.}.}.}.}.].].].E.E.D.n.c. .J ; * . ",
+"oX . X * { M.x.c.c.n.n.n.n.c.x.c.z.- o X ",
+"oXoXoXoX . z.R.L.Y.R.P.D.L.Y.R.P.P.D.= oXoXoX",
+"oXoXoXoXoXoXoXoXS K.].E.E.].].].].].E.E.E.].' oXoXoXoXoXoXoXoX",
+"oXoXoXoXoXoXoXoX{ XXX.X.X.X.X.X.X.X.X.XXXXXM.. oXoXoXoXoXoXoX",
+"oXoXoXoXoXoXoXoXK M.M.M.M.M.M.M.M.M.M.M.M.M. .X oXoXoXoXoXoXoX",
+"oXoXoXoXoXoXoXoX. X . . . . . . . . . . . . . oXoXoXoXoXoXoX"
+};
diff --git a/ubuntu/maverick/applications/yakuake/debian/patches/.gitignore b/ubuntu/maverick/applications/yakuake/debian/patches/.gitignore
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/patches/.gitignore
diff --git a/ubuntu/maverick/applications/yakuake/debian/rules b/ubuntu/maverick/applications/yakuake/debian/rules
new file mode 100755
index 000000000..176f45bc3
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/rules
@@ -0,0 +1,33 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include debian/cdbs/kde.mk
+
+DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde
+DEB_CONFIGURE_MANDIR := /opt/trinity/share/man
+DEB_CONFIGURE_PREFIX := /opt/trinity
+DEB_CONFIGURE_INFODIR := /opt/trinity/share/info
+
+cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug)
+
+#There is not any interesting doc to install.
+INSTALL_DOCS_ALL :=
+
+DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/trinity --with-extra-libs=/opt/trinity/lib
+
+### Libtool and Automake updates
+post-patches:: debian/stamp-autothings-update
+debian/stamp-autothings-update:
+ ! [ -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 $@
+
+clean::
+ rm -f debian/stamp-autothings-update
+
diff --git a/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.install b/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.install
new file mode 100644
index 000000000..e5e863463
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.install
@@ -0,0 +1,2 @@
+debian/icons/yakuake.xpm /opt/trinity/share/pixmaps
+debian/icons/yakuake-16.xpm /opt/trinity/share/pixmaps
diff --git a/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.manpages b/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.manpages
new file mode 100644
index 000000000..72280ef49
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.manpages
@@ -0,0 +1 @@
+debian/yakuake.1
diff --git a/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.menu b/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.menu
new file mode 100644
index 000000000..80d76482b
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.menu
@@ -0,0 +1,8 @@
+?package(yakuake):\
+ needs="X11"\
+ section="Applications/Terminal Emulators"\
+ title="YaKuake"\
+ icon32x32="/usr/share/pixmaps/yakuake.xpm"\
+ icon16x16="/usr/share/pixmaps/yakuake-16.xpm"\
+ command="/opt/trinity/bin/yakuake"
+
diff --git a/ubuntu/maverick/applications/yakuake/debian/yakuake.1 b/ubuntu/maverick/applications/yakuake/debian/yakuake.1
new file mode 100644
index 000000000..7b404d01e
--- /dev/null
+++ b/ubuntu/maverick/applications/yakuake/debian/yakuake.1
@@ -0,0 +1,50 @@
+.TH YaKuake 1 "Oct 2005" "" ""
+.SH NAME
+YaKuake \- a Quake-style terminal emulator based on KDE Konsole technology.
+.SH SYNOPSIS
+.B YaKuake
+[Qt\-options] [KDE\-options]
+.SH DESCRIPTION
+YaKuake is inspired from the terminal in the Quake game: when you press a key
+(by default F12, but that can be changed) a terminal window slides down from
+the top of the screen. Press the key again, and the terminal slides back.
+
+It is faster than a keyboard shortcut because it is already loaded into memory
+and as such is very useful to anyone who frequently finds themselves switching
+in and out of terminal sessions.
+.SH OPTIONS
+YaKuake has no application-specific options.
+
+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
+.SH SEE ALSO
+YaKuake Homepage: http://extragear.kde.org/apps/yakuake/
+.SH AUTHOR
+YaKuake was written by Francois Chazal <neptune3k@free.fr>.
+YaKuake is currently maintained by Eike Hein <sho@eikehein.com>.
+.SH OTHER
+This manual page was written by Ana Beatriz Guerrero Lopez <ana@ekaia.org>,
+for the Debian project (but may be used by others).