summaryrefslogtreecommitdiffstats
path: root/ubuntu/lucid_automake/applications/kio-apt/debian
diff options
context:
space:
mode:
Diffstat (limited to 'ubuntu/lucid_automake/applications/kio-apt/debian')
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/buildvars.mk86
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/debian-qt-kde.mk109
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/kde.mk97
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/team-members16
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/uploaders.mk29
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/versions.pl19
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/changelog297
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/compat1
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/control21
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/copyright30
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/docs1
-rwxr-xr-xubuntu/lucid_automake/applications/kio-apt/debian/fixrpath25
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/kdedeb_logo.png.uu139
-rw-r--r--ubuntu/lucid_automake/applications/kio-apt/debian/patches/.gitignore0
-rwxr-xr-xubuntu/lucid_automake/applications/kio-apt/debian/rules35
15 files changed, 0 insertions, 905 deletions
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/buildvars.mk b/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/buildvars.mk
deleted file mode 100644
index 23d4709dc..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/buildvars.mk
+++ /dev/null
@@ -1,86 +0,0 @@
-# -*- 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/lucid_automake/applications/kio-apt/debian/cdbs/debian-qt-kde.mk b/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/debian-qt-kde.mk
deleted file mode 100644
index 2be8f97f1..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/debian-qt-kde.mk
+++ /dev/null
@@ -1,109 +0,0 @@
-ifndef _cdbs_bootstrap
-_cdbs_scripts_path ?= /usr/lib/cdbs
-_cdbs_rules_path ?= /usr/share/cdbs/1/rules
-_cdbs_class_path ?= /usr/share/cdbs/1/class
-endif
-
-ifndef _cdbs_class_debian-qt-kde
-_cdbs_class_debian-qt-kde := 1
-
-# Note: This _must_ be included before autotools.mk, or it won't work.
-common-configure-arch common-configure-indep:: debian/stamp-cvs-make
-debian/stamp-cvs-make:
- cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
- cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
- $(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist;
- touch debian/stamp-cvs-make
-
-include debian/cdbs/kde.mk$(_cdbs_makefile_suffix)
-include debian/cdbs/uploaders.mk
-
-DEB_PATCHDIRS := debian/patches/common debian/patches
-
-DEB_KDE_ENABLE_FINAL := yes
-DEB_INSTALL_DOCS_ALL :=
-
-DEB_DH_MAKESHLIBS_ARGS_ALL := -V
-DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib)
-
-ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
- cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb
- ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches)))
- cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,)
- else
- cdbs_kde_enable_final =
- endif
-endif
-
-common-build-arch:: debian/stamp-man-pages
-debian/stamp-man-pages:
- if ! test -d debian/man/out; then mkdir -p debian/man/out; fi
- for f in $$(find debian/man -name '*.sgml'); do \
- docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \
- done
- for f in $$(find debian/man -name '*.man'); do \
- soelim -I debian/man $$f \
- > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \
- done
- touch debian/stamp-man-pages
-
-common-binary-indep::
- ( set -e; \
- tmpf=`mktemp debian/versions.XXXXXX`; \
- perl debian/cdbs/versions.pl >$$tmpf; \
- for p in $(DEB_INDEP_PACKAGES); do \
- cat $$tmpf >>debian/$$p.substvars; \
- done; \
- rm -f $$tmpf )
-
-common-binary-arch::
- ( set -e; \
- tmpf=`mktemp debian/versions.XXXXXX`; \
- perl debian/cdbs/versions.pl >$$tmpf; \
- for p in $(DEB_ARCH_PACKAGES); do \
- cat $$tmpf >>debian/$$p.substvars; \
- done; \
- rm -f $$tmpf )
-
-clean::
- rm -rf debian/man/out
- -rmdir debian/man
- rm -f debian/stamp-man-pages
- rm -rf debian/shlibs-check
-
-$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%:
- if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi
- if test -e debian/$(cdbs_curpkg).lintian; then \
- install -p -D -m644 debian/$(cdbs_curpkg).lintian \
- debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \
- fi
- if test -e debian/$(cdbs_curpkg).presubj; then \
- install -p -D -m644 debian/$(cdbs_curpkg).presubj \
- debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \
- fi
-
-binary-install/$(DEB_SOURCE_PACKAGE)-doc-html::
- set -e; \
- for doc in `cd $(DEB_DESTDIR)/opt/kde3/share/doc/kde/HTML/en; find . -name index.docbook`; do \
- pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \
- echo Building $$pkg HTML docs...; \
- mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/kde3/share/doc/kde/HTML/en/$$pkg; \
- cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/kde3/share/doc/kde/HTML/en/$$pkg; \
- /opt/kde3/bin/meinproc $(DEB_DESTDIR)/opt/kde3/share/doc/kde/HTML/en/$$pkg/index.docbook; \
- done
- for pkg in $(DOC_HTML_PRUNE) ; do \
- rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/kde3/share/doc/kde/HTML/en/$$pkg; \
- done
-
-clean::
- if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \
- cd $(DEB_SRCDIR); \
- find . -name Makefile.in -print | \
- xargs --no-run-if-empty rm -f; \
- rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \
- configure configure.files configure.in stamp-h.in \
- subdirs; \
- fi
- rm -f debian/stamp-cvs-make
-
-endif
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/kde.mk b/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/kde.mk
deleted file mode 100644
index 21965ceef..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/kde.mk
+++ /dev/null
@@ -1,97 +0,0 @@
-# -*- 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}/kde3
-export kde_htmldir = \$${datadir}/doc/kde/HTML
-
-ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
- cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,)
-endif
-
-ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
- cdbs_kde_enable_final =
- cdbs_kde_enable_debug = --enable-debug=yes
-else
- cdbs_kde_enable_debug = --disable-debug
-endif
-
-ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS)))
- cdbs_kde_enable_debug = --enable-debug=full
-endif
-
-cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug)
-
-DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin
-DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/tde"
-DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el
-
-$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%:
- if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi
-
-cleanbuilddir::
- -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR))
-
-common-build-arch common-build-indep:: debian/stamp-kde-apidox
-debian/stamp-kde-apidox:
- $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox)
- touch $@
-
-common-install-prehook-impl::
- mkdir -p po
- -XGETTEXT=/usr/bin/kde-xgettext EXTRACTATTR=/opt/kde3/bin/extractattr sh $(DEB_SRCDIR)/admin/cvs.sh extract-messages
- -for file in po/*pot; do \
- sed "s/charset=CHARSET/charset=UTF-8/" -i $$file; \
- done
-
-common-install-arch common-install-indep:: common-install-kde-apidox
-common-install-kde-apidox::
- $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR))
-
-clean::
- rm -f debian/stamp-kde-apidox
- rm -rf po/*.pot
-
-# This is a convenience target for calling manually. It's not part of
-# the build process.
-buildprep: clean apply-patches
- $(MAKE) -f admin/Makefile.common dist
- debian/rules clean
-
-endif
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/team-members b/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/team-members
deleted file mode 100644
index 05761af6e..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/team-members
+++ /dev/null
@@ -1,16 +0,0 @@
-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/lucid_automake/applications/kio-apt/debian/cdbs/uploaders.mk b/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/uploaders.mk
deleted file mode 100644
index 31adfe31e..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/uploaders.mk
+++ /dev/null
@@ -1,29 +0,0 @@
-
-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/lucid_automake/applications/kio-apt/debian/cdbs/versions.pl b/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/versions.pl
deleted file mode 100644
index 9ce11d8a3..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/cdbs/versions.pl
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env perl
-
-use strict;
-use warnings;
-
-my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`;
-my ($version3, $version3_next);
-my ($version2, $version2_next);
-
-($version3 = $version) =~ s/-[^-]+$//;
-($version2 = $version3) =~ s/\.[^.]+$//;
-
-($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e;
-($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e;
-
-print "KDE-Version3=$version3\n";
-print "KDE-Version2=$version2\n";
-print "KDE-Next-Version3=$version3_next\n";
-print "KDE-Next-Version2=$version2_next\n";
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/changelog b/ubuntu/lucid_automake/applications/kio-apt/debian/changelog
deleted file mode 100644
index 9897c9216..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/changelog
+++ /dev/null
@@ -1,297 +0,0 @@
-kio-apt-kde3 (0.13.2-5ubuntu0) karmic; urgency=low
-
- * Karmic rebuild
-
- -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600
-
-kio-apt-kde3 (0.13.2-4ubuntu5) intrepid; urgency=low
-
- * Moved KDE3 to /opt/kde3
- * Integrated properly with KDE4.2+
-
- -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 05 March 2009 29:52:00 -0600
-
-kio-apt-kde3 (0.13.2-4ubuntu4) intrepid; urgency=low
-
- * Added -kde3 suffix
-
- -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 03 Dec 2008 18:03:00 -0600
-
-kio-apt (0.13.2-2ubuntu7) hardy; urgency=low
-
- * Make sure debian/patches/01_kubuntufication.dpatch is actually
- applied (LP: #190567)
-
- -- Terence Simpson <tsimpson@ubuntu.com> Sun, 10 Feb 2008 03:46:10 +0000
-
-kio-apt (0.13.2-2ubuntu6) hardy; urgency=low
-
- * Reuploaded as the buildd seems to be fixed
-
- -- Anthony Mercatante <tonio@ubuntu.com> Mon, 12 Nov 2007 14:12:22 +0100
-
-kio-apt (0.13.2-2ubuntu5) hardy; urgency=low
-
- * Added kubuntu_02_adept_integration.patch:
- - Makes it possible to install and remove packages
- while browsing the ioslave
- - Supports apt:// protocol for one-click-installation
- - No apt+http:// support yet
- - Buildprep applied since the patch fixes Makefiles.am files
-
- -- Anthony Mercatante <tonio@ubuntu.com> Sat, 10 Nov 2007 11:19:17 +0100
-
-kio-apt (0.13.2-2ubuntu4) hardy; urgency=low
-
- * Applied buildprep to fix Makefiles according to previously
- applied patches
-
- -- Anthony Mercatante <tonio@ubuntu.com> Thu, 01 Nov 2007 19:36:41 +0100
-
-kio-apt (0.13.2-2ubuntu3) hardy; urgency=low
-
- * Override previous upload, shouldn't have reach the
- repos
-
- -- Anthony Mercatante <tonio@ubuntu.com> Mon, 22 Oct 2007 10:49:53 +0200
-
-kio-apt (0.13.2-2ubuntu2) gutsy; urgency=low
-
- * Change header-background-color to white.
-
- -- Frode M. Døving <frode@ubuntu.com> Fri, 03 Aug 2007 15:22:23 +0200
-
-kio-apt (0.13.2-2ubuntu1) gutsy; urgency=low
-
- * Merge from Debian unstable.
- * Remaining Ubuntu changes:
- - Kubuntu branding, and using Ubuntu releases and URLs.
- - Add the dpatch CDBS include, and Build-Depend on dpatch.
- - Store Kubuntu icon uuencoded in debian/, and Build-Depend on sharutils
- so it can be uudecoded during post-install.
- - Set Ubuntu maintainer address.
-
- -- Steve Kowalik <stevenk@ubuntu.com> Sun, 24 Jun 2007 21:40:26 +1000
-
-kio-apt (0.13.2-2) unstable; urgency=low
-
- * Fix wrong locale dir: usr/share/locale/pl-utf/ (Closes: #429749)
-
- -- Emmanuel Bouthenot <kolter@openics.org> Wed, 20 Jun 2007 00:06:01 +0200
-
-kio-apt (0.13.2-1ubuntu1) gutsy; urgency=low
-
- * Manually merge from Debian unstable.
- * Ubuntu changes kept:
- - Kubuntu branding, and using Ubuntu releases and URLs.
- + Add Gutsy to the list of releases.
- - Set Ubuntu maintainer address.
- * Ubuntu changes dropped:
- - Add kubuntu_01_kdepot.diff
- - Alter debian/rules to create .pot file
- * Add the dpatch CDBS include, and Build-Depend on dpatch.
- * Don't patch a uuencoded icon in the Kubuntu branding patch, it makes
- baby Jesus and me cry. Instead, store it uuencoded in debian/, and
- uudecode it in the post-install hook. Add a Build-Depends on sharutils
- as a result.
-
- -- Steve Kowalik <stevenk@ubuntu.com> Mon, 28 May 2007 20:29:54 +1000
-
-kio-apt (0.13.2-1) unstable; urgency=low
-
- * Setting me as maintainer in debian/control
- * Remove workaround in debian/rules against .gmo files not cleaned
- * Fix spelling in description field (Closes: #399604)
- * New upstream release
-
- -- Emmanuel Bouthenot <kolter@openics.org> Wed, 22 Nov 2006 11:09:02 +0100
-
-kio-apt (0.13.1-1) unstable; urgency=low
-
- * Initial release in debian (Closes: #397618)
-
- -- Emmanuel Bouthenot <kolter@openics.org> Thu, 2 Nov 2006 21:34:39 +0100
-
-kio-apt (0.13.1) unstable; urgency=low
-
- * at last, rebuild to use latest KDE library packages
-
- -- Sylvain Joyeux <sylvain.joyeux@m4x.org> Tue, 29 Aug 2006 22:06:07 +0200
-
-kio-apt (0.13-0ubuntu5) feisty; urgency=low
-
- * Rebuild for changes in the amd64 toolchain.
- * Set Ubuntu maintainer address.
-
- -- Matthias Klose <doko@ubuntu.com> Mon, 5 Mar 2007 01:19:35 +0000
-
-kio-apt (0.13-0ubuntu4) feisty; urgency=low
-
- * Add Feisty sections.
- * Add self as Maintainer.
- * Rename old Maintainer field to X-Original-Maintainer.
-
- -- Frode M. Doeving <frode@ubuntu.com> Thu, 2 Nov 2006 11:11:29 +0100
-
-kio-apt (0.13-0ubuntu3) edgy; urgency=low
-
- * Add edgy to the list of distributions.
-
- -- Frode M. Doeving <frode@lnix.net> Thu, 29 Jun 2006 17:07:41 +0200
-
-kio-apt (0.13-0ubuntu2) dapper; urgency=low
-
- * Alter debian/rules to create .pot file
- * Add kubuntu_01_kdepot.diff
-
- -- Jonathan Riddell <jriddell@ubuntu.com> Tue, 9 May 2006 17:25:03 +0300
-
-kio-apt (0.13-0ubuntu1) dapper; urgency=low
-
- * Merge with upstream.
- * Update 01_kubuntufication.dpatch for Dapper
-
- -- Frode M. Doeving <frode@lnix.net> Tue, 21 Mar 2006 20:04:29 +0100
-
-kio-apt (0.13) unstable; urgency=low
-
- * Rebuild for the KDE transition
-
- -- Sylvain Joyeux <sylvain.joyeux@m4x.org> Thu, 6 Oct 2005 18:29:50 +0200
-
-kio-apt (0.12) unstable; urgency=low
-
- * Small bugfixes. Fix for APT >= 0.6
-
- -- Sylvain Joyeux <sylvain.joyeux@m4x.org> Fri, 8 Jul 2005 08:14:25 +0200
-
-kio-apt (0.11-0ubuntu3) dapper; urgency=low
-
- * Rebuild because libXft.la is gone
-
- -- Stephan Hermann <sh@sourcecode.de> Sat, 14 Jan 2006 17:21:54 +0100
-
-kio-apt (0.11-0ubuntu2) dapper; urgency=low
-
- * Rebuild for libstdc++ transition
-
- -- Jonathan Riddell <jriddell@ubuntu.com> Wed, 7 Dec 2005 17:09:13 +0000
-
-kio-apt (0.11-0ubuntu1) breezy; urgency=low
-
- * Build for ubuntu.
- * Add dpatch capabilities.
- * [patch]: 01_kubuntufication.dpatch - kubuntu branding. the 16x16 icon is
- from
- <http://kubuntu.org/favicon.ico> and the logo in apt:/ is a modified version
- of the kubuntu logo at https://wiki.ubuntu.com/KubuntuArtwork
- * [patch]: 02_gcc4fix.dpatch - gcc4 compile fixes.
- * Sponsored upload for Frode M. Doeving <frode@lnix.net>
-
- -- Jonathan Riddell <jriddell@ubuntu.com> Thu, 30 Jun 2005 18:19:35 +0200
-
-kio-apt (0.11) unstable; urgency=low
-
- * Changes in order to behave better when the view is not
- so wide (mainly for KPkgManager)
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Sat, 3 Apr 2004 10:22:32 +0200
-
-kio-apt (0.10) unstable; urgency=low
-
- * Released 0.9 too soon. Fixing some bugs related to
- kpkgmanager (even if I don't know if anybody uses it
- yet)
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Sat, 20 Mar 2004 12:39:41 +0100
-
-kio-apt (0.9) unstable; urgency=low
-
- * Fixes some details
- * Adds support for install and remove via KPkgManager
- * Removes the run-time check for rpm & dpkg, as
- alien installs /usr/bin/dpkg on RPM systems (and
- vice-versa). A option for the configure script (build-time)
- is used instead
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Tue, 16 Mar 2004 16:42:42 +0100
-
-kio-apt (0.8) unstable; urgency=low
-
- * Release
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Sat, 24 Jan 2004 17:16:58 +0100
-
-kio-apt (0.7.2) unstable; urgency=low
-
- * Bugfixes
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Sat, 17 Jan 2004 11:09:51 +0100
-
-kio-apt (0.7.1) unstable; urgency=low
-
- * Pre-release version for 0.8
- * Added some of the suggestions that appeared on kde-look:
- - can show file list in the show? page
- - can switch between a simple form (only search is available)
- and a complete one
- - added online search form (only dpkg from now)
- * A few bugfixes. Since a lot of refactoring has been done,
- new ones are likely to appear.
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Fri, 16 Jan 2004 19:03:28 +0100
-
-kio-apt (0.7) unstable; urgency=low
-
- * Bugfixes
- * Added RPM-specific support
- * Package-manager specific functionalities like
- listing files in package are now hidden if the
- package is not installed
- * Polish translation
- * Web shortcuts : apt-search, apt-find for finding
- a file in packages, apt-files for listing the files
- of a package.
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Thu, 8 Jan 2004 12:46:16 +0100
-
-kio-apt (0.6) unstable; urgency=low
-
- * Added support for dpkg -L and dpkg -S. Fixed a few bugs which appear
- when an invalid package is given to show?.
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Sun, 14 Dec 2003 13:46:50 +0100
-
-kio-apt (0.5) unstable; urgency=low
-
- * Bugfix release
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Tue, 9 Dec 2003 12:52:28 +0100
-
-kio-apt (0.4) unstable; urgency=low
-
- * Added forms for query.
- Thanks to Willy De la Court <wdl@linux-lovers.be> for the idea and
- the initial patch.
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Sat, 22 Nov 2003 00:09:59 +0100
-
-kio-apt (0.3) unstable; urgency=low
-
- * Bugfixes.
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Fri, 14 Nov 2003 18:42:27 +0100
-
-kio-apt (0.2) unstable; urgency=low
-
- * New release, added a policy action and
- showing policy on the top of show. Bugfixes.
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Sun, 12 Oct 2003 20:40:51 +0200
-
-kio-apt (0.1) unstable; urgency=low
-
- * Initial Release.
-
- -- Sylvain Joyeux <sylvain.joyeux@polytechnique.org> Mon, 6 Oct 2003 10:35:33 +0200
-
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/compat b/ubuntu/lucid_automake/applications/kio-apt/debian/compat
deleted file mode 100644
index 7ed6ff82d..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-5
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/control b/ubuntu/lucid_automake/applications/kio-apt/debian/control
deleted file mode 100644
index 1c3224e32..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/control
+++ /dev/null
@@ -1,21 +0,0 @@
-Source: kio-apt-kde3
-Section: kde
-Priority: optional
-Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
-XSBC-Original-Maintainer: Emmanuel Bouthenot <kolter@openics.org>
-Build-Depends: debhelper (>= 5), cdbs, kdelibs-kde3-dev, sharutils, automake1.11-kde3, autoconf2.63, libtool, libltdl-dev
-Standards-Version: 3.8.3
-
-Package: kio-apt-kde3
-Architecture: any
-Depends: ${shlibs:Depends}, apt, adept-batch-kde3
-Description: an apt-cache ioslave for KDE3
- kio-apt is an ioslave which provides the apt:/ protocol. It
- integrates apt-cache functionalities into Konqueror, making
- browsing the packages easier. It provides:
- - apt-cache search: apt:/search?expression
- - apt-cache show: apt:/show?package . The show? target
- prints the policy too.
- - apt-cache policy: apt:/policy?package
- .
- Homepage : http://lpnotfr.free.fr/
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/copyright b/ubuntu/lucid_automake/applications/kio-apt/debian/copyright
deleted file mode 100644
index b461d84ed..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/copyright
+++ /dev/null
@@ -1,30 +0,0 @@
-This package was debianized by Sylvain Joyeux <sylvain.joyeux@polytechnique.org> on
-Mon, 6 Oct 2003 10:35:33 +0200.
-
-It was downloaded from http://lpnotfr.free.fr
-
-Upstream Author: Sylvain Joyeux <sylvain.joyeux@polytechnique.org>
-
-Copyright: 2003, Sylvain Joyeux <sylvain.joyeux@polytechnique.org>
-
-Others Copyrights :
- - src/rpm.cpp : 2003, David Maciejak <david.maciejak@kyxar.fr>
-
-License:
-
- This package is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This package is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- 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
-
-On Debian systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'.
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/docs b/ubuntu/lucid_automake/applications/kio-apt/debian/docs
deleted file mode 100644
index 62deb0497..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/docs
+++ /dev/null
@@ -1 +0,0 @@
-AUTHORS
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/fixrpath b/ubuntu/lucid_automake/applications/kio-apt/debian/fixrpath
deleted file mode 100755
index 0ca44359e..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/fixrpath
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-# $Id: fixrpath,v 1.1 2006/11/19 12:01:24 lpnotfr Exp $
-# libtool -rpath workaround based on a suggestion by Yann Dirson
-# <dirson@debian.org>
-#
-# It is supposed to be inserted in configure.in, but I didn't want
-# to re-run autoconf (since that bloats the Debian diff unnecessarily),
-# so I just patch libtool after running configure. -- Richard Braakman
-# <dark@xs4all.nl>
-#
-# The version of libtool included with LessTif unfortunately insists on
-# linking with -rpath, i.e. hardwiring locations. This is not desirable.
-#
-# The dummy define is improbable enough not to conflict with anything; it is
-# just here to fool libtool by making it believe it gave some useful info to
-# gcc.
-#
-# This will also patch the generated libtool to explicitly
-# link libraries against the libraries they depend on. (particularly libc)
-
-sed < $1/libtool > $1/libtool-2 \
- -e 's/^hardcode_libdir_flag_spec.*$/hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/' \
- -e '/^archive_cmds="/s/"$/ \$deplibs"/'
-mv $1/libtool-2 $1/libtool
-chmod 755 $1/libtool
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/kdedeb_logo.png.uu b/ubuntu/lucid_automake/applications/kio-apt/debian/kdedeb_logo.png.uu
deleted file mode 100644
index 85ac9ca79..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/kdedeb_logo.png.uu
+++ /dev/null
@@ -1,139 +0,0 @@
-begin 644 kdedeb_logo.png.uu
-MB5!.1PT*&@H````-24A$4@```%@```!5"`8```#-"R/J````!F)+1T0`_P#_
-M`/^@O:>3````"7!(67,```L3```+$P$`FIP8````!W1)344'U0<2"Q8`UMH^
-M#@```!UT15AT0V]M;65N=`!#<F5A=&5D('=I=&@@5&AE($=)35#O9"5N```7
-M+$E$051XVNU=>6Q=Y97_G;N^_3T_[X[7["$)V0,)M(10(*4+7>BD>QD-ZJ)6
-MU525IM-6JM3I:$8SK31;2Z4RG4YGH,N(,DQI2T.!`"4E!+*0V"'>=\?+\]NW
-MNWUG_GB.$\=.[.<\$D,XDBW9]]W[W?N[YYSOG-\YW_>(F06N,WGX\39ZZ+%N
-MD$3X]'N;\>D/KF=%E@``HQ-I?/Y;SY''K>`K]V_B;1MJ($FTZ+$D7(<2\.F0
-M)`E"`']X:02#9U,`@$3*P(]^V4;1-&,X8N)HVSB!KFPLY?H$6&6:@FYXPL"/
-M?ME*MVRIX>Z!)!U\=0P@@JI(:%[F9XGH;8`O)YFLA?')+"K";OB]&H1@&*8#
-MGOX$X:6341QIBY$0#$<4`'5KA*WKJZ]X_+<\P$\^WX-'?MM-JYN"V+PV#+=+
-MYD>?ZB/'.0^Q8$#8/.,\KUN&WZM=\?CT5I[D1L92^.8_O4S=([G"A$/G`3TG
-M08^,@+^@V9&X`</BZ<_>L;,*M]]<S_F\@]ZA!!09^//[-KX-\(7NX>%?OT[_
-M<Z`?EC/SF"H#.S>4\\??NQH!GPI',#K[XOC/_^V@X8@!`)"EPH]E"S@""'DE
-M//;]>UA3Y;==!`!X/2H^N_]&KJOPXJ>_[J#QN#U][)W;*O&5^[<@X-.G_[>\
-M(81532'^TM^^2.D\PQ&`(PK!EBPQ-$W!Z$0:C77!M\.T:1,EX-VWM^#+G]S(
-M[#A3#RWPL?>LY@O!G0:Y,80[=]4Q,T^?'_(I^-#>>OSC5V_F^IK`VY/<K(>4
-M)6BJ!,&`#"#D5]"T[-):N&%U.?[ON4$()I0'5'SCLYMYZ_KJ124<2QY@TW(P
-M&LDAE;412]MHZTWA[*1!ILTPK<*$I<J`IA+*`RK?N#*`\H"*,K^*^BH/)N,Y
-M'#P\A,?^T$.R4C#83,Z&8=K0M;E]:32>!W,!S(J0BBTW5"\ZFUMR`#,S+)MQ
-M]/0$3G2F:##J8"1.2.8$4GF&0RI(TB]U+CUQ?!(>#5A3Q;AGNY=_=:"'3O<D
-MX3`!4VF981$.'A[`^^]8A8OS"$<PGCD\1#SUV=%)`P?^V(L[;VV&JDAO7H!M
-M1Z!S((E7SJ3P[(D$#20TD**B8-13(N.RF2L1`8J.K`#Z(QE$8@;:>I(03+,<
-M\R._Z2&?1^,[=C=-_SN6R..GC[71ZWV9PK4`Q-,.OON35NH>2/`G[UV'LJ#K
-MS1FFC49R^,:_=]%@R@5!)7COMH$'WBGS,X?ZR;`$_!X57K>"UWM32&8+DUW`
-M(V/;VC(TU/K8L@5.=<:H?2`-:RKI8.9IH%49^-1[E_/]'U[_YM3@<%##YN5N
-M#)RDTEQ0T3$X:=+??W4W#XUFD,HYV+(VC*</]=/W?WX&E@,DLPX.'HL`B,P:
-M-.B1L&EMF#OZ$C0V:<"E*5B_*OSF<!&YO`VW:^;0FBKCXW<NX\.=W326\Y9D
-MG(-G'+S:W4U9N`%F?&34X,TK0JS(H(L3CPNE,JC@FY_;PC>LJD#.L'EP)(7>
-MH01M7%.Y].G*[OX8GCLRA)QASSI64>;&AW:501)F:2(0<F/2]B%GR\C;$E(Y
-M04=;QY`SSL>X-64*:LL5J/+Y_+FJW(VF94&X=`5E`1=N7%N)>]^UDEVZLG0!
-M%H)QJCV"/[7%*6UK=+)]$CS'Y]ZUO8*W-I1^?(_J8/<-/C[:%B%,<95;UP3Q
-M\/?NXD>^=S?_V5W-TUQ%,F,CG;5*,NY5`=AV!(Z?'L?I_@P%`SYHFH*NP31E
-M<[,?(A30L7]/!2M.OJ3W$%(---;X$/`J4&5"8XT+']FWDK_WLRYZ\-$>>L?V
-M.@X'E&D79IA.:3+)-SJ*,$P;QTY/H&_,(J_//2/>]5`.>V]N8%F6+HIG@7]X
-MN).>/D-@DDNC2<+&KA8''[V]BCO[H@CZ-?RI/4]/MRMPR0Z^<H^/!P8B=.#0
-M$+;>4(%/?V`=!WPZ?%YUZ0(L!..%5X<QD0+IKMG)03Z7P[8U`5[1$)IUK*,_
-M@>_\_"R-I/72\1(L4.6UL+U%8;=+QJ^/662R"C!C5[.-_7LJ.):TT#&81FN_
-M03Z/C"]_N)&KPNZE"7!;9P2M?3ER>^8.SAU'@,T,/GC'<IZK,O/PD_WXCS^:
-M1%)I@QUF!@D+D,\3ZBH;"+H9R:Q`GG5(L@P2-MZSD?#%^UJ*HBBOB@\>&$FB
-MM2=]27`!0)8EL.+&JZUG<8Z]NE#>_XY:W%!E`W-.AU?"L-$,<`'`(AV1O`NF
-MY($D%\!D2<&!-L;/#@S.J(!<\S@XE[=QHCU*FGM^TU(4&?VC65K9:/#%::C?
-MJ^+>FT/<]V2*+):A<1Y!7:`JI,#GDB'+!%D".P[39,I&-.4@;B@PH<W@'JY$
-M+"AX[.4LMJR.8=/J\+5W$;8M\-PKPTB9*LG*PLS*-&V$/3;OO:EA3C_^^,%!
-M>%PR;MY8CE#`-4_*G<61MBA.].7I6(^%E*T!=.6&NK;"P+<^U<35Y>YK"W!;
-MYR1:^[*7=0US23Z;PXZU`6Z98\);K!7UCF3PY.%Q.M0ID+14\!5HM`P;^V]2
-M^2_>UWSM`$ZD##QSY"PIKN)37<=QH(@\]MW2P*HJE^R%,P,G.Z)X^)EQ.C8D
-M`U<P8?HHBW_]?",W+?-?FTGN='<4#BTN;I0D"9-)"X;EE/*60`1L6A/&MSZS
-M@N^_5>6`8BSZ6FEVX]$7QL@LXAY+!K!E"W0,I$G7%]=+D,_FL'UMB#TN%6^$
-M^+TJ/K&O"9^[*\@^:;%9(N'5'@LC$[FK#_#+)T80#`<79<*Y3!:;5_EYP^K*
-M*VJTF]]*"/MVU^*;'ZG@@+(XD,<S"IX_/GEU`4ZD#$RF'%I,'Y=M66BIT7EE
-M8]E58_1V;JS$E]X3YI"^"-9.4O!"6X8R"R2#2@+P9,)`SBK^4I9EPZ-:V+&Q
-M&K),N)IR^[8J?&"[BR&*]_DC:0V'3DZ4!F##=/#,*V/XV5.#.'PJ@CD2+G3T
-MQN%R%\\92,+"MG653'1UP3WG+CYX6QTVUEJ@(C-%TY%P\&2&,CG[R@%.9FS\
-MX#?C]-!!@QYY9IR$F'TSX['<HOIH0QY"9=B#:R4^CXJ/[ZEDKV(7=R(13@_F
-MD2X6X&3:A&7/#(O/1G)(Y!5(LHR^<6O&<69&UV`2ZU>$&4::;7OAYA:/)K%[
-M2RU?`^6]R!]78$M]\6XB:6KH'$@M'.#12!;?_5DW_>#1'D23!I@90C!>ZXB#
-ME8+YIX4+)SLB8&:8EH.GCXSB;QX9IA\=B%)=E0]./@O'F?]F+<M&4ZT;FK8T
-M:J[OWE7%LI,KSL6H&EI[DO.JAP(`></&#Q\?H)?Z-0@&O3[4A0_L"G(J!_SA
-M5(Z(7%,3J(:'GHQ0WYC!PQ&3GFJU8<(%$A;:^K.X:T<EOW`\0EZ_[_*AF1"H
-M#KNON?:>DU7U/K14C*,K5MQY0Q/S1Q(*`*B*C'5-7C[2GR>3%73%W?BW`SER
-MF&#SS,FK)^'&CY\S20`0*!QK*F/LW5J.X;$L%'7^1$$B1M"G8:E(T*]ARW(7
-MNE\5X"*(H:$$86(RB\IRS^5=A"P3[ME5C755]A3U2C"$`IOE:<IOFJ\E@@T9
-M8JKCAAP3'][M9^$XZ!K)SUFYF$T\6*BN\"X9@&6)T%2I02F2`DD:$@;'<_-K
-M,``$?!J^<.\R_MJ/!RGA>*;0=["FTL8M:]T(^R6.)BT<:C>I?4*&F#JURF/@
-MEDTMZ!V(09+E&=TPEQ*/+KVA&=MB9-NZ,OYH;(Q,6X"HP&%(4\HU_3>=TS$"
-M$:#*"BI"VL(`+K@*"8I,@`,0&.]<P7C@?8U<6W'>!.[8F>,?/CY`+_0P`,)D
-M3L7K/0FL:PDADY_D1#J'=-8F(6GP>.>F+'558BPQJ2KWX/[WM93\OJA_."F&
-M(WE,)FV\TIZF%[L`R`K\4A8/?K&)ZZIG3U@3L3R^\,]=%',*9AZ0LZ@-R5A9
-MI_.J96[<M"Z(9U\9(8\_,"?W4.6U>->6.EP/HGSMH6[*P(>\Q;"%!)HJH3>$
-M"7.!"P`!KXKF:@6QD8(6)QT/DI-`>T20]_4D*OS$EVKU9.925'+>/``GLH`Q
-M17!?.(%J*ETND8%;DV:Y6P9!V#94F3!G3CV5HIJF<_T`?-=F-P:C-D;30#K'
-MR%@RF"0,3`@D4B:"_ME./).ST3-F$4V1ZXV^'-8WJ*@OEWE50P6JPBZT]R>@
-M7B)ZL0L5R27EAS,Y"\.C*5Q(!5RH(WSN-Y__6Y$E--3ZX7%?.C15_O)C:SAO
-MV!@>SZ+W;!8_?#)&<<N%F*7CL>>&\8E]C;BP)\!Q&+]_:93&LAI`@&3G\-7[
-MZOB&Y4'\ZJEN&IHP,#AA075=.C8\MQ9M*<G1UE$\^//7R;0$&`Q<H`-\'N$+
-M0&>4!S5\_;-;>55+^/)1A$M7L*(A@+I*#_[8FL*+W0PF&3\_;%+_1#?NWE[&
-M?K>$K"'PS+$X/=<NP%30;*_&\'D4=/5'8<LNZ*H.`G"YPD3.+*3:6@EK;U<B
-MS(RN_@2-3AH01;S[\A"AMLJW\##M[&0.O>,V,-5A[I"&%[L%C@W$25<)ELU(
-MFS0-+@"D'!=^\<Q9>N"]]2RL&)BU>>-@258P-I%!0UU@20"<2!EXY=1$4>`"
-M0&69#N\\RVVE\P2,@_]^ZBP-)6>>P"0A8RN(YF2D+&6Z&8_/$=4DX?D.QG/'
-M(MBVIHSSN?E+,;8@1!+&DG$/7?UQM/>GBCZO,NR>-R":!OC0:Q-XI0\@28($
-M!TW!/.Y<;:$A:($NJ.R7:2;N6>_@<WM4;@R:('9@"1E'SB2IHLP-6D"%0--5
-MM/<EYN26K[98EH,GGNTE6Q0;.S)6-@;G?8!I%[&BWH]J;Q1],>#65<#]^^JY
-MJ<Z/MIXXOOZ3$<IPH:-ESUH97[AO!<L28>?Z%/_RV5$ZW9_&9_8U\\NGQDEQ
-MS=_Y0D00I&+P;/*R"P*OAK1U3N)$>[SH\P(>"3LVUF#!`#?4>/'MSS1Q1U\<
-MM^VH@SR5>"^K]*`Z)*-GBLIKK-;XW+&697[\]:?\'$_F<:1U'%FA7W)QW\7B
-M\WMPO#U&Y64>]GG4:P*N:3GXZ>/M%$M90)'<Z>8UY2@+S4]LS4BWZJN]V'O3
-MLFEP`4#7)-2%%;`0<,P\UC;-[FJ9C!L8BSND%TF@FZS@3$_TFH`K!./@X4&\
-MUADO&EQ5(>S84+F@'HYY$7'K"MZUV<^*E"`XP/*&V2;M]ZIPZ\6'7"Z7CH[!
-M-#749/AJTY>M'1'\^%?M9"\BJ0QX9&S?N+#=4!:D<KLW56+G^C`S%[*7BZ6B
-MS`V_SEA,7.#Q>?#RJ0C=MEWAH%^_*N".3V;Q+S]]C<:BBUO-=,/R(.JJ%]:?
-MMB#Z7I8(NJ;@4LN8)(FPNBG(Z72NZ)N5)`DF-+Q\LKB>K\7*X-DDOO.#(]0Y
-MG%M4KNY2"7?=VKC@<E?)6J>:ZX/PJ`X<I_AF34U3D+)4'#@T2!=7M4LEMBWP
-MIZ/#^*OOOD2O=:46?9V=&\/8NKYJX61/J1Z`B+"V.<BMO5F2Y>)-75%DY+,"
-M0HA2OG<P@'@BCU\=Z*3'GQV<7J>\&%%EX-Z]+5S,9DDEK9NO:@JA9RC%IA`D
-M2<6!9!DF-JX(L5["4O[$9!:'3YS%+W[714,3QA4U8!,8M^^HPHX;:XM3G%("
-M+,L2=FZLPA]>'H7'Y\5"6Z*$$'`K#E8TS>YN3V=-=/;%41EV(^37X?5HEXRJ
-M+%L@&L\AEC1PZ.@PO?#J*(8G\C#M`D17(@W5;NR_9W71;KODG1_E(1=6U7NX
-M?\(F55M8`I'/YK!]4_FL*@@SX^E#`WCP%Z?)YU&QJBF`U4U!E`4T^#PJZZJ$
-MO.E0WG"0R=D8&<_BM8XH1B,YY"V@5#UOBL3X]/M7\:KF);#:GHBP95T58LDA
-M)$V"JEY^",<1J"M7>2[:;W0B@U\\V45YBY!/V(B<C.+PJ2@D(D@2B(C`S&`&
-M!#.$.&_0B\*6N5`5O\"]:0IA_]W-?/NNQD7A\8:LDY-EPJ[-U:S!P'R$CI'-
-M8M.:BAG9XSGM_=WSO70V8EZ,`1Q1V';&M`0LFV$[%X*[4$4H[#XU@QT+:?C$
-M/<V\9UL%-K3XX%(9-VTHP_Y[5B]J.YDW1(.GN0:/AMMWU/%3+XT0:V[(<R0H
-M1M[$Z@;OG`E&:T<$OWEAZ(HFICDUBH"6.C<^L+>)@WX=?_?0:Y2W"F_N[EOJ
-M>/?66D13-H<#&EPJH:[Z\B6A:Z+!TR![->Q87\["RL^YDE.3;*QJGCVQ.8+Q
-MR]]U(IJP2VM9$K!W1R6^]L!6EA4)H8`+^_>UL-<EH;9"QZW;ZM#>GZ+Q)*BU
-M-TVR3%<$[ANJP=.S;ZT?CB/X<%N,7!XWSH5OF4P>.]8$YHPI3[2-X4\G(E1J
-M[?6["??M6\FOG(Z0-Q#`J9XT-JTMYQ6-`:XN]Q3<CE#@U10(QX$J7WE)ZZKL
-M%]%<'\1M6RI8<O*P3!N.(Q!P,2^?8]%A-)[#(T]TD,VE;YY(9`2.MXW#Y]4@
-MRQ("(1\ZAW-4&?9"U52<[DO2N6XD1PBX+MKV9C$%@JNVXTEME0][MM>P3@;2
-MR30VK`C-V9_VXM&1`H7X!@B#</Q,E,X9#1'!Y?7B1%>:#K?%2??X9H1V\>3Y
-M\M?),^/X[?.]U#-07(_K-=G6:^AL$O6ULPN>D6@67_CV\S06*YWO)3`VK`@@
-MF;&1REAX]ZUU^-#=*_GW+XU1,.2_3,3&2"8RJ`S*&!G/PAOPP^52P?D,[KJE
-MGA?JFZ])B_E<X#J.P!,'>S`1+^W$5A52\:TO[N!$RD#>L%%?XT<R;<Z(=1W;
-M@>,XL"P'FB9#DA7(LH1@R(>T::.BNGSZ'ATA8%H.EC3`<TG/0!R//=U'I:R#
-M,C.VK:_`F=X8(G$;BDH8CAA(IBWR3W7A9](YA+U`2Z./PT$7(K$<>H;2E,G+
-MT%WZ]#('VW(@S!SV[JSC^5;\+TF`PV5NW+NGD4^TQVAP+(M$VIJ])6*1HJN$
-MFS;5\$C$(&\@`&9&3C!TKPXB@F79:*R0<=.F6E:F$HF*L`?+&T/\XK$1FLQ8
-MT/6"I@HSB]NVUW`X5-QV!DL&X/*0&P_LOQ%YP^:.WBC:.F,X=/PLG>E-PK`7
-MQRNH,L'K5I`>2(`4'1Z/7NA_GI)L*H,=M[1,@SL=GZLR;MI8PX\^W4^Z7BB1
-M>5S2HI:<+=DMQID+/B^9-G&Z<P+CDSE,)O(43YH8C^4+^ZV;`C3%.RARH:VV
-MHDQ'>="%FDHWW[BF$LL;0Q`,G#HSCIZ1+-E0IQO#[6P*'[IS^9Q.*6_8^.T+
-M@U`]/@*`;#*)G1LJN+D^@&*6#+\I]W`W3`?1>`Y&0;4+`"L2@K[+TYGIK(G?
-M_W$`FB](`&"DD_C(W2OF!#B7M_'$\X/D\A5\M67:L&T+;MG&IC7EW%`;6-`R
-MB#?E#MBZ)L_;='<I?J2RS(6)C`U-4Y"U"-%X#G/YU43*@&$#YZ8S55.@3DUX
-M!U\=IW?OEKFZ<OY[N&Z^:D<(1M=`'*,QB\[MJ!((>''H^!A-1+.S:-+#)\?)
-M'_!.11`V;,N"95HP30N*Q*@L][YU7<1BY.29"9SJ39'7YYMAVJ9I@1T3E0$%
-MND(P+,9XPH:BNZ`H,BS+AHL,--;X6#!#,,/K4K"Z96'D^W6Q27XR;>!T;X)\
-M_D`A/+,=F(8%ETN#IJE@5A'+%Y9O,0,N[WGZU,SEL.?F&BXO6]RB]>O"101\
-M.FK+76P8%B8C,7@D`QN:W6RDD[!M!T2%>J(D287-\BZ8]E1=0S2Q^(U*KQL7
-MD3=LG#PSCDWKJG"N<FV8#O[KB2ZJKBF8>RZ;AR(Q'-N!I.K0=!6F::/*)_C6
-M;75OS:]Y*)6X=`4[-\U>FT=3H`DA$-`=[-A8S9($O'ATE&Q;@JK*&!K/D&4+
-M7FCGZ'4915PZH2D`G$IFL'U#%5>4N1$.NO&N7?7,1A;Q6!(-U6Y6Y+?(]VA<
-M3;%M@>IR%\)^!94^WPP2Q^-6<>?N96S9`J&`:U91]FT?O$3D_P&WW%EW(^#C
--#0````!)14Y$KD)@@@``
-`
-end
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/patches/.gitignore b/ubuntu/lucid_automake/applications/kio-apt/debian/patches/.gitignore
deleted file mode 100644
index e69de29bb..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/patches/.gitignore
+++ /dev/null
diff --git a/ubuntu/lucid_automake/applications/kio-apt/debian/rules b/ubuntu/lucid_automake/applications/kio-apt/debian/rules
deleted file mode 100755
index 81b5cead5..000000000
--- a/ubuntu/lucid_automake/applications/kio-apt/debian/rules
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/make -f
-DEB_PATCH_SUFFIX = .patch .dpatch
-
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/rules/simple-patchsys.mk
-include debian/cdbs/kde.mk
-
-DEB_CONFIGURE_INCLUDEDIR := /opt/kde3/include/tde
-DEB_CONFIGURE_MANDIR := /opt/kde3/share/man
-DEB_CONFIGURE_PREFIX := /opt/kde3
-DEB_CONFIGURE_INFODIR := /opt/kde3/share/info
-
-cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug)
-
-DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/kde3 --with-extra-libs=/opt/kde3/lib --with-extra-includes=/opt/kde3/include/tde
-
-post-patches:: debian/stamp-bootstrap
-
-debian/stamp-bootstrap:
- ! [ -f /usr/share/libtool/ltmain.sh ] || \
- cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh
- ! [ -f /usr/share/libtool/config/ltmain.sh ] || \
- cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
- cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
-
- make -f admin/Makefile.common cvs
- touch debian/stamp-bootstrap
-
-configure/tdeio-apt-kde3::
- #fix rpath issue
- # -chmod +x debian/fixrpath
- # debian/fixrpath $(DEB_BUILDDIR)
-
-install/tdeio-apt-kde3::
- uudecode debian/kdedeb_logo.png.uu -o $(DEB_DESTDIR)/opt/kde3/share/apps/tdeio_apt/kdedeb_logo.png