diff options
Diffstat (limited to 'ubuntu/_base/applications/yakuake/debian')
17 files changed, 916 insertions, 0 deletions
diff --git a/ubuntu/_base/applications/yakuake/debian/README b/ubuntu/_base/applications/yakuake/debian/README new file mode 100644 index 000000000..5738af4de --- /dev/null +++ b/ubuntu/_base/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 + +~/.trinity/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/_base/applications/yakuake/debian/cdbs/debian-qt-kde.mk b/ubuntu/_base/applications/yakuake/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..60310a01a --- /dev/null +++ b/ubuntu/_base/applications/yakuake/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,119 @@ +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: +ifndef _cdbs_class_cmake + cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in +ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" "" + cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh +endif +ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" "" + cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh +endif + $(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist; +endif + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) + +ifndef _cdbs_rules_patchsys_quilt +DEB_PATCHDIRS := debian/patches/common debian/patches +endif + +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:: +ifndef _cdbs_class_cmake + 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 +endif + rm -f debian/stamp-cvs-make + +endif diff --git a/ubuntu/_base/applications/yakuake/debian/cdbs/kde.mk b/ubuntu/_base/applications/yakuake/debian/cdbs/kde.mk new file mode 100644 index 000000000..80176d63e --- /dev/null +++ b/ubuntu/_base/applications/yakuake/debian/cdbs/kde.mk @@ -0,0 +1,91 @@ +# -*- 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 + +ifndef _cdbs_class_cmake +include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) +endif + +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-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 + +# 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/_base/applications/yakuake/debian/cdbs/versions.pl b/ubuntu/_base/applications/yakuake/debian/cdbs/versions.pl new file mode 100644 index 000000000..1b110f7af --- /dev/null +++ b/ubuntu/_base/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/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "TDE-Version3=$version3\n"; +print "TDE-Version2=$version2\n"; +print "TDE-Next-Version3=$version3_next\n"; +print "TDE-Next-Version2=$version2_next\n"; diff --git a/ubuntu/_base/applications/yakuake/debian/changelog b/ubuntu/_base/applications/yakuake/debian/changelog new file mode 100644 index 000000000..fcb60a3f9 --- /dev/null +++ b/ubuntu/_base/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 Jul 2009 16:08:00 -0600 + +yakuake-trinity (2.8.1-2ubuntu0) intrepid; urgency=low + + * Moved Trinity 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/_base/applications/yakuake/debian/compat b/ubuntu/_base/applications/yakuake/debian/compat new file mode 100644 index 000000000..7f8f011eb --- /dev/null +++ b/ubuntu/_base/applications/yakuake/debian/compat @@ -0,0 +1 @@ +7 diff --git a/ubuntu/_base/applications/yakuake/debian/control b/ubuntu/_base/applications/yakuake/debian/control new file mode 100644 index 000000000..353801d04 --- /dev/null +++ b/ubuntu/_base/applications/yakuake/debian/control @@ -0,0 +1,22 @@ +Source: yakuake-trinity +Section: tde +Priority: optional +Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> +XSBC-Original-Maintainer: Ana Beatriz Guerrero Lopez <ana@debian.org> +Build-Depends: cdbs, debhelper (>= 7.0.50~), quilt, cmake, tdelibs14-trinity-dev, libltdl-dev +Standards-Version: 3.8.4 +Homepage: http://extragear.kde.org/apps/yakuake/ + +Package: yakuake-trinity +Architecture: any +Depends: ${shlibs:Depends}, konsole-trinity +Replaces: yakuake-kde3 (<< 4:14.0.0~), yakuake-trinity (<< 4:14.0.0~) +Breaks: yakuake-kde3 (<< 4:14.0.0~), yakuake-trinity (<< 4:14.0.0~) +Description: a Quake-style terminal emulator based on TDE 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/_base/applications/yakuake/debian/copyright b/ubuntu/_base/applications/yakuake/debian/copyright new file mode 100644 index 000000000..df27b9653 --- /dev/null +++ b/ubuntu/_base/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/_base/applications/yakuake/debian/docs b/ubuntu/_base/applications/yakuake/debian/docs new file mode 100644 index 000000000..ca0272abf --- /dev/null +++ b/ubuntu/_base/applications/yakuake/debian/docs @@ -0,0 +1,3 @@ +AUTHORS +README +TODO diff --git a/ubuntu/_base/applications/yakuake/debian/icons/yakuake-16.xpm b/ubuntu/_base/applications/yakuake/debian/icons/yakuake-16.xpm new file mode 100644 index 000000000..a16b98fef --- /dev/null +++ b/ubuntu/_base/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/_base/applications/yakuake/debian/icons/yakuake.xpm b/ubuntu/_base/applications/yakuake/debian/icons/yakuake.xpm new file mode 100644 index 000000000..6745c7c0e --- /dev/null +++ b/ubuntu/_base/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/_base/applications/yakuake/debian/patches/.gitignore b/ubuntu/_base/applications/yakuake/debian/patches/.gitignore new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/ubuntu/_base/applications/yakuake/debian/patches/.gitignore diff --git a/ubuntu/_base/applications/yakuake/debian/rules b/ubuntu/_base/applications/yakuake/debian/rules new file mode 100755 index 000000000..4c83c4c6d --- /dev/null +++ b/ubuntu/_base/applications/yakuake/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk +#include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include debian/cdbs/debian-qt-kde.mk + +# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to +# never build in parallel, regardless of DEB_BUILD_OPTIONS. +DEB_BUILD_PARALLEL = true + +DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ + && echo xz || echo bzip2) + +DEB_CMAKE_EXTRA_FLAGS := \ + -DCMAKE_INSTALL_PREFIX="/opt/trinity" \ + -DCONFIG_INSTALL_DIR="/etc/trinity" \ + -DSYSCONF_INSTALL_DIR="/etc/trinity" \ + -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_VERBOSE_MAKEFILE="ON" \ + -DCMAKE_SKIP_RPATH="OFF" \ + -DBUILD_ALL="ON" \ + -DWITH_ALL_OPTIONS="ON" diff --git a/ubuntu/_base/applications/yakuake/debian/source/format b/ubuntu/_base/applications/yakuake/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/ubuntu/_base/applications/yakuake/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/ubuntu/_base/applications/yakuake/debian/source/options b/ubuntu/_base/applications/yakuake/debian/source/options new file mode 100644 index 000000000..72f1f5450 --- /dev/null +++ b/ubuntu/_base/applications/yakuake/debian/source/options @@ -0,0 +1,6 @@ +# Use xz instead of gzip +compression = "xz" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/_base/applications/yakuake/debian/yakuake-trinity.install b/ubuntu/_base/applications/yakuake/debian/yakuake-trinity.install new file mode 100644 index 000000000..e5e863463 --- /dev/null +++ b/ubuntu/_base/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/_base/applications/yakuake/debian/yakuake-trinity.menu b/ubuntu/_base/applications/yakuake/debian/yakuake-trinity.menu new file mode 100644 index 000000000..782658df2 --- /dev/null +++ b/ubuntu/_base/applications/yakuake/debian/yakuake-trinity.menu @@ -0,0 +1,8 @@ +?package(yakuake-trinity):\ + needs="X11"\ + section="Applications/Terminal Emulators"\ + title="YaKuake"\ + icon32x32="/opt/trinity/share/pixmaps/yakuake.xpm"\ + icon16x16="/opt/trinity/share/pixmaps/yakuake-16.xpm"\ + command="/opt/trinity/bin/yakuake" + |