diff options
Diffstat (limited to 'ubuntu/lucid_automake/libraries')
149 files changed, 0 insertions, 6992 deletions
diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/TODO b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/TODO deleted file mode 100755 index d5025974d..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/TODO +++ /dev/null @@ -1,41 +0,0 @@ -TODO for next release: 0.1.4 - -o add libkcal2-dev build-dep (for calendar plugin) - -- add kphotoalbum (kimdaba successor) to Enhances when it enters - the debian and/or kubuntu archive - ------------------------------------------------ - -o commit debian/patches/14_Makefile.am_use_only_used_libs.diff upstream - without the LIB_QT and IMLIB2_LIBS replacement. Check if there are - more plugins than in rc1 - -o ??? Add README.packaging that explains the apply-patches - target and create-buildprep stuff. - -o Suggests to recommends for all external tools? - ------------------------------------------------ - -o check again documentation copyright holder - -o Copy-, dist- rights: Still on TODO upstream - -$ licensecheck `find . -name \*.cpp -o -name \*.h` | grep -v GPL -./kameraklient/mtlist.h: no_copyright -./kameraklient/cameraselection.h: no_copyright -./kameraklient/savefiledialog.h: no_copyright -./kameraklient/thumbitem.cpp: no_copyright -./kameraklient/savefiledialog.cpp: no_copyright -./kameraklient/thumbitem.h: no_copyright -./kameraklient/mtqueue.h: no_copyright -./kameraklient/thumbview.cpp: no_copyright -./kameraklient/thumbview.h: no_copyright -./kameraklient/cameraselection.cpp: no_copyright -./jpeglossless/transupp.h: unknown -./jpeglossless/jinclude.h: unknown -./jpeglossless/jpegint.h: unknown -$ - -__END__ diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/cdbs/buildvars.mk b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/cdbs/buildvars.mk deleted file mode 100644 index 23d4709dc..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/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/libraries/kipi-plugins/debian/cdbs/debian-qt-kde.mk b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/cdbs/debian-qt-kde.mk deleted file mode 100644 index 2be8f97f1..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/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/libraries/kipi-plugins/debian/cdbs/kde.mk b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/cdbs/kde.mk deleted file mode 100644 index 21965ceef..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/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/libraries/kipi-plugins/debian/cdbs/team-members b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/cdbs/team-members deleted file mode 100644 index 05761af6e..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/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/libraries/kipi-plugins/debian/cdbs/uploaders.mk b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/cdbs/uploaders.mk deleted file mode 100644 index 31adfe31e..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/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/libraries/kipi-plugins/debian/cdbs/versions.pl b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/cdbs/versions.pl deleted file mode 100644 index 9ce11d8a3..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/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/libraries/kipi-plugins/debian/changelog b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/changelog deleted file mode 100755 index e48784722..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/changelog +++ /dev/null @@ -1,510 +0,0 @@ -kipi-plugins-kde3 (0.1.6-0ubuntu1) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600 - -kipi-plugins-kde3 (0.1.5-0ubuntu4) intrepid; urgency=low - - * Moved KDE3 to /opt/kde3 - * Integrated properly with KDE4.2+ - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 05 March 2009 19:52:00 -0600 - -kipi-plugins-kde3 (0.1.5-0ubuntu1) intrepid; urgency=low - - * Added -kde3 suffix - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Sat, 07 Feb 2009 20:17:00 -0600 - -kipi-plugins (0.1.5-1) unstable; urgency=low - - * New upstream release - - [ Mark Purcell ] - * Change Build-Depends: libgpod-nogtk-dev - - kipi-plugins should depend on libgpod3-nogtk (Closes: #457835) - - [ Achim Bohnet] - * Bump Standards-Version to 3.7.3. No changes necessary - * Build with --as-needed flag - * Bump libkdcraw build dependency to 0.1.4. - RawConverter relies on new libkdcraw3 API - * debian/control: VCS-Browser URL: show svn log, not svn directory listing - * Drop relibtoolization patches: - + 01_admin_cleanup.diff - + 02_autotools_update.diff - + 03_libtool_update.diff - + 04_am_maintainer_mode.diff - + 05_pedantic-errors.diff - + 06_disable_no_undefined.diff - + 98_buildprep.diff - instead LDFLAGS="-Wl,--as-needed" - * drop 40_fix_ipod_export_linking.diff: No longer required - * Update build-dep: - + remove automake: not needed - + remove libexif-dev: replaced upstream by libexiv2-dev - * Cherry pick fixes from SVN: - + 40_kdesvn786355_timeadjusst_fix_filestat.diff - + 40_kdesvn786363_timeAdjust_update_DateTimeOriginal.diff - + 40_kdesvn786549_99_rawDecoding_jpeg_compression.diff - Thx to upstream for pointing me to those patches. - - [ Fathi Boudra ] - * Update copyright file - * Add myself in Uploaders field - * Remove Paul Telford from Uploaders field - * Refresh patches. Drop 99_configure_relibtool hack - * Bump compat to 5 - * Bump debhelper to 5 - * Use Homepage field - * Clean up watch file - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Tue, 25 Mar 2008 22:39:26 +0100 - -kipi-plugins (0.1.5~beta1-3) experimental; urgency=low - - * Add Build-Depends: libltdl3-dev - - kipi-plugins_0.1.5~beta1-2(alpha/experimental): FTBFS: - /usr/lib/libltdl.la: No such file or directory (Closes: #448429) - - -- Mark Purcell <msp@debian.org> Tue, 30 Oct 2007 23:28:39 +0000 - -kipi-plugins (0.1.5~beta1-2) experimental; urgency=low - - * Add Build-Depends: automake - - kipi-plugins_0.1.5~beta1-1(hppa/experimental): FTBFS: ./configure: - No such file or directory (Closes: #446675) - - -- Mark Purcell <msp@debian.org> Thu, 25 Oct 2007 21:20:02 +0100 - -kipi-plugins (0.1.5~beta1-1) experimental; urgency=low - - * New upstream release - - New Plugin PicasaWebExport - . kipi-plugins with PicasaWeb support (Closes: #444797) - - PrintWizard enhancements - - SlideShow drop Build-Depends: libimlib2-dev - - -- Mark Purcell <msp@debian.org> Fri, 12 Oct 2007 20:04:00 +0100 - -kipi-plugins (0.1.4-1) unstable; urgency=low - - * New upstream release - - [ Achim Bohnet ] - * remove 'da' and 'pt' from kipi-pluigns-doc long description. - Danish and Portuguese docs not included in this version. - * update debian/copyright - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Tue, 03 Jul 2007 14:10:23 +0100 - -kipi-plugins (0.1.4~beta2-1) experimental; urgency=low - - * New upstream release - - beta releases to experimental - - [ Achim Bohnet ] - * add new build dependencies: libkdcraw-dev >= 0.1.1 and libkcal-dev - * relibtoolization: Dependencies drop from 35 to 21 - + debian/patches/03_libtool_update.diff: updated from common-patches - + debian/patches/02_autotools_update.diff: deleted no longer necessary - regenerated with create-buildprep2: - + debian/patches/98_buildprep.diff - + debian/patches/98_configure.diff - * cleanup debian/rules clean target: debian/patches/space.png.tar.gz.uu not - longer included - - [ Mark Purcell ] - * Patches removed as included upstream: - 50_libkexiv2-0.patch - 50_libkexiv2-1.patch - 50_libkexiv2-2.patch - 15_kdesvn_655231_fix-gallery-2.2-export.diff - Bug#417297-GCC4.3.diff - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Tue, 26 Jun 2007 23:28:36 +0100 - -kipi-plugins (0.1.3-5) unstable; urgency=low - - [ Achim Bohnet ] - * debian/control: set kipi-plugins-doc section to doc. Fixes override - disparity on uploads. - * Add debian/patches/15_kdesvn_655231_fix-gallery-2.2-export.diff - Fixes export to gallery 2.2: http://bugs.kde.org/show_bug.cgi?id=142259 - * Add debian/patches/50_libkexiv2-{1,2,3}.patch: Fixes FTBFS with - libexiv2 0.14. This adds also a build dependency on libkexiv2-dev - >=0.1.5. Thx to Angelo Naselli <anaselli@linux.it> for the patches. - - FTBFS: error: request for member 'c_str' in '((Exiv2::Error*)e)- - >Exiv2::Error::what()', which is of non-class type 'const char*' - (Closes: #423783) - * debian/changelog: Fix XS-Vcs-* packaging now done on trunk. - - [ Mark Purcell ] - * Include gcc4.3 patch from Martin (Closes: #417297) - * Include icedove patch from Gonéri (Closes: #410479) - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Thu, 17 May 2007 17:17:05 +0100 - -kipi-plugins (0.1.3-4) unstable; urgency=low - - [ Mark Purcell ] - * Recommends: mpg123 (Closes: #397122: kipi-plugins: MPEGEncoder - require mpg123 to mux audio) - * Upload to unstable - relax version Depends on libgpod-dev - - Ipod plugin won't be built until unstable has libgpod-dev (>= 0.4.2) - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Mon, 02 Apr 2007 18:36:16 +0100 - -kipi-plugins (0.1.3-3) experimental; urgency=low - - [ Achim Bohnet ] - * Merge all kubuntu changes (all by Anthony Mercatante <tonio@ubuntu.com>) - + recommend graphicsmagick-imagemagick-compat instead of imagemagick - + split kipi-plugins into kipi-plugins and kipi-plugins-doc - - * Long description: refer to -doc package. kipi-plugins-doc: list available - translations - * kipi-plugins suggests kipi-plugins-doc - * kipi-plugins-doc: - + suggest kipi-plugins instead of depending on it. - + depend on khelpcenter for reading docs - * add manpage and libkipiplugins library in kipi-plugins package. - * remove ${shlibs:Depends} from architecture all -doc package - * kipi-plugins-doc: add replaces: kipi-plugins (<= 0.1.3-1) - so upgrading from kipi-plugins without the -doc split does not - fail with trying to overwrite `...`, which is also in package - kipi-plugins - * debian/rules: add utils.mk to make it easier to check package split - * README.Debian: fix encoding: 8859-1 -> utf8 - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Tue, 20 Feb 2007 00:40:51 +0100 - -kipi-plugins (0.1.3-2) experimental; urgency=low - - [ Achim Bohnet ] - * add build-dep on libxslt1-dev. Required for htmlexport plugin. - * Remove build-dep: libmagick++9-dev | libmagick++-dev. - kipi-plugins needs only to the command line tools during runtime - * remove recommends on dcraw. Kipi-plugins uses a copy installed - as kipidcraw, due to dcraw upstream keeps breaking cli interface with - each new release - - [ Mark Purcell ] - * Build-Depends: libgpod-dev (>=0.4.2) - enable IpodExport plugin - * debian/rules get-orig-source more robust - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 18 Feb 2007 20:21:37 +0000 - -kipi-plugins (0.1.3-1) experimental; urgency=low - - * New upstream release - - [ Achim Bohnet ] - * Prepare support for ipodexport. Can't be enabled until libgpod 0.4.2 - is in experimental: - + ipodexport fix for relibtoolization (KDE bug 140279): - ipodexport is calling g_type_init() explicitely without linking - against libgobject-2.0: debian/patches/40_fix_ipod_export_linking.diff - * remove patches/10_kdesvn_618170_Makefile.am_libs_used_only.diff and - patches/30_kdesvn_625568_pod.patch. Included upstream. - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Thu, 25 Jan 2007 21:34:40 +0100 - -kipi-plugins (0.1.3~rc1-1) experimental; urgency=low - - * new upstream release - - [ Mark Purcell ] - * Update ./debian/rules get-orig-source for http://buildserver.net - * IpodExport plugin will not build until libgpod > 0.4.0 is availble - - however we can still add Build-Depends: libgpod-dev - * Distribution experimental for libexiv2 (0.12) & rc1 version - - [ Achim Bohnet ] - * debian/control: - + Bump build-deps for libkipi to >= 0.1.5. and add exiv2 >= 0.12. - Required according to release notes - + remove libkexif build depencency replaced by exiv2 - + Set standards-version to 3.7.2. No changes necessary. - + Add XS-Vcs-Svn and XS-Vcs-Browser fields - + Update homepage URL to the new site: http://www.kipi-plugins.org/ - * remove patches/kbugs132659.diff. Fix included in the upstream release. - * debian/rules: - + remove buildprep target. Included in kde.mk from cdbs now - + add new new plugins to long description - + order plugins list in long description as in README - + avoid term 'plugins' in short description of the plugins - * relibtoolization: - add patches/10_kdesvn_618170_Makefile.am_libs_used_only.diff - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Fri, 29 Dec 2006 13:46:46 +0100 - -kipi-plugins (0.1.2-3) unstable; urgency=low - - [ Mark Purcell ] - * Grab flickr API patch from upstream - http://bugs.kde.org/show_bug.cgi?id=132659 - - Flickr upload fails (Closes: #385201) - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 17 Sep 2006 14:11:10 +0100 - -kipi-plugins (0.1.2-2) unstable; urgency=low - - [ Mark Purcell ] - * Add 420mpeg2.patch to set default chroma - - MPEG Slideshow does not work with mjpegtools 1:1.8.0-0.0 from - ftp.nerim.net (Closes: #344987) - - mpegencoder: fails to create SVCD from album (Closes: #374340) - * kipi-plugins(GNU/k*BSD): FTBFS: out of date libtool scripts (Closes: - #343949) - * Lintian cleanup: extended-description-line-too-long - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sat, 2 Sep 2006 12:03:27 +0100 - -kipi-plugins (0.1.2-1) unstable; urgency=low - - [ Tom Albers ] - * New upstream release (adds missing translations and a bugfix for - sendimages plugin) - * Updated the copyright file with the current maintainer. - * Removed imagesgallery from copyright file, as that is replaced by - the htmlexport plugin. - * Added myself as uploader. - * Removed sharutils build-dep as patch 13 required it in the past, - but is removed. - * Added konqueror as recommend because flickr-plugin needs it. - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sat, 10 Jul 2006 18:25:00 +0200 - -kipi-plugins (0.1.1-3) unstable; urgency=low - - [ Achim Bohnet ] - * added missing debian/98_buildprep.diff - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Tue, 27 Jun 2006 22:11:40 +0200 - -kipi-plugins (0.1.1-2) unstable; urgency=low - - * Build-Depends: libmagick++9-dev - - FTBFS: No libmagick9++-dev package. (Closes: #375714) - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Tue, 27 Jun 2006 20:32:54 +0100 - -kipi-plugins (0.1.1-1) unstable; urgency=low - - [ Mark Purcell ] - * New upstream release - - Delete: debian/patches/13_10_pull_from_upstreamsvn_from_r460242.diff - * Add debian/rules print-version & get-orig-source targets - * Recommends: kdeprint - * Build-Depends: libmagick9++-dev | libmagick++-dev - * Relibtoolize from /pkg-kde/trunk/common-patches/ for 3.5.2 - + patches/02_autotools_update.diff - + patches/03_libtool_update.diff - + patches/04_am_maintainer_mode.diff - + patches/05_pedantic-errors.diff - * Enhances: digikam, kimdaba, showimg, gwenview - - [ Achim Bohnet ] - * remove space.png.tar.gz.uu: Included now in upstream - * update relibtoolization patches: - + 11_aclocal.m4_update.diff - + 14_Makefile.am_use_only_used_libs.diff - + 98_buildprep.diff - + 99_configure_relibtool_hack.diff - * cherry pick bug fixes from upstream - + 20_kde_540632-540657_calendar_honour_start_of_week.diff - + 21_kde_r541235_mpegencoder_rgb_value.diff - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Mon, 26 Jun 2006 23:26:27 +0100 - -kipi-plugins (0.1+rc1-3) unstable; urgency=low - - [ Achim Bohnet ] - * add build-depends on sharutil so uudecode is available. - uudecode is used to decode added PNG icons in debian/. Fixes: - FTBFS: uudecode: command not found. (Closes: #353072) - * update 98_buildprep.diff - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Fri, 17 Feb 2006 00:59:14 +0100 - -kipi-plugins (0.1+rc1-2) unstable; urgency=low - - [ Achim Bohnet ] - * relibtoolization: - + use tools and patches of Debian Qt/KDE Team packages: - patches/0*.diff - + patches/03_libtool_update.diff: update to libtool 1.5.20-2 - + patches/06_aclocal_update.diff: this update gets trigger by the - create-buildprep run - + rules: add buildprep target for 98_buildprep.diff creation - + patches/11_Makefile.am_use_only_used_libs.diff: list all libs - which contain used symbols. Replace LIB_QT, IMLIB2_LIBS with - -lqt-mt and -lImlib2, respectively, because the variables list - libraries only used indirectly by the kipi-plugins - Result: kipi-plugins now depends on 14 instead of 31 packages - - [ Tom Albers ] - * added patches/13_10_pull_from_upstreamsvn_from_r460242.diff - which is a complete pull from upstream svn since the release candidate. - It consists some important fixes for printing and prevents a crash in - imagegallery. It also includes the new simpleviewerexport plugin. - * added r501143 and r501136 to that patch, to make the new plugin work - in konqueror and remove faulty flash detect lines - - [ Mark Purcell ] - * Add debian/watch: sf.net kipi project will be used for - future releases - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sat, 19 Nov 2005 21:22:11 +0100 - -kipi-plugins (0.1+rc1-1) unstable; urgency=low - - * New upstream release - * Pkg now maintained by Debian KDE Extras Team - - [ Achim Bohnet ] - * Now that the pkgs are build on all archs, fix build dependencies - + kdelibs4-dev: remove version - + libkexif1-dev (>= 0.2-1), libkipi0-dev (>= 0.1-1): (re)set - versions to last API change. (Helps backporting.) - * patches/01_rawconverter_dcraw7.0+kde3.4-fixes-from-head.diff removed. - Fixed upstream - - [ Mark Purcell ] - * Bump Suggests: to Recommends: these would be found together in all but - unusual situations - - kdeprinter - PrintWizard - - kmail - SendImages - - sane-utils - AcquireImages - - k3b - CdArchiving - - imagemagic - ConvertImages - - kooka - AcquireImages - - imagemagic - BorderImages/ ColorImages/ ConvertImages/ EffectImages/ - FilterImages - - gimp - PrintWizard (Suggests:) - - gallery - ImagesGallery (Suggests:) - - dcraw - RawConverter - * Include FlickRexport in debian/control & Copyrights - * Fix old-fsf-address-in-copyright-file - * CdArchiving does not function when 'Build CD HTML Interface' is - selected (Closes: #328928) - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sat, 24 Sep 2005 12:08:52 +0100 - -kipi-plugins (0.1+beta2-22) unstable; urgency=low - - * C++ transition package - * Upgrade Build-Depends: kdelibs4-dev (>= 3.4.2-1), libkexif1-dev (>= - 0.2.1-5), libkipi0-dev (>= 0.1.1-3) - - -- Mark Purcell <msp@debian.org> Sun, 21 Aug 2005 10:48:53 +0100 - -kipi-plugins (0.1+beta2-21) unstable; urgency=low - - * patches/01_rawconverter_dcraw7.0+kde3.4-fixes-from-head.diff - rawconverter plugin broken. dcraw changed interface - somewhere in 5.xx series. Now plugin works again with - 5.88 in sarge and 7.02 in sid. (Closes: #306212) - * remove mjpegtools (>= 1.6.0) from suggests. It's from - 'ftp://ftp.nerim.net/debian-marillat <dist> main'. - - -- Achim Bohnet <ach@mpe.mpg.de> Thu, 14 Apr 2005 01:45:40 +0200 - -kipi-plugins (0.1+beta2-20) unstable; urgency=low - - * rebuild with libkexif1 dependency. Therefore bump version - to -20. Incase the 'linked-against-libkexif0' on in debian - needs bugfix uploads. - - -- Achim Bohnet <ach@mpe.mpg.de> Thu, 10 Mar 2005 03:43:48 +0100 - -kipi-plugins (0.1+beta2-2) unstable; urgency=low - - * Initial upload (Closes: #280442) - * debian/copyright: add Gerhard Kulzer to doc authors - - -- Achim Bohnet <ach@mpe.mpg.de> Tue, 8 Mar 2005 20:50:39 +0100 - -kipi-plugins (0.1+beta2-1) unstable; urgency=low - - * new upstream beta release - * long description: update homepage URL - * debian/copyright: add a copy of libjpeg copy- and distribution - rights - * remove 00-remove-entity-rune-in-da-index-docbook.diff no - longer needed (and disable simple-patchsys.mk in rules) - - -- Achim Bohnet <ach@mpe.mpg.de> Mon, 14 Feb 2005 23:50:35 +0100 - -kipi-plugins (0.0.cvs20041212-1) unstable; urgency=low - - * include GFDL into debian/copyright - - -- Achim Bohnet <ach@mpe.mpg.de> Mon, 20 Dec 2004 01:04:42 +0100 - -kipi-plugins (0.0.cvs20041212-0) unstable; urgency=low - - * cvs update: Fixes several bugs reported at bugs.kde.org - * remove debian/changelog.save - * use cdbs' simple-patchsys for patches - * debian/patches/00-remove-entity-rune-in-da-index-docbook.diff - remove undefined entity &rune.*. - * add new GalleryExport to long description - - -- Achim Bohnet <ach@mpe.mpg.de> Sun, 12 Dec 2004 14:01:01 +0100 - -kipi-plugins (0.0.cvs20041110-2) unstable; urgency=low - - * Initial upload (Closes: #280442) - * Fix Makefile.in rebuilds: - remove Makefile.in changes from diff and rebuild - source tree vi tar x and zcat | patch - - -- Achim Bohnet <ach@mpe.mpg.de> Thu, 11 Nov 2004 00:51:00 +0100 - -kipi-plugins (0.0.cvs20041110-1~kalyxo1) unstable; urgency=low - - * Initial upload (Closes: #280442) - * new upstream release - * add suggests for external tools: - k3b, mjpegtools, imagemagick, dcraw - - -- Achim Bohnet <ach@mpe.mpg.de> Wed, 10 Nov 2004 19:32:40 +0100 - -kipi-plugins (0.0.cvs20041018-1) experimental; urgency=low - - * added homepage URL to extended description - - -- Achim Bohnet <ach@mpe.mpg.de> Sun, 17 Oct 2004 10:12:28 +0200 - -kipi-plugins (0.0.cvs20040921-2) experimental; urgency=low - - * control: remove final dot in short description to make - lintian happy - * add pkg-config to build-deps (now used upstream) - - -- Achim Bohnet <ach@mpe.mpg.de> Tue, 21 Sep 2004 00:50:29 +0200 - -kipi-plugins (0.0.cvs20040824-2) experimental; urgency=low - - * use --enable-opengl because qt wind 3.3.2 load gl via dlopen - and configure test does not find it anymore. - - -- Achim Bohnet <ach@mpe.mpg.de> Wed, 25 Aug 2004 22:03:57 +0200 - -kipi-plugins (0.0.cvs20040726-1) experimental; urgency=low - - * cvs update 26-Jul-2004 - * add Replaces: digikam-plugins to prevent images2mpg clash - - -- Achim Bohnet <ach@mpe.mpg.de> Mon, 26 Jul 2004 23:55:23 +0200 - -kipi-plugins (0.0.cvs20040721-1) experimental; urgency=low - - * Initial Release. - * WARNING: experimental pkg - - -- Achim Bohnet <ach@mpe.mpg.de> Wed, 21 Jul 2004 02:15:56 +0200 - diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/compat b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/compat deleted file mode 100755 index 7ed6ff82d..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/control b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/control deleted file mode 100755 index b6b9f2df1..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/control +++ /dev/null @@ -1,87 +0,0 @@ -Source: kipi-plugins-kde3 -Section: kde -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -Uploaders: Mark Purcell <msp@debian.org>, Achim Bohnet <ach@mpe.mpg.de>, Fathi Boudra <fabo@debian.org> -Build-Depends: cdbs, debhelper (>= 5), quilt, pkg-config, kdelibs4-kde3-dev, - libexiv2-kde3-dev (>= 0.16), libgphoto2-2-dev, libgpod-nogtk-dev, - libkcal2-kde3-dev, libkdcraw3-kde3-dev, libkexiv2-3-kde3-dev, - libkipi0-kde3-dev, libtiff4-dev, libxslt1-dev, kdepim-kde3-dev, - automake1.11-kde3, autoconf2.63, libtool, libltdl-dev -Standards-Version: 3.8.3 -Homepage: http://www.kipi-plugins.org/ - -Package: kipi-plugins-kde3 -Replaces: digikamplugins-kde3 -Architecture: any -Depends: ${shlibs:Depends} -Recommends: k3b-kde3, graphicsmagick-imagemagick-compat (>=1.1.7) | imagemagick (>=5.4.8), kmail-kde3, kdeprint-kde3, sane-utils, kooka-kde3, konqueror-kde3, mpg123 -Suggests: gimp, gallery, kipi-plugins-kde3-doc -Enhances: digikam-kde3, kphotoalbum-kde3, showimg, gwenview-kde3 -Description: image manipulation/handling plugins for KIPI aware programs [KDE3] - KIPI plugins (KDE Image Plugin Interface) is an effort to develop a - common plugin structure for Digikam, KPhotoAlbum (formerly known as - KimDaBa), Showimg and Gwenview. - Its aim is to share image plugins among graphic applications. - . - Plugins available are: - . - RawConverter: Raw image converter for digital cameras - SlideShow: Slideshow with effects ripped out from kslideshow - and 3D effects using OpenGL - MpegEncoder: Create an MPEG slideshow from your images - PrintWizard: A wizard to print images in various format - JpegLossLess: Batch process your JPEG images without losing meta - information and compression - CdArchiving: Archive your albums on CD or DVD using K3b - ScanImages: Scanner management using Kooka - ScreenshotImages: Snap screen based on KSnapshot and adapted to Kipi - Calendar: Sreate calendars with images - SendImages: Send images by email, allowing resizing - and recompressing before sending - RenameImages: Batch image renamer - ConvertImages: Batch image converter - BorderImages: Add border to your images in batch - FilterImages: Batch image enhancer using digital filters - ColorImages: Batch image color enhancer - EffectImages: Batch image transformation effects - ResizeImages: Batch image resizer - RecompressImages: Batch image recompressor - FindDuplicateImages: Find duplicate images in albums - TimeAdjust: Adjust image file time and date - WallPaper: Set your image as wallpaper - FindImages: Find duplicate images in albums - GalleryExport: Interface for export images collections to remote - Gallery (and Gallery 2) servers - FlickrExport: Export images to a remote Flickr web service - HTMLGallery: Export images to HTML - SimpleviewerExport: Export images in a nice flash movie - GPSSync: Geolocalize pictures - MetadataEdit: Edit EXIF and IPTC pictures metadata - IpodExport: Export images to an ipod device - PicasaWebExport: Export pictures to Picasa web service - . - Documentation of the plugins is available in the package kipi-plugins-doc. - -Package: kipi-plugins-kde3-doc -Architecture: all -Section: doc -Depends: khelpcenter-kde3 -Suggests: kipi-plugins-kde3 -Description: kipi-plugins documentation [KDE3] - KIPI plugins (KDE Image Plugin Interface) is an effort to develop a - common plugin structure for Digikam, KPhotoAlbum (formerly known as - KimDaBa), Showimg and Gwenview. - Its aim is to share image plugins among graphic applications. - . - Kipi-plugins-doc contains the handbooks for the following languages: - . - de - German - en - English - es - Spanish - et - Estonian - it - Italien - nl - Dutch - pt(BR) - Brazilian - sv - Swedish - diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/control.in b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/control.in deleted file mode 100755 index 465306b94..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/control.in +++ /dev/null @@ -1,88 +0,0 @@ -Source: kipi-plugins-kde3 -Section: kde -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: @@@MAINTAINER@@@ -Uploaders: @@@UPLOADERS@@@ -Build-Depends: cdbs, debhelper (>= 5), quilt, pkg-config, kdelibs4-kde3-dev, - libexiv2-kde3-dev (>= 0.16), libgphoto2-2-dev, libgpod-nogtk-dev, - libkcal2-kde3-dev, libkdcraw3-kde3-dev, libkexiv2-3-kde3-dev, - libkipi0-kde3-dev, libtiff4-dev, libxslt1-dev, kdepim-kde3-dev, - automake1.11-kde3, autoconf2.63, libtool, libltdl-dev -Standards-Version: 3.8.3 -Homepage: http://www.kipi-plugins.org/ - -Package: kipi-plugins-kde3 -Replaces: digikamplugins-kde3 -Architecture: any -Depends: ${shlibs:Depends} -Recommends: k3b-kde3, graphicsmagick-imagemagick-compat (>=1.1.7) | imagemagick (>=5.4.8), kmail-kde3, kdeprint-kde3, sane-utils, kooka-kde3, konqueror-kde3, mpg123 -Suggests: gimp, gallery, kipi-plugins-kde3-doc -Enhances: digikam-kde3, kphotoalbum-kde3, showimg, gwenview-kde3 -Description: image manipulation/handling plugins for KIPI aware programs [KDE3] - KIPI plugins (KDE Image Plugin Interface) is an effort to develop a - common plugin structure for Digikam, KPhotoAlbum (formerly known as - KimDaBa), Showimg and Gwenview. - Its aim is to share image plugins among graphic applications. - . - Plugins available are: - . - RawConverter: Raw image converter for digital cameras - SlideShow: Slideshow with effects ripped out from kslideshow - and 3D effects using OpenGL - MpegEncoder: Create an MPEG slideshow from your images - PrintWizard: A wizard to print images in various format - JpegLossLess: Batch process your JPEG images without losing meta - information and compression - CdArchiving: Archive your albums on CD or DVD using K3b - ScanImages: Scanner management using Kooka - ScreenshotImages: Snap screen based on KSnapshot and adapted to Kipi - Calendar: Sreate calendars with images - SendImages: Send images by email, allowing resizing - and recompressing before sending - RenameImages: Batch image renamer - ConvertImages: Batch image converter - BorderImages: Add border to your images in batch - FilterImages: Batch image enhancer using digital filters - ColorImages: Batch image color enhancer - EffectImages: Batch image transformation effects - ResizeImages: Batch image resizer - RecompressImages: Batch image recompressor - FindDuplicateImages: Find duplicate images in albums - TimeAdjust: Adjust image file time and date - WallPaper: Set your image as wallpaper - FindImages: Find duplicate images in albums - GalleryExport: Interface for export images collections to remote - Gallery (and Gallery 2) servers - FlickrExport: Export images to a remote Flickr web service - HTMLGallery: Export images to HTML - SimpleviewerExport: Export images in a nice flash movie - GPSSync: Geolocalize pictures - MetadataEdit: Edit EXIF and IPTC pictures metadata - IpodExport: Export images to an ipod device - PicasaWebExport: Export pictures to Picasa web service - . - Documentation of the plugins is available in the package kipi-plugins-doc. - -Package: kipi-plugins-kde3-doc -Architecture: all -Section: doc -Depends: khelpcenter-kde3 -Suggests: kipi-plugins-kde3 -Description: kipi-plugins documentation [KDE3] - KIPI plugins (KDE Image Plugin Interface) is an effort to develop a - common plugin structure for Digikam, KPhotoAlbum (formerly known as - KimDaBa), Showimg and Gwenview. - Its aim is to share image plugins among graphic applications. - . - Kipi-plugins-doc contains the handbooks for the following languages: - . - de - German - en - English - es - Spanish - et - Estonian - it - Italien - nl - Dutch - pt(BR) - Brazilian - sv - Swedish - diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/copyright b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/copyright deleted file mode 100755 index 3df46fc7f..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/copyright +++ /dev/null @@ -1,264 +0,0 @@ -This package was debianized by Achim Bohnet <ach@mpe.mpg.de> -on Mon, 21 Jun 2004 02:12:22 +0200 - -It was downloaded from http://www.kipi-plugins.org - -Upstream authors and copyright holders: - - MAIN DEVELOPERS: - - Gilles Caulier <caulier.gilles@kdemail.net> - Marcel Wiesweg <marcel.wiesweg@gmx.de> - Vardhman Jain <vardhman@gmail.com> - Colin Guthrie <kde@colin.guthr.ie> - Aurelien Gateau <aurelien.gateau@free.fr> - Valerio Fuoglio <valerio.fuoglio@gmail.com> - Angelo Naselli <anaselli@linux.it> - Seb Ruiz <me@sebruiz.net> - Jesper K. Pedersen <blackie@kde.org> - - CONTRIBUTORS: - - Gerhard Kulzer <gerhard@kulzer.net> - Orgad Shaneh <orgads@gmail.com> - Achim Bohnet <ach@mpe.mpg.de> - Michael Höchstetter <michae.hoechstetter@gmx.de> - Joern Ahrens <joern.ahrens@kdemail.net> - Rüdiger Bente <ruediger.bente@gmx.de> - Beth Marmorstein <purplegamba@cox.net> - Tudor Calin <tudor@1xtech.com> - Robert Marmorstein <rmmarm@sdf.lonestar.org> - Owen Hirst <n8rider@sbcglobal.net> - Richard Groult <Richard.Groult@jalix.org> - Todd Shoemaker <todd@theshoemakers.net> - Gregory Kokanosky <gregory.kokanosky@free.fr> - Maciek Borowka <maciek@borowka.net> - Stéphane Pontier <shadow.walker@free.fr> - Lukas Tinkl <lukas@kde.org> - Andreas Schlapbach <schlpbch@iam.unibe.ch> - Marti Maria - Richard J. Moore - Matthias Ettrich - Aaron J. Seigo - - FORMER MAINTAINER: - - Renchi Raju <renchi@pooh.tam.uiuc.edu> - Tom Albers <tomalbers@kde.nl> - Ralf Hoelzer <kde@ralfhoelzer.com> - - PLUGINS MAINTAINERS: - - Acquire Images: Jesper K. Pedersen <blackie@kde.org> - Batch Process: Aurelien Gateau <aurelien.gateau@free.fr> - Calendar: Orgad Shaneh <orgads@gmail.com> - CD Archiving: Angelo Naselli <anaselli@linux.it> - Find Images: Jesper K. Pedersen <blackie@kde.org> - Richard Groult <Richard.Groult@jalix.org> - Flickr Export: Vardhman Jain <vardhman@gmail.com> - Gallery Export: Colin Guthrie <kde@colin.guthr.ie> - GPSSync: Gilles Caulier <caulier.gilles@kdemail.net> - HTML Export: Aurelien Gateau <aurelien.gateau@free.fr> - Image Viewer: Markus Leuthold <kusi@forum.titlis.org> - IPod Export: Seb Ruiz <me@sebruiz.net> - Jpeglossless: Gilles Caulier <caulier.gilles@kdemail.net> - Kamera Klient: Aurelien Gateau <aurelien.gateau@free.fr> - Michael J. Gruber <michaeljgruber+kphotoalbum@fastmail.fm> - MetadataEdit: Gilles Caulier <caulier.gilles@kdemail.net> - MPEG Encoder: Angelo Naselli <anaselli@linux.it> - Valerio Fuoglio <valerio.fuoglio@gmail com> - Picasa Web Export: Vardhman Jain <vardhman@gmail.com> - Print Wizard: Angelo Naselli <anaselli@linux.it> - RAW Converter: Gilles Caulier <caulier.gilles@kdemail.net> - Sendimages: Michael Höchstetter <michael.hoechstetter@gmx.de> - Simpleviewer Export: Joern Ahrens <joern.ahrens@kdemail.net> - Slideshow: Valerio Fuoglio <valerio.ulteo.com> - Time Adjust: Gilles Caulier <caulier.gilles@kdemail.net> - Wallpaper: Jesper K. Pedersen <blackie@kde.org> - -Documentation: - - Gilles Caulier <caulier.gilles@gmail.com> - Gerhard Kulzer <gerhard@kulzer.net> - -Licenses: - -The plugins use the GPL: - - acquireimage, batchprocessimages, calendar, cdarching, - findimages, helloworld, gpssync, ipodexport, jpeglossless, galleryexport - kameraimage, metadataedit, mpegencoder, printwizard, rawconverter, - sendimages, simpleviewer, slideshow, timeadjust, flickrexport, - ipodexport, gpssync, metadata, wallpaper and picasawebexport. - -For GPL two variants are used one with and one without the 3rd paragraph: - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, - MA 02110-1301, USA. - -and - - 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. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in /usr/share/common-licenses/GPL file. - -kipi-plugins/rawconverter/iccjpeg.h uses X11 (BSD like) license: - - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be included - * in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY - * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE - * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -jpeglossless plugins contains jpegint.h and jinclude.h from -libjpeg62. Here's the copy- and distribution rights part from -kipi-plugins/jpeglossless/libjpeg62.README in the source: - - - The Independent JPEG Group's JPEG software - ========================================== - - README for release 6b of 27-Mar-1998 - ==================================== - - This distribution contains the sixth public release of the Independent JPEG - Group's free JPEG software. You are welcome to redistribute this software and - to use it for any purpose, subject to the conditions under LEGAL ISSUES, below. - - [...] - - LEGAL ISSUES - ============ - - In plain English: - - 1. We don't promise that this software works. (But if you find any bugs, - please let us know!) - 2. You can use this software for whatever you want. You don't have to pay us. - 3. You may not pretend that you wrote this software. If you use it in a - program, you must acknowledge somewhere in your documentation that - you've used the IJG code. - - In legalese: - - The authors make NO WARRANTY or representation, either express or implied, - with respect to this software, its quality, accuracy, merchantability, or - fitness for a particular purpose. This software is provided "AS IS", and you, - its user, assume the entire risk as to its quality and accuracy. - - This software is copyright (C) 1991-1998, Thomas G. Lane. - All Rights Reserved except as specified below. - - Permission is hereby granted to use, copy, modify, and distribute this - software (or portions thereof) for any purpose, without fee, subject to these - conditions: - (1) If any part of the source code for this software is distributed, then this - README file must be included, with this copyright and no-warranty notice - unaltered; and any additions, deletions, or changes to the original files - must be clearly indicated in accompanying documentation. - (2) If only executable code is distributed, then the accompanying - documentation must state that "this software is based in part on the work of - the Independent JPEG Group". - (3) Permission for use of this software is granted only if the user accepts - full responsibility for any undesirable consequences; the authors accept - NO LIABILITY for damages of any kind. - - These conditions apply to any software derived from or based on the IJG code, - not just to the unmodified library. If you use our work, you ought to - acknowledge us. - - Permission is NOT granted for the use of any IJG author's name or company name - in advertising or publicity relating to this software or products derived from - it. This software may be referred to only as "the Independent JPEG Group's - software". - - We specifically permit and encourage the use of this software as the basis of - commercial products, provided that all warranty or liability claims are - assumed by the product vendor. - - - ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, - sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. - ansi2knr.c is NOT covered by the above copyright and conditions, but instead - by the usual distribution terms of the Free Software Foundation; principally, - that you must include source code if you redistribute it. (See the file - ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part - of any program generated from the IJG code, this does not limit you more than - the foregoing paragraphs do. - - The Unix configuration script "configure" was produced with GNU Autoconf. - It is copyright by the Free Software Foundation but is freely distributable. - The same holds for its supporting scripts (config.guess, config.sub, - ltconfig, ltmain.sh). Another support script, install-sh, is copyright - by M.I.T. but is also freely distributable. - - It appears that the arithmetic coding option of the JPEG spec is covered by - patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot - legally be used without obtaining one or more licenses. For this reason, - support for arithmetic coding has been removed from the free JPEG software. - (Since arithmetic coding provides only a marginal gain over the unpatented - Huffman mode, it is unlikely that very many implementations will support it.) - So far as we are aware, there are no patent restrictions on the remaining - code. - - The IJG distribution formerly included code to read and write GIF files. - To avoid entanglement with the Unisys LZW patent, GIF reading support has - been removed altogether, and the GIF writer has been simplified to produce - "uncompressed GIFs". This technique does not use the LZW algorithm; the - resulting GIF files are larger than usual, but are readable by all standard - GIF decoders. - - We are required to state that - "The Graphics Interchange Format(c) is the Copyright property of - CompuServe Incorporated. GIF(sm) is a Service Mark property of - CompuServe Incorporated." - - - REFERENCES - ========== - - [...] - -The documentations provided with kipi-plugins is distributed under -the GNU Free Documentation License (FDL). They are considered free with -regards to the Debian Free Software Guidelines (DFSG) because they don't -contain any unmodifiable parts (invariant sections). - -On Debian systems, the complete text of the GNU Free Documentation -License can be found in `/usr/share/common-licenses/GFDL'. diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/kipi-plugins-kde3-doc.install b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/kipi-plugins-kde3-doc.install deleted file mode 100755 index 1659e76ca..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/kipi-plugins-kde3-doc.install +++ /dev/null @@ -1 +0,0 @@ -debian/tmp/opt/kde3/share/doc/* diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/kipi-plugins-kde3.install b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/kipi-plugins-kde3.install deleted file mode 100755 index 8de0c2796..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/kipi-plugins-kde3.install +++ /dev/null @@ -1,7 +0,0 @@ -debian/tmp/opt/kde3/share/services/kipiplugin* -debian/tmp/opt/kde3/share/apps/kipi* -debian/tmp/opt/kde3/share/config.kcfg/htmlexportconfig.kcfg -debian/tmp/opt/kde3/share/locale/* -debian/tmp/opt/kde3/lib/kde3/kipiplugin* -debian/tmp/opt/kde3/lib/libkipiplugins.* -debian/tmp/opt/kde3/bin/* diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/kipi-plugins-kde3.manpages b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/kipi-plugins-kde3.manpages deleted file mode 100755 index bc6cf1a7e..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/kipi-plugins-kde3.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/tmp/opt/kde3/share/man/man1/images2mpg.1 diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/patches/series b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/patches/series deleted file mode 100755 index e69de29bb..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/patches/series +++ /dev/null diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/rules b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/rules deleted file mode 100755 index 847bdb8ef..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/rules +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/make -f - -FILENAME = $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_VERSION).orig.tar.gz -UPFILENAME = $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).tar.bz2 -URL = http://heanet.dl.sourceforge.net/kipi/$(UPFILENAME) - -include /usr/share/cdbs/1/rules/debhelper.mk -include debian/cdbs/debian-qt-kde.mk -include /usr/share/cdbs/1/rules/patchsys-quilt.mk -include /usr/share/cdbs/1/rules/utils.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_SCRIPT_ENV += LDFLAGS="-Wl,--as-needed" - -DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/kde3 --with-extra-libs=/opt/kde3/lib --with-extra-includes=/opt/kde3/include/tde - -clean :: - rm -f po/*/*.gmo - -get-orig-source-dpatch: - @@dh_testdir - @@[ -d ../tarballs/. ]||mkdir -p ../tarballs - @@dpatch-get-origtargz ../tarballs - -get-orig-source: - @@dh_testdir - @@[ -d ../tarballs/. ]||mkdir -p ../tarballs - @@echo Downloading $(UPFILENAME) from $(URL) ... - @@wget -N -nv -T10 -t3 -O ../tarballs/$(UPFILENAME) $(URL) - @@echo Converting $(UPFILENAME) to $(FILENAME) - @@bzcat ../tarballs/$(UPFILENAME) | gzip -9 > ../tarballs/$(FILENAME) - -print-version: - @@echo DEB_SOURCE_PACKAGE: $(DEB_SOURCE_PACKAGE) - @@echo DEB_VERSION: $(DEB_VERSION) - @@echo DEB_NO_EPOCH_VERSION: $(DEB_NOEPOCH_VERSION) - @@echo DEB_UPSTREAM_VERSION: $(DEB_UPSTREAM_VERSION) - @@echo FILENAME: $(FILENAME) - @@echo URL: $(URL) - diff --git a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/watch b/ubuntu/lucid_automake/libraries/kipi-plugins/debian/watch deleted file mode 100755 index 8e5bdb026..000000000 --- a/ubuntu/lucid_automake/libraries/kipi-plugins/debian/watch +++ /dev/null @@ -1,5 +0,0 @@ -# See uscan(1) for format -version=3 -opts=dversionmangle=s/~/-/ \ - http://sf.net/kipi/kipi-plugins-(.*)\.tar\.bz2 debian svn-upgrade - diff --git a/ubuntu/lucid_automake/libraries/libkdcraw/debian/cdbs/buildvars.mk b/ubuntu/lucid_automake/libraries/libkdcraw/debian/cdbs/buildvars.mk deleted file mode 100644 index 23d4709dc..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/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/libraries/libkdcraw/debian/cdbs/debian-qt-kde.mk b/ubuntu/lucid_automake/libraries/libkdcraw/debian/cdbs/debian-qt-kde.mk deleted file mode 100644 index 2be8f97f1..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/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/libraries/libkdcraw/debian/cdbs/kde.mk b/ubuntu/lucid_automake/libraries/libkdcraw/debian/cdbs/kde.mk deleted file mode 100644 index 21965ceef..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/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/libraries/libkdcraw/debian/cdbs/team-members b/ubuntu/lucid_automake/libraries/libkdcraw/debian/cdbs/team-members deleted file mode 100644 index 05761af6e..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/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/libraries/libkdcraw/debian/cdbs/uploaders.mk b/ubuntu/lucid_automake/libraries/libkdcraw/debian/cdbs/uploaders.mk deleted file mode 100644 index 31adfe31e..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/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/libraries/libkdcraw/debian/cdbs/versions.pl b/ubuntu/lucid_automake/libraries/libkdcraw/debian/cdbs/versions.pl deleted file mode 100644 index 9ce11d8a3..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/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/libraries/libkdcraw/debian/changelog b/ubuntu/lucid_automake/libraries/libkdcraw/debian/changelog deleted file mode 100644 index c0933f394..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/debian/changelog +++ /dev/null @@ -1,128 +0,0 @@ -libkdcraw-kde3 (0.1.9-0ubuntu1) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600 - -libkdcraw-kde3 (0.1.4-0ubuntu2) intrepid; urgency=low - - * Moved KDE3 to /opt/kde3 - * Integrated properly with KDE4.2+ - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 05 March 2009 01:11:00 -0600 - -libkdcraw-kde3 (0.1.4-0ubuntu1) intrepid; urgency=low - - * Added -kde3 suffix - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 17 Dec 2008 15:41:00 -0600 - -libkdcraw (0.1.4-2ubuntu1) intrepid; urgency=low - - * Rename libkdcraw-dev to libkdcraw3-dev (new libkdcraw-dev is - KDE 4 version). - - -- Jonathan Riddell <jriddell@ubuntu.com> Thu, 11 Sep 2008 13:38:38 +0100 - -libkdcraw (0.1.4-2) unstable; urgency=low - - [ Achim Bohnet ] - * Don't install translation and icon. Their path or filename should - include API major version. We working with upstream on solution - for the next release. - * debian/copyright: replace the last 'Copyright (C)' with (C). - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 16 Mar 2008 15:24:00 +0100 - -libkdcraw (0.1.4-1) unstable; urgency=low - - * New upstream release: - + new API breaks backward compatibility - + updates dcraw to 8.83 - - [ Achim Bohnet ] - * Adapt for API major 2 -> 3: debian/control debian/libkdcraw3.install - * Update debian/copyright - * Bump standards version 3.7.2 -> 3.7.3: No changes necessary - - [ Fathi Boudra ] - * Add myself in Uploaders - * Switch to quilt patch system - * Install kdcraw icons and libkdcraw translations - * Clean up debian/rules: - * Drop autotools.mk include - * Drop -fpermissive flag - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 16 Mar 2008 14:05:34 +0100 - -libkdcraw (0.1.3-1) unstable; urgency=low - - * New upstream release - - [ Achim Bohnet ] - * debian/copyright: - + new, again DSFG compliant, dcwraw license. - + upstream authors. - * debian/control: - + use Vcs-* instead of XS-Vcs-* as Vcs-* are now official. - + add the new Homepage header field. Remove homepage URL from long - the description. - * debian/rules: use LDFLAGS="-Wl,--no-undefined -Wl,--as-needed" to - reference only to libs that are really needed. Dependency count - drops from 25 to 6. - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sat, 29 Dec 2007 23:31:02 +0100 - -libkdcraw (0.1.2-1) unstable; urgency=low - - * New upstream release - * Bump soname to package libkdcraw2 - - -- Mark Purcell <msp@debian.org> Fri, 28 Sep 2007 17:47:35 +0100 - - -libkdcraw (0.1.1-2) unstable; urgency=low - - [ Achim Bohnet ] - * relibtoolize libkdcraw: Depends now on 7 packages instead of 25. - Add simple-patchsys.mk to debian/rules to apply the patches: - patches/03_libtool_update.diff - patches/04_am_maintainer_mode.diff - patches/05_pedantic-errors.diff - patches/98_buildprep.diff - patches/98_configure.diff: makes $LIB_QT only -lqt-mt and LIB_KDECORE - only -lkdecore - * Add utils.mk to debian/rules to have list-missing target - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Tue, 26 Jun 2007 07:31:15 +0100 - -libkdcraw (0.1.1-1) experimental; urgency=low - - * New upstream release - * new ABI major version - bump soname libkdcraw1 - - [ Achim Bohnet ] - * remove libkdcraw-runtime pkgs. The library helper application - kdcraw is now in a libary private dir, as required by - http://www.pathname.com/fhs/pub/fhs-2.3.html#USRLIBLIBRARIESFORPROGRAMMINGANDPA - * adapt debian packaging files for ABI major version change from 0 -> 1 - * Build depends: add pkg-config. Used in tests of configure. - - [ Mark Purcell ] - * Lintian cleanup: substvar-source-version-is-deprecated - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Thu, 14 Jun 2007 18:03:36 +0100 - -libkdcraw (0.1.0-2) unstable; urgency=low - - [ Mark Purcell ] - * Add libkdcraw-runtime to package kdcraw runtime binary - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 20 May 2007 18:31:43 +0100 - -libkdcraw (0.1.0-1) unstable; urgency=low - - * Initial release. (Closes: #411783: ITP: libkdcraw -- Raw picture - decoding C++ library - Debian Bug report logs) - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Wed, 09 May 2007 21:14:12 +0100 diff --git a/ubuntu/lucid_automake/libraries/libkdcraw/debian/compat b/ubuntu/lucid_automake/libraries/libkdcraw/debian/compat deleted file mode 100644 index 7ed6ff82d..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/ubuntu/lucid_automake/libraries/libkdcraw/debian/control b/ubuntu/lucid_automake/libraries/libkdcraw/debian/control deleted file mode 100644 index 9a22ab5a8..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/debian/control +++ /dev/null @@ -1,35 +0,0 @@ -Source: libkdcraw-kde3 -Section: libs -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> -Uploaders: Mark Purcell <msp@debian.org>, Achim Bohnet <ach@mpe.mpg.de>, Fathi Boudra <fabo@debian.org> -Build-Depends: cdbs, debhelper (>= 5), quilt, kdelibs4-kde3-dev, - liblcms1-dev, libjpeg-dev, pkg-config, - automake1.11-kde3, autoconf2.63, libtool, libltdl-dev -Standards-Version: 3.8.3 -Homepage: http://www.kipi-plugins.org/ - -Package: libkdcraw3-kde3-dev -Section: libdevel -Architecture: any -Depends: libkdcraw3-kde3 (= ${binary:Version}), pkg-config -Conflicts: libkdcraw-dev -Description: RAW picture decoding C++ library (development) [KDE3] - Libkdcraw is a C++ interface around dcraw binary program used to - decode Raw picture files. - . - libkdcraw-dev contains development files and documentation. The - library documentation is available on kdcraw.h header file. - -Package: libkdcraw3-kde3 -Section: libs -Architecture: any -Depends: ${shlibs:Depends} -Description: Raw picture decoding C++ library (runtime) [KDE3] - C++ interface around dcraw binary program used to decode RAW - picture files. - . - This library is used by kipi-plugins, digiKam and others kipi host programs. - . - libkdcraw3 contains the library of libkdcraw. diff --git a/ubuntu/lucid_automake/libraries/libkdcraw/debian/control.in b/ubuntu/lucid_automake/libraries/libkdcraw/debian/control.in deleted file mode 100644 index b41f5554d..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/debian/control.in +++ /dev/null @@ -1,35 +0,0 @@ -Source: libkdcraw-kde3 -Section: libs -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: @@@MAINTAINER@@@ -Uploaders: @@@UPLOADERS@@@ -Build-Depends: cdbs, debhelper (>= 5), quilt, kdelibs4-kde3-dev, - liblcms1-dev, libjpeg62-dev, pkg-config, - automake1.11-kde3, autoconf2.63, libtool, libltdl-dev -Standards-Version: 3.8.3 -Homepage: http://www.kipi-plugins.org/ - -Package: libkdcraw3-kde3-dev -Section: libdevel -Architecture: any -Depends: libkdcraw3-kde3 (= ${binary:Version}), pkg-config -Conflicts: libkdcraw-dev -Description: RAW picture decoding C++ library (development) [KDE3] - Libkdcraw is a C++ interface around dcraw binary program used to - decode Raw picture files. - . - libkdcraw-dev contains development files and documentation. The - library documentation is available on kdcraw.h header file. - -Package: libkdcraw3-kde3 -Section: libs -Architecture: any -Depends: ${shlibs:Depends} -Description: Raw picture decoding C++ library (runtime) [KDE3] - C++ interface around dcraw binary program used to decode RAW - picture files. - . - This library is used by kipi-plugins, digiKam and others kipi host programs. - . - libkdcraw3 contains the library of libkdcraw. diff --git a/ubuntu/lucid_automake/libraries/libkdcraw/debian/copyright b/ubuntu/lucid_automake/libraries/libkdcraw/debian/copyright deleted file mode 100644 index 05b67ad60..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/debian/copyright +++ /dev/null @@ -1,72 +0,0 @@ -This package was debianized by Achim Bohnet <ach@mpe.mpg.de> -on Tue, 20-Feb-2007. - -It was downloaded from https://sourceforge.net/projects/kipi - -Upstream authors (from AUTHORS file): - - Library wrapper: - Caulier Gilles <caulier.gilles@gmail.com> - Marcel Wiesweg <marcel.wiesweg@gmx.de> - - CONTRIBUTORS: - - Angelo Naselli <anaselli@linux.it> - Gerhard Kulzer <gerhard@kulzer.net> - Achim Bohnet <ach@mpe.mpg.de> - Guillaume Castagnino <casta@xwing.info> - - (k)dcraw source and manpage - Dave Coffin <dcoffin@cybercom.net> - -AUTHORS AND MAINTAINERS : - -Copyright: - - © 2005-2008 Gilles Caulier <caulier.gilles@gmail.com> - © 2006-2008 Marcel Wiesweg <marcel.wiesweg@gmx.de> - © 2007-2008 Guillaume Castagnino <casta@xwing.info> - © 2005 Laurent Montel <montel@kde.org> - © 1997-2008 Dave Coffin <dcoffin@cybercom.net> - -License: - - 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. - -The Debian packaging is - © 2007 Mark Purcell <msp@debian.org>, - © 2007,2008 Achim Bohnet <ach@mpe.mpg.de> -and is licensed under the GPL, see above. - -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - -libkdcraw/dcraw/ contains a copy of dcraw code. dcraw Copyright: - - dcraw.c -- Dave Coffin's raw photo decoder - Copyright 1997-2008 by Dave Coffin, dcoffin a cybercom o net - - This is a command-line ANSI C program to convert raw photos from - any digital camera on any computer running any operating system. - - No license is required to download and use dcraw.c. However, - to lawfully redistribute dcraw, you must either (a) offer, at - no extra charge, full source code* for all executable files - containing RESTRICTED functions, (b) distribute this code under - the GPL Version 2 or later, (c) remove all RESTRICTED functions, - re-implement them, or copy them from an earlier, unrestricted - Revision of dcraw.c, or (d) purchase a license from the author. - - The functions that process Foveon images have been RESTRICTED - since Revision 1.237. All other code remains free for all uses. - - *If you have not modified dcraw.c in any way, a link to my - homepage qualifies as "full source code". diff --git a/ubuntu/lucid_automake/libraries/libkdcraw/debian/docs b/ubuntu/lucid_automake/libraries/libkdcraw/debian/docs deleted file mode 100644 index 50bd824bb..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/debian/docs +++ /dev/null @@ -1,2 +0,0 @@ -NEWS -README diff --git a/ubuntu/lucid_automake/libraries/libkdcraw/debian/libkdcraw3-kde3-dev.install b/ubuntu/lucid_automake/libraries/libkdcraw/debian/libkdcraw3-kde3-dev.install deleted file mode 100644 index c95da3e48..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/debian/libkdcraw3-kde3-dev.install +++ /dev/null @@ -1,4 +0,0 @@ -/opt/kde3/include/* -opt/kde3/lib/lib*.so -opt/kde3/lib/pkgconfig/* -opt/kde3/lib/*.la diff --git a/ubuntu/lucid_automake/libraries/libkdcraw/debian/libkdcraw3-kde3.install b/ubuntu/lucid_automake/libraries/libkdcraw/debian/libkdcraw3-kde3.install deleted file mode 100644 index 0dc0a878e..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/debian/libkdcraw3-kde3.install +++ /dev/null @@ -1 +0,0 @@ -opt/kde3/lib/lib*.so.* diff --git a/ubuntu/lucid_automake/libraries/libkdcraw/debian/rules b/ubuntu/lucid_automake/libraries/libkdcraw/debian/rules deleted file mode 100755 index 7e04f9653..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/debian/rules +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/make -f - -include /usr/share/cdbs/1/rules/debhelper.mk -include debian/cdbs/debian-qt-kde.mk -include /usr/share/cdbs/1/rules/patchsys-quilt.mk -include /usr/share/cdbs/1/rules/utils.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_SCRIPT_ENV += LDFLAGS="-Wl,--no-undefined -Wl,--as-needed" -DEB_DH_INSTALL_ARGS := --sourcedir=debian/tmp - -DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/kde3 --with-extra-libs=/opt/kde3/lib diff --git a/ubuntu/lucid_automake/libraries/libkdcraw/debian/watch b/ubuntu/lucid_automake/libraries/libkdcraw/debian/watch deleted file mode 100644 index ba648e43d..000000000 --- a/ubuntu/lucid_automake/libraries/libkdcraw/debian/watch +++ /dev/null @@ -1,3 +0,0 @@ -version=3 -http://sf.net/kipi/libkdcraw-(.*)\.tar\.bz2 debian svn-upgrade - diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/README.Debian b/ubuntu/lucid_automake/libraries/libkexiv2/debian/README.Debian deleted file mode 100644 index b49d315a1..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/README.Debian +++ /dev/null @@ -1,107 +0,0 @@ -Debian kde-extras Team ----------------------- - -1. Contacts ------------ - -General help requests - <debian-kde@lists.debian.org> mailing list - #debian-kde on irc - -Packaging queries - <debian-qt-kde@lists.debian.org> mailing list - #debian-qt-kde on irc - -Maintainers - <pkg-kde-extras@lists.alioth.debian.org> mailing list - - -2. Subversion repository ------------------------- - -You can browse it only at: - -http://svn.debian.org/wsvn/pkg-kde/kde-extras/ - -To "checkout" the repository use these commands: - - $ svn co svn+ssh://${ALIOTH_USERNAME}@svn.debian.org/svn/pkg-kde/kde-extras - -Authorized SSH keys are controlled at https://alioth.debian.org/account/ - -The repository layout is: - -- packagename/ -  - trunk/ -  - branches/ -  - tags/ -        - 0.7.2-1/ -        - 0.7.2-2/ -        - 0.7.2-2ubuntu1/ -        - 0.7.2-2ubuntu2/ -        - 0.7.2-2ubuntu3/ -        - 0.8.0/ -        ... - -If only one version of the package is available at the time, development must -be made at trunk/ dir, copying the dir to tags/'pkg-version' each time a new -release is made. - -When, at some point, the need to have two different versions at the same time -arises (for example, if we need a version to be in unstable and a different one -to be in experimental), experimental development will be made in trunk/ and -if a new unstable package needs to be cooked, copying -tag/'latest_version_in_sid' to tag/'latest_version_in_sid'+1 will make the -trick. - -3. Using svn-buildpackage --------------------------- - -Packages with an upstream tarball will require you to set the mergeWithUpstream -property first (from the package root) so that svn-buildpackage will look for -the .orig.tar.gz in the ../tarballs directory. - - % svn propset mergeWithUpstream 1 debian - -Please note that this only works for packages which have only the debian/ -directory committed. Consequently, you must use CDBS's simple-patchsys.mk or -dpatch to modify the upstream sources. - -After you have finished and committed your Debian patches via - - % svn commit [PACKAGE] - -as well as copying the orig.tar.gz to ../tarballs/ if necessary, you may build -your package with the following commands: - - % svn-buildpackage --svn-ignore-new -rfakeroot - -Please, don't commit tarballs/ or build-area/ directories to SVN. - -4. Tarballs and Build-area directories ------------------------------------- - -During pkg development before uploaded to debian the tarballs can be found at: - - http://pkg-kde.alioth.debian.org/kde-extra/orig.tar.gz/ - -You need to place those dirs in the parent directory of the one from which you're -running svn-buildpackage. Usually this means placing tarballs/ and build-area/ dirs -in 'pkgname'/ dir, at the same level as trunk/ - -If you want to compile inside one version in tags/ dir, you'll need to place those -dirs inside that dir. Of course the easiest and cleanest way of doing it is -by making a symlink of those dirs inside tags/ dir. - -5. Using svn-inject -------------------- - -To inject a new package into the Debian KDE Extras svn archive you should use svn-inject(1) -as follows: - - svn-inject -o <package>.dsc svn+ssh://${ALIOTH_USERNAME}@svn.debian.org/svn/pkg-kde/kde-extras - -Type in your alioth password a few hundred times :-) and your package should be -uploaded to the archive. Note you will also need to manually copy the -package.orig.tar.gz to your tarballs directory. The -o option is important as -this ensures that we 'Only keep modified files under SVN control' diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/cdbs/buildvars.mk b/ubuntu/lucid_automake/libraries/libkexiv2/debian/cdbs/buildvars.mk deleted file mode 100644 index 23d4709dc..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/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/libraries/libkexiv2/debian/cdbs/debian-qt-kde.mk b/ubuntu/lucid_automake/libraries/libkexiv2/debian/cdbs/debian-qt-kde.mk deleted file mode 100644 index 2be8f97f1..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/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/libraries/libkexiv2/debian/cdbs/kde.mk b/ubuntu/lucid_automake/libraries/libkexiv2/debian/cdbs/kde.mk deleted file mode 100644 index 21965ceef..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/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/libraries/libkexiv2/debian/cdbs/team-members b/ubuntu/lucid_automake/libraries/libkexiv2/debian/cdbs/team-members deleted file mode 100644 index 05761af6e..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/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/libraries/libkexiv2/debian/cdbs/uploaders.mk b/ubuntu/lucid_automake/libraries/libkexiv2/debian/cdbs/uploaders.mk deleted file mode 100644 index 31adfe31e..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/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/libraries/libkexiv2/debian/cdbs/versions.pl b/ubuntu/lucid_automake/libraries/libkexiv2/debian/cdbs/versions.pl deleted file mode 100644 index 9ce11d8a3..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/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/libraries/libkexiv2/debian/changelog b/ubuntu/lucid_automake/libraries/libkexiv2/debian/changelog deleted file mode 100644 index 11edcce0e..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/changelog +++ /dev/null @@ -1,73 +0,0 @@ -libkexiv2-kde3 (0.1.7-0ubuntu4) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600 - -libkexiv2-kde3 (0.1.7-0ubuntu2) intrepid; urgency=low - - * Moved KDE3 to /opt/kde3 - * Integrated properly with KDE4.2+ - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 05 March 2009 01:11:00 -0600 - -libkexiv2-kde3 (0.1.7-0ubuntu1) intrepid; urgency=low - - * Added -kde3 suffix - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 17 Dec 2008 15:46:00 -0600 - -libkexiv2 (0.1.7-1ubuntu1) intrepid; urgency=low - - * Rename libkexiv2-dev to libkexiv2-3-dev (new libkexiv2-dev is KDE 4 version) - - -- Jonathan Riddell <jriddell@ubuntu.com> Thu, 11 Sep 2008 13:42:39 +0100 - -libkexiv2 (0.1.7-1) unstable; urgency=low - - * New upstream release - - digikam: digikam aborts: MakerTagInfo registry full (Closes: - #465495) - - -- Mark Purcell <msp@debian.org> Tue, 22 Apr 2008 22:04:16 +1000 - -libkexiv2 (0.1.6-1) unstable; urgency=low - - * New upstream release - * lintian cleanup: - - use ${binary:Version} substvar-source-version-is-deprecated libkexiv2-dev - - Bump soname: package-name-doesnt-match-sonames libkexiv2-3 - - -- Mark Purcell <msp@debian.org> Fri, 28 Sep 2007 17:19:19 +0100 - -libkexiv2 (0.1.5-1) unstable; urgency=low - - * New upstream release - - [Achim Bohnet] - * adapt packaging according to the API bump: libkexiv2.so.0 -> - libkexiv2.so.1 - * libkexiv2-dev: depend on pkg-config because it contains a .pc file - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Fri, 11 May 2007 06:33:46 +0100 - -libkexiv2 (0.1.1-1) unstable; urgency=low - - * new upstream bugfix release - - [ Achim Bohnet ] - * fix encoding of README.Debian: 8859-1 -> utf8. Thx to J. Riddell for - noticing. - * Update debian/copyright: Gilles email changed - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sat, 24 Feb 2007 22:24:50 +0100 - -libkexiv2 (0.1.0-1) unstable; urgency=low - - [ Achim Bohnet ] - * Initial upload (Closes: #408758) - - [ Mark Purcell ] - * Provide more robust debian/rules get-orig-source - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 18 Feb 2007 19:03:10 +0000 diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/compat b/ubuntu/lucid_automake/libraries/libkexiv2/debian/compat deleted file mode 100644 index 7ed6ff82d..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/control b/ubuntu/lucid_automake/libraries/libkexiv2/debian/control deleted file mode 100644 index ab8d8f081..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/control +++ /dev/null @@ -1,28 +0,0 @@ -Source: libkexiv2-kde3 -Section: libs -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> -Uploaders: Achim Bohnet <ach@mpe.mpg.de>, Mark Purcell <msp@debian.org> -Build-Depends: debhelper (>> 5), cdbs, libexiv2-kde3-dev (>= 0.12), kdelibs4-kde3-dev, automake1.11-kde3, autoconf2.63, libtool, libltdl-dev -Standards-Version: 3.8.3 -Homepage: http://www.kipi-plugins.org/ - -Package: libkexiv2-3-kde3-dev -Section: libdevel -Architecture: any -Depends: libkexiv2-3-kde3 (= ${binary:Version}), pkg-config -Description: Qt like interface for the libexiv2 library (development) [KDE3] - libkexif2-dev contains development files and documentation for libkexiv2 - library. The library documentation is available on kexiv2.h header file. - . - Libkexif is a wrapper around Exiv2 library to manipulate pictures metadata. - -Package: libkexiv2-3-kde3 -Section: libs -Architecture: any -Depends: ${shlibs:Depends} -Description: Qt like interface for the libexiv2 library (runtime) [KDE3] - libkexif2 contains the library of libkexiv2. - . - Libkexif is a wrapper around Exiv2 library to manipulate pictures metadata. diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/control.in b/ubuntu/lucid_automake/libraries/libkexiv2/debian/control.in deleted file mode 100644 index 4389a0c77..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/control.in +++ /dev/null @@ -1,28 +0,0 @@ -Source: libkexiv2-kde3 -Section: libs -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: @@@MAINTAINER@@@ -Uploaders: @@@UPLOADERS@@@ -Build-Depends: debhelper (>> 5), cdbs, libexiv2-kde3-dev (>= 0.12), kdelibs4-kde3-dev, automake1.11-kde3, autoconf2.63, libtool, libltdl-dev -Standards-Version: 3.8.3 -Homepage: http://www.kipi-plugins.org/ - -Package: libkexiv2-3-kde3-dev -Section: libdevel -Architecture: any -Depends: libkexiv2-3-kde3 (= ${binary:Version}), pkg-config -Description: Qt like interface for the libexiv2 library (development) [KDE3] - libkexif2-dev contains development files and documentation for libkexiv2 - library. The library documentation is available on kexiv2.h header file. - . - Libkexif is a wrapper around Exiv2 library to manipulate pictures metadata. - -Package: libkexiv2-3-kde3 -Section: libs -Architecture: any -Depends: ${shlibs:Depends} -Description: Qt like interface for the libexiv2 library (runtime) [KDE3] - libkexif2 contains the library of libkexiv2. - . - Libkexif is a wrapper around Exiv2 library to manipulate pictures metadata. diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/copyright b/ubuntu/lucid_automake/libraries/libkexiv2/debian/copyright deleted file mode 100644 index 2e711aec5..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/copyright +++ /dev/null @@ -1,32 +0,0 @@ -This package was debianized by Achim Bohnet on -Sat, 27-Jan-2007. - - -Upstream authors are (from AUTHORS file): - - Caulier Gilles <caulier dot gilles at kdemail dot net> - Marcel Wiesweg <marcel dot wiesweg at gmx dot de> - - -Copyrights: - - Copyright 2006-2007 by Gilles Caulier <caulier dot gilles at gmail dot com> - Copyright 2006-2007 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de> - Copyright 2005 Laurent Montel <montel@kde.org> - - -License: - - 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. - -The GNU General Public License version 2 can be found at -/usr/share/common-licenses/GPL-2. diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/libkexiv2-3-kde3-dev.install b/ubuntu/lucid_automake/libraries/libkexiv2/debian/libkexiv2-3-kde3-dev.install deleted file mode 100644 index 01a84d4ef..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/libkexiv2-3-kde3-dev.install +++ /dev/null @@ -1,4 +0,0 @@ -debian/tmp/opt/kde3/include/* -debian/tmp/opt/kde3/lib/pkgconfig/* -debian/tmp/opt/kde3/lib/*.la -debian/tmp/opt/kde3/lib/lib*.so diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/libkexiv2-3-kde3.install b/ubuntu/lucid_automake/libraries/libkexiv2/debian/libkexiv2-3-kde3.install deleted file mode 100644 index 1260d9b6c..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/libkexiv2-3-kde3.install +++ /dev/null @@ -1 +0,0 @@ -debian/tmp/opt/kde3/lib/lib*.so.* diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/patches/.gitignore b/ubuntu/lucid_automake/libraries/libkexiv2/debian/patches/.gitignore deleted file mode 100644 index e69de29bb..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/patches/.gitignore +++ /dev/null diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/rules b/ubuntu/lucid_automake/libraries/libkexiv2/debian/rules deleted file mode 100755 index f5721b2e3..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/rules +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/make -f - -FILENAME = $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_VERSION).orig.tar.gz -UPFILENAME = $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).tar.bz2 -URL = http://heanet.dl.sourceforge.net/kipi/$(UPFILENAME) - -include /usr/share/cdbs/1/rules/debhelper.mk -include debian/cdbs/debian-qt-kde.mk -include /usr/share/cdbs/1/rules/utils.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_KDE_ENABLE_FINAL = yes - -DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/kde3 --with-extra-libs=/opt/kde3/lib - -get-orig-source: - @@dh_testdir - @@[ -d ../tarballs/. ]||mkdir -p ../tarballs - @@echo Downloading $(UPFILENAME) from $(URL) ... - @@wget -N -nv -T10 -t3 -O ../tarballs/$(UPFILENAME) $(URL) - @@echo Converting $(UPFILENAME) to $(FILENAME) - @@bzcat ../tarballs/$(UPFILENAME) | gzip -9 > ../tarballs/$(FILENAME) diff --git a/ubuntu/lucid_automake/libraries/libkexiv2/debian/watch b/ubuntu/lucid_automake/libraries/libkexiv2/debian/watch deleted file mode 100644 index 781107196..000000000 --- a/ubuntu/lucid_automake/libraries/libkexiv2/debian/watch +++ /dev/null @@ -1,6 +0,0 @@ -# Compulsory line, this is a version 3 file -version=3 - -http://sf.net/kipi/libkexiv2-(.*)\.tar\.bz2 debian svn-upgrade - - diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/README.Debian b/ubuntu/lucid_automake/libraries/libkipi/debian/README.Debian deleted file mode 100644 index b0302c211..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/README.Debian +++ /dev/null @@ -1,107 +0,0 @@ -Debian kde-extras Team ----------------------- - -1. Contacts ------------ - -General help requests - <debian-kde@lists.debian.org> mailing list - #debian-kde on irc - -Packaging queries - <debian-qt-kde@lists.debian.org> mailing list - #debian-qt-kde on irc - -Maintainers - <pkg-kde-extras@lists.alioth.debian.org> mailing list - - -2. Subversion repository ------------------------- - -You can browse it only at: - -http://svn.debian.org/wsvn/pkg-kde/kde-extras/ - -To "checkout" the repository use these commands: - - $ svn co svn+ssh://${ALIOTH_USERNAME}@svn.debian.org/svn/pkg-kde/kde-extras - -Authorized SSH keys are controlled at https://alioth.debian.org/account/ - -The repository layout is: - -- packagename/ - - trunk/ - - branches/ - - tags/ - - 0.7.2-1/ - - 0.7.2-2/ - - 0.7.2-2ubuntu1/ - - 0.7.2-2ubuntu2/ - - 0.7.2-2ubuntu3/ - - 0.8.0/ - ... - -If only one version of the package is available at the time, development must -be made at trunk/ dir, copying the dir to tags/'pkg-version' each time a new -release is made. - -When, at some point, the need to have two different versions at the same time -arises (for example, if we need a version to be in unstable and a different one -to be in experimental), experimental development will be made in trunk/ and -if a new unstable package needs to be cooked, copying -tag/'latest_version_in_sid' to tag/'latest_version_in_sid'+1 will make the -trick. - -3. Using svn-buildpackage --------------------------- - -Packages with an upstream tarball will require you to set the mergeWithUpstream -property first (from the package root) so that svn-buildpackage will look for -the .orig.tar.gz in the ../tarballs directory. - - % svn propset mergeWithUpstream 1 debian - -Please note that this only works for packages which have only the debian/ -directory committed. Consequently, you must use CDBS's simple-patchsys.mk or -dpatch to modify the upstream sources. - -After you have finished and committed your Debian patches via - - % svn commit [PACKAGE] - -as well as copying the orig.tar.gz to ../tarballs/ if necessary, you may build -your package with the following commands: - - % svn-buildpackage --svn-ignore-new -rfakeroot - -Please, don't commit tarballs/ or build-area/ directories to SVN. - -4. Tarballs and Build-area directories ------------------------------------- - -During pkg development before uploaded to debian the tarballs can be found at: - - http://pkg-kde.alioth.debian.org/kde-extra/orig.tar.gz/ - -You need to place those dirs in the parent directory of the one from which you're -running svn-buildpackage. Usually this means placing tarballs/ and build-area/ dirs -in 'pkgname'/ dir, at the same level as trunk/ - -If you want to compile inside one version in tags/ dir, you'll need to place those -dirs inside that dir. Of course the easiest and cleanest way of doing it is -by making a symlink of those dirs inside tags/ dir. - -5. Using svn-inject -------------------- - -To inject a new package into the Debian KDE Extras svn archive you should use svn-inject(1) -as follows: - - svn-inject -o <package>.dsc svn+ssh://${ALIOTH_USERNAME}@svn.debian.org/svn/pkg-kde/kde-extras - -Type in your alioth password a few hundred times :-) and your package should be -uploaded to the archive. Note you will also need to manually copy the -package.orig.tar.gz to your tarballs directory. The -o option is important as -this ensures that we 'Only keep modified files under SVN control' diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/TODO b/ubuntu/lucid_automake/libraries/libkipi/debian/TODO deleted file mode 100644 index 383c04cea..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/TODO +++ /dev/null @@ -1,8 +0,0 @@ -o check for doxygen docs -> -dev pkg (+ add to build deps) -o add -dbg pkg -o for parallel libkipi1 libkipi2 installs (see libkexif): - o append soname to msg catalog - o add a note in dev package about the renamed msg catalog - o check rdepends for addcatalogs(libkipi) calls and file - bug reports if necessary -__END__ diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/cdbs/buildvars.mk b/ubuntu/lucid_automake/libraries/libkipi/debian/cdbs/buildvars.mk deleted file mode 100644 index 23d4709dc..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/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/libraries/libkipi/debian/cdbs/debian-qt-kde.mk b/ubuntu/lucid_automake/libraries/libkipi/debian/cdbs/debian-qt-kde.mk deleted file mode 100644 index 2be8f97f1..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/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/libraries/libkipi/debian/cdbs/kde.mk b/ubuntu/lucid_automake/libraries/libkipi/debian/cdbs/kde.mk deleted file mode 100644 index 21965ceef..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/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/libraries/libkipi/debian/cdbs/team-members b/ubuntu/lucid_automake/libraries/libkipi/debian/cdbs/team-members deleted file mode 100644 index 05761af6e..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/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/libraries/libkipi/debian/cdbs/uploaders.mk b/ubuntu/lucid_automake/libraries/libkipi/debian/cdbs/uploaders.mk deleted file mode 100644 index 31adfe31e..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/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/libraries/libkipi/debian/cdbs/versions.pl b/ubuntu/lucid_automake/libraries/libkipi/debian/cdbs/versions.pl deleted file mode 100644 index 9ce11d8a3..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/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/libraries/libkipi/debian/changelog b/ubuntu/lucid_automake/libraries/libkipi/debian/changelog deleted file mode 100644 index e2d23fe78..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/changelog +++ /dev/null @@ -1,236 +0,0 @@ -libkipi-kde3 (0.1.5-3intrepid0) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600 - -libkipi-kde3 (0.1.5-2intrepid6) jaunty; urgency=low - - * Jaunty rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 28 April 2009 13:23:00 -0600 - -libkipi-kde3 (0.1.5-2intrepid5) intrepid; urgency=low - - * Moved KDE3 to /opt/kde3 - * Integrated properly with KDE4.2+ - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 05 March 2009 01:11:00 -0600 - -libkipi-kde3 (0.1.5-2intrepid3) intrepid; urgency=low - - [ Timothy Pearson ] - * Added -kde3 prefix - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 2 Dec 2008 01:33:00 -0600 - -libkipi (0.1.5-2) unstable; urgency=low - - [ Mark Purcell ] - * Merge branches/experimental with trunk and upload 1.5 to unstable - * libkipi-dev Depends: pkg-config - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sat, 3 Mar 2007 18:17:38 +0000 - -libkipi (0.1.5-1) experimental; urgency=low - - * New upstream release - - [ Mark Purcell ] - * Add Build-Depends: autotools-dev - - [ Achim Bohnet ] - * Relibtoolization patches: - + remove patches/05_pedantic-errors.diff. No need to be more pedantic than - upstream. - + remove patches/10_aclocal.m4_update.diff, debian/patches/99_only_-lqt-mt.diff - no longer necessary - + regenerate patches/98_buildpref.diff and patches/98_configure.diff - * Set standards-version to 3.7.2. No changes necessary. - * Add XS-Vcs-Svn and XS-Vcs-Browser info to debian/control - * Long description: update homepage URL to new http://www.kipi-plugins.org/ - site - * Check sources for licenses/copyrights. No changes in debian/copyright - necessary. - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Fri, 29 Dec 2006 14:34:34 +0100 - -libkipi (0.1.4-1) unstable; urgency=low - - [ Achim Bohnet ] - * new upstream release. Fixes FTBFS on first installation. - * Remove 11_kdesvn_r540613_fix_include_path.diff. Included upstream - * Remove 06_disable_no_undefined.diff. Not needed. Pkg is properly - relibtoolized - * Update relibtoolization patches: 98_buildprep.diff 99_only_-lqt-mt.diff - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Tue, 16 May 2006 20:55:30 +0200 - -libkipi (0.1.3-2) unstable; urgency=low - - [ Achim Bohnet ] - * Add 11_kdesvn_r540613_fix_include_path.diff. Closes: #366933: libkipi - - FTBFS: error: libkipi/interface.h: No such file or directory - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 14 May 2006 11:03:25 +0200 - -libkipi (0.1.3-1) unstable; urgency=low - - [ Mark Purcell ] - * New upstream release - * Relibtoolize from /pkg-kde/trunk/common-patches/ for 3.5.2 - * Dropped from debian/patches (seems OK) - + 08_disable-visibility.diff - - [ Achim Bohnet ] - o Update 98_buildprep.diff - o Replace 10_link_to_right_libs.diff with 99_only_-lqt-mt.diff - Relibtoolization patch was accepted upstream, except for LIB_QT hack. - Now patch configure to hardcode LIB_QT to -lqt-mt instead of - patching every Makefile.am/.in. - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Tue, 9 May 2006 22:45:55 +0100 - -libkipi (0.1.2-4) unstable; urgency=low - - [ Mark Purcell ] - * Rebuild for libXrender.la - * Package needs to be rebuilt against new version of libxrender-dev. - Cannot build KphotoAlbum against it. (Closes: #363918) - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Thu, 20 Apr 2006 18:30:51 +0100 - -libkipi (0.1.2-3) unstable; urgency=low - - [ Achim Bohnet ] - * relibtoolize libkipi: - + Closes #304336 libkipi_0.1.1-2(GNU/k*BSD): FTBFS: out of date - libtool scripts - + use tool/patches of Debian Qt/KDE Team packages: patches/0*.diff - + update 03_libtool_update.diff to libtool 1.5.20-2 - + debian/rules: add buildprep rule to recreate the buildpref diff - + add 06_aclocal_update.diff: aclocal.m4 gets recreated after each - new buildprep diff - + patches/10_link_to_right_libs.diff: add missing libraries -lkdecore - -lqt-mt - Result: libkipi0 now depends on 5 instead of 25 packages - * remove unnecessary build dependency on libimlib2-dev - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Wed, 28 Dec 2005 00:07:03 +0100 - -libkipi (0.1.2-2) unstable; urgency=low - - [ Mark Purcell ] - * Add debian/watch: sf.net kipi project will be used for - future releases - - [ Achim Bohnet ] - * 2nd g++ v4 ABI change: Because we already depend on kdelibs4c2a, - remove c2 that was unnecessarily introduced for the 1st g++ v4.0 - ABI change. Now backporting and sync with kunbuntu needs no - source changes again. - * rules: - + use utils.mk from cdbs instead of calling dh_install with - --list-missing - + remove unnecessary --disable-debug configure option - + build with --enable-final - * Temporarily Build-Depend on kdelibs4-dev (>= 4:3.4.3-2) to make - sure we build against kdelibs4c2a - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Fri, 2 Dec 2005 15:49:45 +0100 - -libkipi (0.1.2-1) unstable; urgency=low - - * New upstream release - * Pkg now maintained by Debian KDE Extras Team - - +++ Changes by Achim Bohnet: - - * remove versioned build-dependency of kdelibs4-dev now that - it's build on all archs with new C++ ABI. - * patches/00_fix-home-page-url.patch removed. Fixed upstream. - * updated debian/copyright for 0.1.2 tarball - - -- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Thu, 15 Sep 2005 02:29:15 +0200 - -libkipi (0.1.1-4) unstable; urgency=low - - * Conflicts:/ Replaces: libkipi0 - * libkipi0-dev Depends: libkipi0c2 - - -- Mark Purcell <msp@debian.org> Fri, 19 Aug 2005 17:49:41 +0100 - -libkipi (0.1.1-3) unstable; urgency=low - - * C++ transition package - * Upgrade Build-Depends: kdelibs4-dev (>= 3.4.2-1) - * Uploaders: Achim Bohnet <ach@mpe.mpg.de>, Mark Purcell - <msp@debian.org> - - -- Mark Purcell <msp@debian.org> Thu, 18 Aug 2005 17:52:32 +0100 - -libkipi (0.1.1-2) unstable; urgency=low - - * debian/copyright: fix typo - - -- Achim Bohnet <ach@mpe.mpg.de> Thu, 10 Mar 2005 01:52:32 +0100 - -libkipi (0.1.1-1) unstable; urgency=low - - * new upstream release - * control: removed unused misc:Depends var - * control: update homepage URL (closes: #294947) - * updated debian/copyright - * fix homepage URL in About dialogs (use simplepatchsys) - - -- Achim Bohnet <ach@mpe.mpg.de> Mon, 14 Feb 2005 22:16:20 +0100 - -libkipi (0.1-2~kalyxo1) unstable; urgency=low - - * Initial upload (Closes: #280439) - * get rid of debug output (configure with --disable-debug) - - -- Achim Bohnet <ach@mpe.mpg.de> Tue, 9 Nov 2004 23:31:13 +0100 - -libkipi (0.1-1) unstable; urgency=low - - * control: remove libkexif0-dev build dependency - * libkipi/Makefile.am: fix compilation without libkipi0-dev - installed - * change distribtion to unstable - - -- Achim Bohnet <ach@mpe.mpg.de> Tue, 19 Oct 2004 00:48:03 +0200 - -libkipi (0.1-0) experimental; urgency=low - - * first upstream release - * added homepage URL to extended description - * add translation to libkipi0 deb - * main.cpp: fix URL - * copyright: mention the 3 GPL files, rest LGPL - * install libkipi/design as doc to -dev pkgs - - -- Achim Bohnet <ach@mpe.mpg.de> Sun, 17 Oct 2004 00:50:36 +0200 - -libkipi (0.0.cvs20040802-1) experimental; urgency=low - - * sync with cvs - * fix libkexif.install to install icons servicetypes and apps dirs - - -- Achim Bohnet <ach@mpe.mpg.de> Tue, 3 Aug 2004 01:18:47 +0200 - -libkipi (0.0.cvs20040726-1) experimental; urgency=low - - * rebuild against new libkexif (should fix rpath stuff) - * all build-deps on one line (lintian) - * use configure --disable-rpath - - -- Achim Bohnet <ach@mpe.mpg.de> Mon, 26 Jul 2004 21:42:03 +0200 - -libkipi (0.0.cvs20040721-1) unstable; urgency=low - - * Initial Release - * WARNING experimental pkg! - - -- Achim Bohnet <ach@mpe.mpg.de> Wed, 21 Jul 2004 01:25:11 +0200 - diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/compat b/ubuntu/lucid_automake/libraries/libkipi/debian/compat deleted file mode 100644 index b8626c4cf..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/control b/ubuntu/lucid_automake/libraries/libkipi/debian/control deleted file mode 100644 index 009ca465d..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/control +++ /dev/null @@ -1,38 +0,0 @@ -Source: libkipi-kde3 -Section: libs -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -Uploaders: Achim Bohnet <ach@mpe.mpg.de>, Mark Purcell <msp@debian.org> -Build-Depends: cdbs, debhelper (>> 4.1), libexif-dev, kdelibs4-kde3-dev (>= 4:3.4.3-2), automake1.11-kde3, autoconf2.63, libtool, libltdl-dev -Standards-Version: 3.8.3 - -Package: libkipi0-kde3-dev -Provides: libkipi-kde3-dev -Conflicts: libkipi-kde3-dev -Section: libdevel -Architecture: any -Depends: libkipi0-kde3 (= ${Source-Version}), pkg-config -Description: library for apps that want to use kipi-plugins (development version) [KDE3] - Libkipi is a library - . - o that contains common routines and widget used by kipi-plugins - o to ease implementation of the kipi-plugins interface in an application - that wants to use kipi-plugins - . - This pkg contains development files and documentation for libkipi library. - . - Homepage: http://www.kipi-plugins.org/ - -Package: libkipi0-kde3 -Conflicts: libkipi0c2-kde3 -Section: libs -Architecture: any -Depends: ${shlibs:Depends} -Description: library for apps that want to use kipi-plugins (runtime version) [KDE3] - Libkipi is a library - . - o that contains common routines and widget used by kipi-plugins - o to ease implementation of the kipi-plugins interface in an application - that wants to use kipi-plugins - . - Homepage: http://extragear.kde.org/apps/kipi diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/control.in b/ubuntu/lucid_automake/libraries/libkipi/debian/control.in deleted file mode 100644 index bdd9b4f6c..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/control.in +++ /dev/null @@ -1,39 +0,0 @@ -Source: libkipi-kde3 -Section: libs -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: @@@MAINTAINER@@@ -Uploaders: @@@UPLOADERS@@@ -Build-Depends: cdbs, debhelper (>> 4.1), libexif-dev, kdelibs4-kde3-dev (>= 4:3.4.3-2), autotools-dev -Standards-Version: 3.8.3 - -Package: libkipi0-kde3-dev -Provides: libkipi-kde3-dev -Conflicts: libkipi-kde3-dev -Section: libdevel -Architecture: any -Depends: libkipi0-kde3 (= ${Source-Version}), pkg-config -Description: library for apps that want to use kipi-plugins (development version) [KDE3] - Libkipi is a library - . - o that contains common routines and widget used by kipi-plugins - o to ease implementation of the kipi-plugins interface in an application - that wants to use kipi-plugins - . - This pkg contains development files and documentation for libkipi library. - . - Homepage: http://www.kipi-plugins.org/ - -Package: libkipi0-kde3 -Conflicts: libkipi0c2-kde3 -Section: libs -Architecture: any -Depends: ${shlibs:Depends} -Description: library for apps that want to use kipi-plugins (runtime version) [KDE3] - Libkipi is a library - . - o that contains common routines and widget used by kipi-plugins - o to ease implementation of the kipi-plugins interface in an application - that wants to use kipi-plugins - . - Homepage: http://extragear.kde.org/apps/kipi diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/copyright b/ubuntu/lucid_automake/libraries/libkipi/debian/copyright deleted file mode 100644 index 46dc95db6..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/copyright +++ /dev/null @@ -1,327 +0,0 @@ -This package was debianized by Achim Bohnet on -Tue, 21 Jul 2004 01:29:01 +0200. - -Upstream authors are the 'KIPI Team' (from AUTHORS file): - - Renchi Raju <renchi at pooh.tam.uiuc.edu> - Caulier Gilles <caulier dot gilles at free.fr> - Jesper K. Pedersen <blackie at kde.org> - Aurelien Gateau <aurelien dot gateau at free.fr> - - -Copyrights: - - Copyright 2004 by the KIPI team - Copyright 2004 by Renchi Raju - Copyright 2004 by Jesper K. Pedersen - Copyright (C) 2002-2004 Renchi Raju <renchi at pooh.tam.uiuc.edu> - Gilles CAULIER <caulier dot gilles at free.fr> - Jesper K. Pedersen <blackie at kde.org> - Aurelien Gateau <aurelien dot gateau at free.fr> - Copyright (C) 2003,2004 Gilles Caulier <caulier dot gilles at free.fr> - Copyright (C) 2001-2005 Klarälvdalens Datakonsult AB - Copyright (c) 2005 Laurent Montel <montel@kde.org> - - - -Licenses: - -version.h: - - 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. - - -KDStream.cpp, KDStream.h are dual licensed: GPL V2 or -'KD Tools Commercial License': - - - This file may be distributed and/or modified under the terms of the - GNU General Public License version 2 as published by the Free Software - Foundation and appearing in the file LICENSE.GPL included in the - packaging of this file. - - Licensees holding valid commercial KD Tools licenses may use this file in - accordance with the KD Tools Commercial License Agreement provided with - the Software. - - This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE - WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - See http://www.klaralvdalens-datakonsult.se/?page=products for - information about KD Tools Commercial License Agreements. - - Contact info@klaralvdalens-datakonsult.se if any conditions of this - licensing are not clear to you. - - -the GNU General Public License version 2 can be found at -/usr/share/common-licenses/GPL-2. - -KDTools-License-US: - - KD Tools COMMERCIAL LICENSE AGREEMENT - FOR COMMERCIAL VERSIONS - March 27, 2002 - - - IMPORTANT-READ CAREFULLY: This Klarälvdalens Datakonsult AB End-User - License Agreement ("EULA") is a legal agreement between you (either an - individual or a legal entity) and Klarälvdalens Datakonsult AB - ("KDAB") for the Klarälvdalens Datakonsult AB software product(s) - accompanying this EULA, which include(s) computer software and may - include "online" or electronic documentation, associated media, and - printed materials ("Licensed Product"). - - The Licensed Product is protected by copyright laws and international - copyright treaties, as well as other intellectual property laws and - treaties. The Licensed Product is licensed, not sold. - - By installing, copying, or otherwise using the Licensed Product, you - agree to be bound by the terms of this EULA. If you do not agree to - the terms of this EULA, do not install, copy, or otherwise use the - Licensed Product; you may, however, return it to your place of - purchase for a full refund. In addition, by installing, copying, or - otherwise using any updates or other components of the Licensed - Product that you receive separately as part of the Licensed Product - ("Updates"), you agree to be bound by any additional license terms - that accompany such Updates. If you do not agree to the additional - license terms that accompany such Updates, you may not install, copy, - or otherwise use such Updates. - - Upon your acceptance of the terms and conditions of this EULA, KDAB - grants you the right to use the Licensed Product in the manner - provided below. - - KDAB grants to you as an individual a personal, nonexclusive, - nontransferable license to make and use copies of the Licensed Product - for the sole purposes of designing, developing, and testing your - software product(s) ("Applications"). You may install copies of the - Licensed Product on an unlimited number of computers provided that you - are the only individual using the Licensed Product. If you are an - entity, KDAB grants you the right to designate one, and only one, - individual within your organization who shall have the sole right to - use the Licensed Product in the manner provided above. You may at any - time, but not more frequently that once every six (6) months, - designate another individual to replace the current designated user by - notifying KDAB, so long as there is no more than one designated user - at any given time. - - - GENERAL TERMS THAT APPLY TO APPLICATIONS AND REDISTRIBUTABLES - KDAB grants you a nonexclusive, royalty-free right to reproduce and - distribute the object code form of any portion of the Licensed Product - ("Redistributables") for execution on any operating system of a type - listed in the License Certificate ("Platforms"). Copies of - Redistributables may only be distributed with and for the sole purpose - of executing Applications permitted under this License Agreement that - you have created using the Licensed Product. Under no circumstances - may any copies of Redistributables be distributed separately. - - The license granted in this EULA for you to create your own - Applications and distribute them and the Redistributables (if any) to - your customers is subject to all of the following conditions: (i) all - copies of the Applications you create must bear a valid copyright - notice, either your own or the copyright notice that appears on the - Licensed Product; (ii) you may not remove or alter any copyright, - trademark or other proprietary rights notice contained in any portion - of the Licensed Product; (iii) Redistributables, if any, shall be - licensed to your customer "as is" (KDAB MAKES NO WARRANTIES OR - REPRESENTATIONS VIS-A-VIS YOUR CUSTOMER WITH RESPECT TO - REDISTRIBUTABLES, AND KDAB EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES - VIS-A-VIS YOUR CUSTOMER, WHETHER EXPRESS OR IMPLIED, ORAL OR WRITTEN, - INCLUDING, BUT NOT LIMITED TO ANY IMPLIED WARRANTY OF MERCHANTABILITY - OR FITNESS FOR ANY PARTICULAR PURPOSE, WHETHER OR NOT KDAB KNOWS, HAS - REASON TO KNOW, HAS BEEN ADVISED OR IS OTHERWISE AWARE OF SUCH - PURPOSE); (iv) you will indemnify and hold KDAB, its related companies - and its suppliers, harmless from and against any claims or liabilities - arising out of the use, reproduction or distribution of your - Applications; (v) your Applications must be written using a licensed, - registered copy of the Licensed Product; (vi) your Applications must - add primary and substantial functionality to the Licensed Product; - (vii) your Applications may not pass on functionality which in any way - makes it possible for others to create Applications with the Software; - (viii) your Applications may not compete with the Licensed Product; - (ix)) you may not use KDAB's or any of its suppliers' names, logos, or - trademarks to market your programs, except to state that your program - was written using the Licensed Product. - - - WARRANTY DISCLAIMER - THE LICENSED PRODUCT IS LICENSED TO YOU "AS IS". TO THE MAXIMUM - EXTENT PERMITTED BY APPLICABLE LAW, KDAB ON BEHALF OF ITSELF AND ITS - SUPPLIERS, DISCLAIMS ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR - IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND - NON-INFRINGEMENT WITH REGARD TO THE LICENSED PRODUCT. THIS WARRANTY - DISCLAIMER NOTWITHSTANDING, YOU MAY HAVE SPECIFIC LEGAL RIGHTS WHICH - MAY VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION. - - - LIMITATION OF LIABILITY - IF, KDAB'S WARRANTY DISCLAIMER NOTWITHSTANDING, KDAB IS HELD LIABLE TO - YOU, WHETHER IN CONTRACT, TORT OR ANY OTHER LEGAL THEORY, BASED ON THE - LICENSED PRODUCT, KDAB'S ENTIRE LIABILITY TO YOU AND YOUR EXCLUSIVE - REMEDY SHALL BE, AT KDAB'S OPTION, EITHER (A) RETURN OF THE PRICE YOU - PAID FOR THE LICENSED PRODUCT, OR (B) REPAIR OR REPLACEMENT OF THE - LICENSED PRODUCT, PROVIDED YOU RETURN TO KDAB ALL COPIES OF THE - LICENSED PRODUCT AS ORIGINALLY DELIVERED TO YOU. KDAB SHALL NOT UNDER - ANY CIRCUMSTANCES BE LIABLE TO YOU BASED ON FAILURE OF THE LICENSED - PRODUCT IF THE FAILURE RESULTED FROM ACCIDENT, ABUSE OR - MISAPPLICATION, NOR SHALL KDAB UNDER ANY CIRCUMSTANCES BE LIABLE FOR - SPECIAL DAMAGES, PUNITIVE OR EXEMPLARY DAMAGES, DAMAGES FOR LOSS OF - PROFITS OR INTERRUPTION OF BUSINESS OR FOR LOSS OR CORRUPTION OF DATA. - ANY AWARD OF DAMAGES FROM KDAB TO YOU SHALL NOT EXCEED THE TOTAL AMOUNT - YOU HAVE PAID TO KDAB IN CONNECTION WITH THIS EULA. - - - SUPPORT AND UPDATES - You will receive email based, software developer support and access to - Updates to the Licensed Product for one year from the date of initial - delivery, in accordance with KDAB support policies and procedures. - Such policies and procedures may be changed from time to time. - - - GENERAL PROVISIONS - This EULA may only be modified in writing signed by you and an - authorized officer of KDAB. All terms of any purchase order or other - ordering document shall be superseded by this EULA. If any provision - of the EULA is found void or unenforceable, the remainder will remain - valid and enforceable according to its terms. If any remedy provided - is determined to have failed for its essential purpose, all - limitations of liability and exclusions of damages set forth in this - EULA shall remain in effect. - - This EULA shall be construed, interpreted and governed by the laws of - Sweden, the venue to be Sunne Tingsrätt. The EULA gives you specific - legal rights; you may have others, which vary from state to state and - from country to country. KDAB reserves all rights not specifically - granted in this EULA. - - -KDTools-License-non-US: - - - KD Tools COMMERCIAL LICENSE AGREEMENT - FOR COMMERCIAL VERSIONS - Version 1.0 - - Copyright of this license text (C) 2001 Trolltech AS and (C) 2002 - Klarälvdalens Datakonsult AB. All rights reserved. License text used - with kind permission of Trolltech AS. The software and accompanying - material is Copyright (C) 2002 Klarälvdalens Datakonsult AB. - - This non-exclusive non-transferable License Agreement ("Agreement") is - between you ("Licensee") and Klarälvdalens Datakonsult AB (KDAB), and - pertains to the Klarälvdalens Datakonsult AB software product(s) - accompanying this Agreement, which include(s) computer software and - may include "online" or electronic documentation, associated media, - and printed materials, including the source code, example programs and - the documentation ("Software"). - - - COPYRIGHT AND RESTRICTIONS - - 1. All intellectual property rights in the Software are owned by KDAB - and are protected by Swedish copyright laws, other applicable - copyright laws, and international treaty provisions. KDAB retains all - rights not expressly granted. No title, property rights or copyright - in the Software or in any modifications to the Software shall pass to - the Licensee under any circumstances. The Software is licensed, not - sold. - - 2. By installing, copying, or otherwise using the Software, you agree - to be bound by the terms of this agreement. If you do not agree to the - terms of this Agreement, do not install, copy, or otherwise use the - Software. - - 3. Upon your acceptance of the terms and conditions of this Agreement, - KDAB grants you the right to use the Software in the manner provided - below. - - 4. KDAB grants to you as an individual a personal, nonexclusive, - non-transferable license to make and use copies of the Software for - the sole purposes of designing, developing, testing and distributing - your software product(s) ("Applications"). You may install copies of - the Software on an unlimited number of computers provided that you are - the only individual using the Software. If you are an entity, KDAB - grants you the right to designate one, and only one, individual within - your organization who shall have the sole right to use the Software in - the manner provided above. - - 5. The license granted in this Agreement for you to create and - distribute your own Applications is subject to all of the following - conditions: (i) all copies of the Applications you create must bear a - valid copyright notice, either your own or the copyright notice that - appears on the Software; (ii) you may not remove or alter any - copyright, trademark or other proprietary rights notice contained in - any portion of the Software; (iii) you will indemnify and hold KDAB, its - related companies and its suppliers, harmless from and against any - claims or liabilities arising out of the use and/or reproduction of - your Applications; (iv) your Applications must be written using a - licensed, registered copy of the Software; (v) your Applications must - add primary and substantial functionality to the Software; (vi) your - Applications may not pass on functionality which in any way makes it - possible for others to create Applications with the Software; (vii) - your Applications may not compete with the Software; (viii) you may - not use KDAB's or any of its suppliers' names, logos, or trademarks to - market your programs, except to state that your program was written - using the Software. - - 6. WARRANTY DISCLAIMER - THE SOFTWARE IS LICENSED TO YOU "AS IS". TO THE MAXIMUM EXTENT - PERMITTED BY APPLICABLE LAW, KDAB ON BEHALF OF ITSELF AND ITS SUPPLIERS, - DISCLAIMS ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, - INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT WITH - REGARD TO THE SOFTWARE. - - 7. LIMITATION OF LIABILITY - IF, KDAB'S WARRANTY DISCLAIMER NOTWITHSTANDING, KDAB IS HELD LIABLE TO - YOU BASED ON THE SOFTWARE, KDAB'S ENTIRE LIABILITY TO YOU AND YOUR - EXCLUSIVE REMEDY SHALL BE, AT REPAIR OR REPLACEMENT OF THE SOFTWARE, - PROVIDED YOU RETURN TO KDAB ALL COPIES OF THE SOFTWARE AS ORIGINALLY - DELIVERED TO YOU. KDAB SHALL NOT UNDER ANY CIRCUMSTANCES BE LIABLE TO - YOU BASED ON FAILURE OF THE SOFTWARE IF THE FAILURE RESULTED FROM - ACCIDENT, ABUSE OR MISAPPLICATION, NOR SHALL KDAB UNDER ANY - CIRCUMSTANCES BE LIABLE FOR SPECIAL DAMAGES, PUNITIVE OR EXEMPLARY - DAMAGES, DAMAGES FOR LOSS OF PROFITS OR INTERRUPTION OF BUSINESS OR - FOR LOSS OR CORRUPTION OF DATA. - - 9. This Agreement may only be modified in writing signed by you and an - authorized officer of KDAB. All terms of any purchase order or other - ordering document shall be superseded by this Agreement. - - 10. This Agreement shall be construed, interpreted and governed by the - laws of Sweden, the venue to be Sunne Tingsrätt. - - -The other files are distributed under the GNU Library General Public -License, LGPL: - - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Library General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Steet, Fifth Floor, Boston, MA 02110-1301, USA. - -A copy of the GNU Library General Public License can be found at -/usr/share/common-licenses/LGPL. - diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/libkipi0-kde3-dev.install b/ubuntu/lucid_automake/libraries/libkipi/debian/libkipi0-kde3-dev.install deleted file mode 100644 index 8cb322185..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/libkipi0-kde3-dev.install +++ /dev/null @@ -1,6 +0,0 @@ -debian/tmp/opt/kde3/include/* -debian/tmp/opt/kde3/lib/lib*.a -debian/tmp/opt/kde3/lib/pkgconfig/* -debian/tmp/opt/kde3/lib/*.la -debian/tmp/opt/kde3/lib/lib*.so -debian/tmp/opt/kde3/share/aclocal/*.m4 diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/libkipi0-kde3.install b/ubuntu/lucid_automake/libraries/libkipi/debian/libkipi0-kde3.install deleted file mode 100644 index e3096a441..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/libkipi0-kde3.install +++ /dev/null @@ -1,5 +0,0 @@ -debian/tmp/opt/kde3/lib/lib*.so.* -debian/tmp/opt/kde3/share/apps/kipi -debian/tmp/opt/kde3/share/icons -debian/tmp/opt/kde3/share/servicetypes -debian/tmp/opt/kde3/share/locale diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/patches/.gitignore b/ubuntu/lucid_automake/libraries/libkipi/debian/patches/.gitignore deleted file mode 100644 index e69de29bb..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/patches/.gitignore +++ /dev/null diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/rules b/ubuntu/lucid_automake/libraries/libkipi/debian/rules deleted file mode 100755 index 6d35aa5b2..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/rules +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/make -f - -include /usr/share/cdbs/1/rules/debhelper.mk -include debian/cdbs/debian-qt-kde.mk -include /usr/share/cdbs/1/rules/simple-patchsys.mk -include /usr/share/cdbs/1/rules/utils.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_INSTALL_DOCS_libkipi0-kde3-dev = libkipi/libkipi/design - -DEB_KDE_ENABLE_FINAL = yes - -DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/kde3 --with-extra-libs=/opt/kde3/lib - -clean :: - rm -f po/*/*.gmo - -get-orig-source: - @@dh_testdir - @@[ -d ../tarballs/. ] - @@dpatch-get-origtargz ../tarballs - diff --git a/ubuntu/lucid_automake/libraries/libkipi/debian/watch b/ubuntu/lucid_automake/libraries/libkipi/debian/watch deleted file mode 100644 index a913b7d89..000000000 --- a/ubuntu/lucid_automake/libraries/libkipi/debian/watch +++ /dev/null @@ -1,22 +0,0 @@ -# Example watch control file for uscan -# Rename this file to "watch" and then you can run the "uscan" command -# to check for upstream updates and more. -# See uscan(1) for format - -# Compulsory line, this is a version 3 file -version=3 - -# Uncomment to examine a Webpage -# <Webpage URL> <string match> -#http://www.example.com/downloads.php #PACKAGE#-(.*)\.tar\.gz - -# Uncomment to examine a Webserver directory -#http://www.example.com/pub/#PACKAGE#-(.*)\.tar\.gz - -# Uncommment to examine a FTP server -#ftp://ftp.example.com/pub/#PACKAGE#-(.*)\.tar\.gz debian uupdate - -# Uncomment to find new files on sourceforge, for debscripts >= 2.9 -http://sf.net/kipi/libkipi-(.*)\.tar\.bz2 debian svn-upgrade - - diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/changelog b/ubuntu/lucid_automake/libraries/libksquirrel/debian/changelog deleted file mode 100644 index b2c4dff47..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/changelog +++ /dev/null @@ -1,32 +0,0 @@ -libksquirrel-kde3 (0.8.0-1ubuntu2) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Sun, 18 Oct 2009 16:21:00 -0600 - -libksquirrel (0.8.0-0ubuntu4) intrepid; urgency=low - - * debian/patches/001_missing_declarations.patch: drop an extraneous change - that snuck in while trying to test-build on amd64, which in turn breaks - the build on 32-bit systems that this package currently supports. - - -- Steve Langasek <steve.langasek@ubuntu.com> Mon, 29 Sep 2008 16:20:23 -0700 - -libksquirrel (0.8.0-0ubuntu3) intrepid; urgency=low - - * debian/patches/001_missing_declarations.patch: fix a build failure - due to missing #includes for C functions. - - -- Steve Langasek <steve.langasek@ubuntu.com> Mon, 29 Sep 2008 18:29:36 +0000 - -libksquirrel (0.8.0-0ubuntu2) intrepid; urgency=low - - * No-change rebuild against libopenexr6. - - -- Steve Langasek <steve.langasek@ubuntu.com> Mon, 29 Sep 2008 11:38:13 +0000 - -libksquirrel (0.8.0-0ubuntu1) hardy; urgency=low - - * Initial release (LP: #172740) - - -- Harald Sitter <apachelogger@ubuntu.com> Sun, 18 Nov 2007 23:36:24 +0100 diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/compat b/ubuntu/lucid_automake/libraries/libksquirrel/debian/compat deleted file mode 100644 index 7ed6ff82d..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/control b/ubuntu/lucid_automake/libraries/libksquirrel/debian/control deleted file mode 100644 index 1b9a9d125..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/control +++ /dev/null @@ -1,31 +0,0 @@ -Source: libksquirrel-kde3 -Section: libs -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: Harald Sitter <apachelogger@ubuntu.com> -Build-Depends: debhelper (>= 5), cdbs, pkg-config, libmng-dev,librsvg2-bin, - medcon, libjasper-dev, libungif4-dev, libwmf-dev, libopenexr-dev, - djvulibre-bin, transfig, x11proto-core-dev, netpbm, libtiff4-dev, - libkonq4-kde3-dev, kipi-plugins-kde3, libkipi0-kde3-dev, dpatch, build-essential, - automake1.11-kde3, autoconf2.63, libtool, libltdl-dev -Standards-Version: 3.8.3 -Homagepage: http://ksquirrel.sourceforge.net - -Package: libksquirrel0-kde3 -Architecture: any -Depends: ${shlibs:Depends} -Description: KDE3 image viewer - Runtime libraries for KSquirrel. - -Package: libksquirrel-kde3-dev -Section: libdevel -Architecture: any -Depends: ${shlibs:Depends}, libksquirrel0-kde3 (= ${binary:Version}) -Description: KDE3 image viewer - Development libraries for KSquirrel. - -Package: libksquirrel-tools-kde3 -Architecture: any -Depends: ${shlibs:Depends}, libksquirrel0-kde3 (= ${binary:Version}) -Description: KDE3 image viewer - Tools for KSquirrel. diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/copyright b/ubuntu/lucid_automake/libraries/libksquirrel/debian/copyright deleted file mode 100644 index 7d13d101a..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/copyright +++ /dev/null @@ -1,274 +0,0 @@ -This package was debianized by Harald Sitter <apachelogger@ubuntu.com> on -Sun, 18 Nov 2007 23:36:24 +0100. - -It was downloaded from http://ksquirrel.sourceforge.net - -Upstream Author: Dmitry Baryshev <ksquirrel@tut.by> - -Copyright: - (C) 2004-2007 Dmitry Baryshev <ksquirrel@tut.by> - -License: - - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser 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 Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL` - - -Various files have different copyright holders and/or licenses: - -# DDS ########################################################################## -kernel/kls_dds/dds.cpp - Copyright (C) 2003 Ignacio Castano <castano@ludicon.com> - -# WMF ########################################################################## -kernel/kls_wmf/wmf2mem.cpp - Copyright (C) 2000 - various - -# JBIG ######################################################################### -kernel/kls_jbig/jbig2mem.cpp -kernel/kls_jbig/libjbig/* - Copyright (C) Markus Kuhn - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -On Debian systems, the complete text of the GNU General Public License version 2 -can be found in '/usr/share/common-licenses/GPL'. - -# XCF ########################################################################## -kernel/kls_xcf/xcf2pnm/* - Copyright (C) 2006 Henning Makholm - - This program is free software; you can redistribute it and/or modify - it under the terms of version 2 of the GNU General Public License as - published by the Free Software Foundation. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -On Debian systems, the complete text of the GNU General Public License version 2 -can be found in '/usr/share/common-licenses/GPL-2'. - -# TTF ########################################################################## -kernel/kls_tff/ftview/* - Copyright 1996-2000, 2003-2005 (C) D. Turner, R. Wilhelm, and W. Lemberg - -# JPEG2000 ##################################################################### -kernel/kls_jpeg2000/fmt_codec_jpeg2000.cpp -Most code in this library was taken from jasper.c from jasper distribution - Copyright (C) 2001-2006 Michael David Adams - Copyright (C) 1999-2000 Image Power, Inc. - Copyright (C) 1999-2000 The University of British Columbia - - All rights reserved. - - Permission is hereby granted, free of charge, to any person (the - "User") obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, and/or sell copies of the Software, and to permit - persons to whom the Software is furnished to do so, subject to the - following conditions: - - 1. The above copyright notices and this permission notice (which - includes the disclaimer below) shall be included in all copies or - substantial portions of the Software. - - 2. The name of a copyright holder shall not be used to endorse or - promote products derived from the Software without specific prior - written permission. - - THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS - LICENSE. NO USE OF THE SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER - THIS DISCLAIMER. THE SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS - "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING - BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO - EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL - INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING - FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, - NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION - WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. NO ASSURANCES ARE - PROVIDED BY THE COPYRIGHT HOLDERS THAT THE SOFTWARE DOES NOT INFRINGE - THE PATENT OR OTHER INTELLECTUAL PROPERTY RIGHTS OF ANY OTHER ENTITY. - EACH COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY TO THE USER FOR CLAIMS - BROUGHT BY ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL - PROPERTY RIGHTS OR OTHERWISE. AS A CONDITION TO EXERCISING THE RIGHTS - GRANTED HEREUNDER, EACH USER HEREBY ASSUMES SOLE RESPONSIBILITY TO SECURE - ANY OTHER INTELLECTUAL PROPERTY RIGHTS NEEDED, IF ANY. THE SOFTWARE - IS NOT FAULT-TOLERANT AND IS NOT INTENDED FOR USE IN MISSION-CRITICAL - SYSTEMS, SUCH AS THOSE USED IN THE OPERATION OF NUCLEAR FACILITIES, - AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL - SYSTEMS, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH - THE FAILURE OF THE SOFTWARE OR SYSTEM COULD LEAD DIRECTLY TO DEATH, - PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH - RISK ACTIVITIES"). THE COPYRIGHT HOLDERS SPECIFICALLY DISCLAIM ANY - EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES. - -# LJPEG ######################################################################## -kernel/kls_ljpeg/ljpeg2ppm/huffd.c -kernel/kls_ljpeg/ljpeg2ppm/io.h -kernel/kls_ljpeg/ljpeg2ppm/proto.h -kernel/kls_ljpeg/ljpeg2ppm/jpeg.h -kernel/kls_ljpeg/ljpeg2ppm/read.c -kernel/kls_ljpeg/ljpeg2ppm/util.c -kernel/kls_ljpeg/ljpeg2ppm/ljpgtopnm.c -kernel/kls_ljpeg/ljpeg2ppm/mcu.h - Copyright (C) 1991, 1992, Thomas G. Lane. - Part of the Independent JPEG Group's software. - The authors make NO WARRANTY or representation, either express or - implied, with respect to this software, its quality, accuracy, - merchantability, or fitness for a particular purpose. This software is - provided "AS IS", and you, its user, assume the entire risk as to its - quality and accuracy. - -All files stated above + -kernel/kls_ljpeg/mcu.c - Copyright (C) 1993 Brian C. Smith, The Regents of the University - of California - All rights reserved. - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose, without fee, and without written - agreement is hereby granted, provided that the above copyright notice - and the following two paragraphs appear in all copies of this - software. - - IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY - FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES - ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF - THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE - PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF - CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, - ENHANCEMENTS, OR MODIFICATIONS. - -All files stated above + -kernel/kls_ljpeg/mcu.c -kernel/kls_ljpeg/predictor.c -kernel/kls_ljpeg/predictor.h - Copyright (C) 1994 Kongji Huang and Brian C. Smith. - Cornell University - All rights reserved. - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose, without fee, and without written - agreement is hereby granted, provided that the above copyright notice - and the following two paragraphs appear in all copies of this - software. - - IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY - FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES - ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF - THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - CORNELL UNIVERSITY SPECIFICALLY DISCLAIMS ANY WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE - PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF - CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, - ENHANCEMENTS, OR MODIFICATIONS. - -# PNG ########################################################################## -kernel/kls_png/ksquirrel-libs-png/* - Copyright (C) 1998, 1999, 2000 Glenn Randers-Pehrson - Copyright (C) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. - Copyright (C) 1996, 1997 Andreas Dilger - - The PNG Reference Library is supplied "AS IS". The Contributing Authors - and Group 42, Inc. disclaim all warranties, expressed or implied, - including, without limitation, the warranties of merchantability and of - fitness for any purpose. The Contributing Authors and Group 42, Inc. - assume no liability for direct, indirect, incidental, special, exemplary, - or consequential damages, which may result from the use of the PNG - Reference Library, even if advised of the possibility of such damage. - - Permission is hereby granted to use, copy, modify, and distribute this - source code, or portions hereof, for any purpose, without fee, subject - to the following restrictions: - - 1. The origin of this source code must not be misrepresented. - - 2. Altered versions must be plainly marked as such and - must not be misrepresented as being the original source. - - 3. This Copyright notice may not be removed or altered from - any source or altered source distribution. - - The Contributing Authors and Group 42, Inc. specifically permit, without - fee, and encourage the use of this source code as a component to - supporting the PNG file format in commercial products. If you use this - source code in a product, acknowledgment is not required but would be - appreciated. - - Copyright (C) 2004, 2006-2007 Glenn Randers-Pehrson - Copyright (C) 2000-2002 Glenn Randers-Pehrson - with the following additions to the disclaimer: - - There is no warranty against interference with your enjoyment of the - library or against infringement. There is no warranty that our - efforts or the library will fulfill any of your particular purposes - or needs. This library is provided with all faults, and the entire - risk of satisfactory quality, performance, accuracy, and effort is with - the user. - -# CAMERA ####################################################################### -kernel/kls_camera/dcraw.c - Copyright (C) 1997-2007 Dave Coffin <dcoffin@cybercom.net> - - No license is required to download and use dcraw.c. However, - to lawfully redistribute dcraw, you must either (a) offer, at - no extra charge, full source code* for all executable files - containing RESTRICTED functions, (b) distribute this code under - the GPL Version 2 or later, (c) remove all RESTRICTED functions, - re-implement them, or copy them from an earlier, unrestricted - Revision of dcraw.c, or (d) purchase a license from the author. - -# ADMIN ######################################################################## -Various files in the admin directory are also covered by the GNU LGP (as above). - -The file admin/am_edit is licensed under the following terms: - - "This is really free software, unencumbered by the GPL. - You can do anything you like with it except sueing me." - - -The Debian packaging is (C) 2007, Harald Sitter <apachelogger@ubuntu.com> and -is licensed under the GPL version 2, or (at your option) -any later version, see `/usr/share/common-licenses/GPL'. diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/libksquirrel-kde3-dev.install b/ubuntu/lucid_automake/libraries/libksquirrel/debian/libksquirrel-kde3-dev.install deleted file mode 100644 index 9ea1b54ac..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/libksquirrel-kde3-dev.install +++ /dev/null @@ -1,5 +0,0 @@ -debian/tmp/opt/kde3/include/* -debian/tmp/opt/kde3/lib/lib*.so -debian/tmp/opt/kde3/lib/ksquirrel-libs/libkls*.so -debian/tmp/opt/kde3/lib/pkgconfig/* -debian/tmp/opt/kde3/share/doc/ksquirrel-libs/* diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/libksquirrel-tools-kde3.install b/ubuntu/lucid_automake/libraries/libksquirrel/debian/libksquirrel-tools-kde3.install deleted file mode 100644 index ef1a9f263..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/libksquirrel-tools-kde3.install +++ /dev/null @@ -1 +0,0 @@ -debian/tmp/opt/kde3/bin/* diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/libksquirrel0-kde3.install b/ubuntu/lucid_automake/libraries/libksquirrel/debian/libksquirrel0-kde3.install deleted file mode 100644 index 52db8e080..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/libksquirrel0-kde3.install +++ /dev/null @@ -1,5 +0,0 @@ -debian/tmp/opt/kde3/lib/libksquirrel-libs*.so.*.* -debian/tmp/opt/kde3/lib/libksquirrel-libs*.so.0 -debian/tmp/opt/kde3/lib/ksquirrel-libs/libkls*.so.*.* -debian/tmp/opt/kde3/lib/ksquirrel-libs/libkls*.so.0 -debian/tmp/opt/kde3/share/ksquirrel-libs/* diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-camera2ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-camera2ppm.1 deleted file mode 100644 index 7e2d1f51a..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-camera2ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-camera2ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-camera2ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-camera2ppm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-dcraw.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-dcraw.1 deleted file mode 100644 index 1a3bbf21b..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-dcraw.1 +++ /dev/null @@ -1,113 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-dicom2png 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-dicom2png -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-dicom2png [OPTION]... [FILE]... -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH OPTIONS -.TP -.B \-v -Print verbose messages -.TP -.B \-c -Write image data to standard output -.TP -.B \-e -Extract embedded thumbnail image -.TP -.B \-i -Identify files without decoding them -.TP -.B \-i -v -Identify files and show metadata -.TP -.B \-z -Change file dates to camera timestamp -.TP -.B \-w -Use camera white balance, if possible -.TP -.B \-a -Average the whole image for white balance -.TP -.B \-A <x y w h> -Average a grey box for white balance -.TP -.B \-r <r g b g> -Set custom white balance -.TP -.B \+M\/\-M -Use/don't use an embedded color matrix -.TP -.B \-C <r b> -Correct chromatic aberration -.TP -.B \-b <num> -Adjust brightness (default = 1.0) -.TP -.B \-n <num> -Set threshold for wavelet denoising -.TP -.B \-k <num> -Set black point -.TP -.B \-K <file> -Subtract dark frame (16-bit raw PGM) -.TP -.B \-H [0-9] -Highlight mode (0=clip, 1=unclip, 2=blend, 3+=rebuild) -.TP -.B \-t [0-7] -Flip image (0=none, 3=180, 5=90CCW, 6=90CW) -.TP -.B \-o [0-5] -Output colorspace (raw,sRGB,Adobe,Wide,ProPhoto,XYZ) -.TP -.B \-o <file> -Apply output ICC profile from file -.TP -.B \-p <file> -Apply camera ICC profile from file or "embed" -.TP -.B \-d -Document mode (no color, no interpolation) -.TP -.B \-D -Document mode without scaling (totally raw) -.TP -.B \-j -Don't stretch or rotate raw pixels -.TP -.B \-q [0-3] -Set the interpolation quality -.TP -.B \-h -Half-size color image (twice as fast as "-q 0") -.TP -.B \-f -Interpolate RGGB as four colors -.TP -.B \-m <num> -Apply a 3x3 median filter to R-G and B-G -.TP -.B \-s [0..N-1] -Select one raw image or "all" from each file -.TP -.B \-4 -Write 16-bit linear instead of 8-bit with gamma -.TP -.B \-T -Write TIFF instead of PPM -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-dicom2png.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-dicom2png.1 deleted file mode 100644 index 70ffeaba4..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-dicom2png.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-dicom2png 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-dicom2png -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-dicom2png -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-fig2ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-fig2ppm.1 deleted file mode 100644 index 39d40f617..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-fig2ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-fig2ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-fig2ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-fig2ppm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-iff2ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-iff2ppm.1 deleted file mode 100644 index 5d2d12f97..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-iff2ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-iff2ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-iff2ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-iff2ppm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-leaf2ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-leaf2ppm.1 deleted file mode 100644 index 7989b931d..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-leaf2ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-leaf2ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-leaf2ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-leaf2ppm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-ljpeg2ppm-s.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-ljpeg2ppm-s.1 deleted file mode 100644 index c22e1b1ca..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-ljpeg2ppm-s.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-ljpeg2ppm-s 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-ljpeg2ppm-s -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-ljpeg2ppm-s -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-ljpeg2ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-ljpeg2ppm.1 deleted file mode 100644 index cdcd29103..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-ljpeg2ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-ljpeg2ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-ljpeg2ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-ljpeg2ppm [ -v -h ] [ inFile [outFile] ] -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-mac2ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-mac2ppm.1 deleted file mode 100644 index 1baa68857..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-mac2ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-mac2ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-mac2ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-mac2ppm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-neo2ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-neo2ppm.1 deleted file mode 100644 index 3b773a333..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-neo2ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-neo2ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-neo2ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-neo2ppm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-pi12ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-pi12ppm.1 deleted file mode 100644 index 8cef76aa1..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-pi12ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-pi12ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-pi12ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-pi12ppm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-pi32ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-pi32ppm.1 deleted file mode 100644 index d987c72af..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-pi32ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-pi32ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-pi32ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-pi32ppm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-svg2png.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-svg2png.1 deleted file mode 100644 index 6ab3027f3..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-svg2png.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-svg2png 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-svg2png -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-svg2png -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-ttf2pnm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-ttf2pnm.1 deleted file mode 100644 index 1747e353f..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-ttf2pnm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-ttf2pnm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-ttf2pnm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-ttf2pnm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-utah2ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-utah2ppm.1 deleted file mode 100644 index d99666ea6..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-utah2ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-utah2ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-utah2ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-utah2ppm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-xcf2pnm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-xcf2pnm.1 deleted file mode 100644 index 604f91878..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-xcf2pnm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-xcf2pnm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-xcf2pnm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-xcf2pnm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-xim2ppm.1 b/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-xim2ppm.1 deleted file mode 100644 index 3eb2571ae..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/mans/ksquirrel-libs-xim2ppm.1 +++ /dev/null @@ -1,19 +0,0 @@ -.\" This file was written by Harald Sitter <apachelogger@ubuntu.com> -.TH ksquirrel-libs-xim2ppm 1 "Jan 2008" "Dmitry Baryshev" "Backend script used by KSquirrel" -.SH NAME -ksquirrel-libs-xim2ppm -\- backend script used by KSquirrel -.SH SYNOPSIS -ksquirrel-libs-xim2ppm -.SH DESCRIPTION -Backend script used by KSquirrel - Homepage: http://ksquirrel.sourceforge.net -.SH AUTHORS -.nf -Dmitry Baryshev <ksquirrel@tut.by> -.br -.SH OTHER -.nf -This manual page was written by Harald Sitter <apachelogger@ubuntu.com> for the Kubuntu -system (but may be used by others). -.br diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/patches/.gitignore b/ubuntu/lucid_automake/libraries/libksquirrel/debian/patches/.gitignore deleted file mode 100644 index e69de29bb..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/patches/.gitignore +++ /dev/null diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/rules b/ubuntu/lucid_automake/libraries/libksquirrel/debian/rules deleted file mode 100755 index eb2e91d1a..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/rules +++ /dev/null @@ -1,123 +0,0 @@ -#!/usr/bin/make -f -# -*- makefile -*- -# Sample debian/rules that uses debhelper. -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -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) - -# These are used for cross-compiling and for saving the configure script -# from having to guess our platform (since we know it already) -DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) -DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) - - -config.status: patch configure - dh_testdir - - ! [ -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 - - # Add here commands to configure the package. -ifneq "$(wildcard /usr/share/misc/config.sub)" "" - cp -f /usr/share/misc/config.sub config.sub -endif -ifneq "$(wildcard /usr/share/misc/config.guess)" "" - cp -f /usr/share/misc/config.guess config.guess -endif - ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/opt/kde3 --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" --disable-rpath -# Tricks for Intrepid -#--disable-kexif --enable-mt --x-includes=/usr/include/qt4/Qt - -build: build-stamp - -build-stamp: config.status - dh_testdir - - # Add here commands to compile the package. - $(MAKE) - #docbook-to-man debian/ksquirrel.sgml > ksquirrel.1 - - touch $@ - -clean: clean-patched unpatch - -clean-patched: - dh_testdir - dh_testroot - rm -f build-stamp - - ! [ -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 - - # Add here commands to clean up after the build process. - [ ! -f Makefile ] || $(MAKE) distclean - rm -f config.sub config.guess - - dh_clean - -patch: patch-stamp - -patch-stamp: - dpatch apply-all - dpatch cat-all >patch-stamp - -unpatch: - dpatch deapply-all - rm -rf patch-stamp debian/patched - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/ksquirrel. - $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install - - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs ChangeLog - dh_installdocs - dh_installexamples - dh_install - dh_strip - dh_compress - dh_fixperms - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ubuntu/lucid_automake/libraries/libksquirrel/debian/watch b/ubuntu/lucid_automake/libraries/libksquirrel/debian/watch deleted file mode 100644 index d9b799728..000000000 --- a/ubuntu/lucid_automake/libraries/libksquirrel/debian/watch +++ /dev/null @@ -1,2 +0,0 @@ -version=3 -http://sf.net/ksquirrel/ksquirrel-libs-(.+).tar.bz2 diff --git a/ubuntu/lucid_automake/libraries/mlt++/debian/README.Debian b/ubuntu/lucid_automake/libraries/mlt++/debian/README.Debian deleted file mode 100644 index 3afa8664c..000000000 --- a/ubuntu/lucid_automake/libraries/mlt++/debian/README.Debian +++ /dev/null @@ -1,6 +0,0 @@ -mlt++ for Debian ----------------- - -The experimental SWIG bindings are not yet packaged. - - -- Arnaud Quette <aquette@debian.org>, Thu, 17 Nov 2005 21:52:28 +0100 diff --git a/ubuntu/lucid_automake/libraries/mlt++/debian/changelog b/ubuntu/lucid_automake/libraries/mlt++/debian/changelog deleted file mode 100644 index 725e66608..000000000 --- a/ubuntu/lucid_automake/libraries/mlt++/debian/changelog +++ /dev/null @@ -1,121 +0,0 @@ -mlt++-kde3 (0.2.5~svn20071228-0.0ubuntu5) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600 - -mlt++-kde3 (0.2.5~svn20071228-0.0ubuntu4) intrepid; urgency=low - - * Moved KDE3 to /opt/kde3 - * Integrated properly with KDE4.2+ - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Fri, 06 March 2009 01:35:00 -0600 - -mlt++-kde3 (0.2.5~svn20071228-0.0ubuntu2) intrepid; urgency=low - - * Added -kde3 suffix - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 16 Dec 2008 17:59:00 -0600 - -mlt++ (0.2.5~svn20071228-0.0ubuntu1) hardy; urgency=low - - * Merge from debian-multimedia. Remaining changes: - - Modify Maintainer value to match the DebianMaintainerField specification. - - Remove useless conflicts/replaces for libmlt++-dev - - Bump compat to 5 - - debian/copyright: The license is actually LGPL, not GPL - - Repackaged orig tarball to ship a copy of the LGPL - * Use 0.2.5~svn as version to be >> at the current ubuntu version - - -- Albin Tonnerre <lutin@ubuntu.com> Wed, 30 Jan 2008 16:22:16 +0100 - -mlt++ (0.2.2.svn20071228-0.0) unstable; urgency=low - - * SVN release. - - -- Christian Marillat <marillat@debian.org> Fri, 28 Dec 2007 17:15:36 +0100 - -mlt++ (0.2.4~svn1024-0ubuntu2) gutsy; urgency=low - - * debian/rules: Modify the shlibs dependancy to (>= 0.2.4~) rather than - (>= 0.2.4), which would make packages using mlt++ uninstallable - - -- Albin Tonnerre <lut1n.tne@gmail.com> Wed, 22 Aug 2007 17:48:35 +0200 - -mlt++ (0.2.4~svn1024-0ubuntu1) gutsy; urgency=low - - * New Upstream SVN snapshot - * debian/control: libmlt++0.2.3 is now libmlt++0.2.4, which Replaces: - libmlt++0.2.3 - - -- Albin Tonnerre <lut1n.tne@gmail.com> Tue, 14 Aug 2007 22:33:18 +0200 - -mlt++ (0.2.2+cvs20070331-0.3) unstable; urgency=low - - * libmlt++-dev: update libmlt-dev dependency to 0.2.4 - - -- Christian Marillat <marillat@debian.org> Sun, 12 Aug 2007 13:19:04 +0200 - -mlt++ (0.2.2+cvs20070331-0.2ubuntu1) gutsy; urgency=low - - * Initial Release in Ubuntu - * debian/control: - - Lower the dependancy on libmlt0.2.3 to (>= 0.2.3) - - ${Source-Version} -> ${binary:Version} for libmlt++-dev - - Remove useless conflicts/replaces for libmlt++-dev - - Modify Maintainer value to match the DebianMaintainerField specification. - - Add a space before the 'Homepage' field - * debian/compat: Bump compat to 5 - * debian/rules: -$(MAKE) clean -> [ ! -f Makefile ] || $(MAKE) clean - * debian/copyright: The license is actually LGPL, not GPL - * Repackaged orig tarball to ship a copy of the LGPL - - -- Albin Tonnerre <lut1n.tne@gmail.com> Thu, 09 Aug 2007 19:59:47 +0200 - -mlt++ (0.2.2+cvs20070331-0.2) unstable; urgency=low - - * Add a version to libmlt-dev (0.2.3-0.2) dependency and build-dependency. - - -- Christian Marillat <marillat@debian.org> Sat, 19 May 2007 16:55:15 +0200 - -mlt++ (0.2.2+cvs20070331-0.1) unstable; urgency=low - - * Need to Build-depends on the latest libmlt-dev 0.2.2+cvs20070331-0.2 - - -- Christian Marillat <marillat@debian.org> Sat, 31 Mar 2007 17:31:20 +0200 - -mlt++ (0.2.2+cvs20070331-0.0) unstable; urgency=low - - * New cvs release. - - -- Christian Marillat <marillat@debian.org> Sat, 31 Mar 2007 16:20:19 +0200 - -mlt++ (0.2.2+cvs20061009-0.0) unstable; urgency=low - - * New cvs release. - - -- Christian Marillat <marillat@debian.org> Sat, 14 Oct 2006 17:07:03 +0200 - -mlt++ (0.2.2-0.2) unstable; urgency=low - - * debian/control Architecture: is now any. - - -- Christian Marillat <marillat@debian.org> Mon, 2 Oct 2006 19:42:09 +0200 - -mlt++ (0.2.2-0.1) unstable; urgency=low - - * libmlt++-dev need to dependson libmlt0-dev - - -- Christian Marillat <marillat@debian.org> Thu, 8 Jun 2006 16:53:29 +0200 - -mlt++ (0.2.2-0.0) unstable; urgency=low - - * New upstream release - - -- Christian Marillat <marillat@debian.org> Thu, 8 Jun 2006 16:23:27 +0200 - -mlt++ (0.2.0-1) unstable; urgency=low - - * Initial release (Closes: #339796). - - -- Christian Marillat <marillat@debian.org> Mon, 24 Apr 2006 17:39:16 +0200 diff --git a/ubuntu/lucid_automake/libraries/mlt++/debian/compat b/ubuntu/lucid_automake/libraries/mlt++/debian/compat deleted file mode 100644 index 7ed6ff82d..000000000 --- a/ubuntu/lucid_automake/libraries/mlt++/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/ubuntu/lucid_automake/libraries/mlt++/debian/control b/ubuntu/lucid_automake/libraries/mlt++/debian/control deleted file mode 100644 index d4394f5b0..000000000 --- a/ubuntu/lucid_automake/libraries/mlt++/debian/control +++ /dev/null @@ -1,42 +0,0 @@ -Source: mlt++-kde3 -Priority: optional -Section: libs -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: Christian Marillat <marillat@debian.org> -Homepage: http://www.dennedy.org/mlt/twiki/bin/view/MLT/WebHome -Standards-Version: 3.8.3 -Build-Depends: debhelper (>= 5), libmlt-kde3-dev (>= 0.2.4.svn20071228), autoconf, automake - -Package: libmlt++0.2.5-kde3 -Architecture: any -Depends: ${shlibs:Depends} -Provides: libmlt++-kde3 -Description: An open source multimedia framework (C++ wrapper) [KDE3] - MLT is an open source multimedia framework, designed and developed for - television broadcasting. It provides a toolkit for broadcasters, video - editors, media players, transcoders, web streamers and many more types of - applications. The functionality of the system is provided via an assortment - of ready to use tools, xml authoring components, and an extendible plug-in - based API. - . - This MLT sub-project provides a C++ wrapping for the MLT library. - . - This package contains the core MLT++ library files, needed by applications - such as the Jahshaka video editor. - -Package: libmlt++-kde3-dev -Section: libdevel -Architecture: any -Depends: libmlt++0.2.5-kde3 (= ${binary:Version}), libmlt-kde3-dev (>= 0.2.4.svn20071228) -Description: An open source multimedia framework (C++ wrapper) [KDE3] - MLT is an open source multimedia framework, designed and developed for - television broadcasting. It provides a toolkit for broadcasters, video - editors, media players, transcoders, web streamers and many more types of - applications. The functionality of the system is provided via an assortment - of ready to use tools, xml authoring components, and an extendible plug-in - based API. - . - This MLT sub-project provides a C++ wrapping for the MLT library. - . - This package contains the MLT++ development files, needed when compiling - applications such as the Jahshaka video editor. diff --git a/ubuntu/lucid_automake/libraries/mlt++/debian/copyright b/ubuntu/lucid_automake/libraries/mlt++/debian/copyright deleted file mode 100644 index 974ccd34b..000000000 --- a/ubuntu/lucid_automake/libraries/mlt++/debian/copyright +++ /dev/null @@ -1,27 +0,0 @@ -This package was debianized by Arnaud Quette <aquette@debian.org> on -Tue, 15 Nov 2005 22:27:13 +0100. - -It was downloaded from http://sourceforge.net/projects/mlt/ - -Copyright Holder: - -(C) 2004-2005 Charles Yates <charles.yates@pandora.be> - -License: - - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2 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 - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser 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 Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL'. diff --git a/ubuntu/lucid_automake/libraries/mlt++/debian/libmlt++-kde3-dev.files b/ubuntu/lucid_automake/libraries/mlt++/debian/libmlt++-kde3-dev.files deleted file mode 100644 index 0eb9ef3e1..000000000 --- a/ubuntu/lucid_automake/libraries/mlt++/debian/libmlt++-kde3-dev.files +++ /dev/null @@ -1,2 +0,0 @@ -usr/include -usr/kde3/lib/libmlt++.so diff --git a/ubuntu/lucid_automake/libraries/mlt++/debian/rules b/ubuntu/lucid_automake/libraries/mlt++/debian/rules deleted file mode 100755 index f16e3b0e3..000000000 --- a/ubuntu/lucid_automake/libraries/mlt++/debian/rules +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/make -f - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -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) - -version := $(shell sed -n 's/Package: \(.*\)/\1/p' debian/control | head -n 1) - -DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) -DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) - -CFLAGS = -Wall -g - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif - -configure: configure-stamp -configure-stamp: - dh_testdir - - CFLAGS="$(CFLAGS)" PATH=/opt/kde3/bin:$(PATH) ./configure --prefix=/opt/kde3 --disable-static - - touch $@ - -build: build-stamp -build-stamp: configure-stamp - dh_testdir - - env PATH=/opt/kde3/bin:$(PATH) $(MAKE) - - touch $@ - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - - [ ! -f Makefile ] || $(MAKE) clean - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs -A opt/kde3/include/mlt++ opt/kde3/lib - - env PATH=/opt/kde3/bin:$(PATH) $(MAKE) install DESTDIR=$(CURDIR)/debian/${version} - - mkdir -p debian/libmlt++-kde3-dev/opt/kde3/lib - mkdir -p debian/libmlt++0.2.5-kde3/opt/kde3 - - mv debian/${version}/opt/kde3/include/mlt++/* \ - debian/libmlt++-kde3-dev/opt/kde3/include/mlt++ - - mv debian/${version}/opt/kde3/lib/libmlt++.so \ - debian/libmlt++-kde3-dev/opt/kde3/lib - -# Prune empty directories - find debian -type d | xargs rmdir -p --ignore-fail-on-non-empty - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installman - dh_link - dh_strip - dh_compress - dh_fixperms - dh_makeshlibs -V 'libmlt++0.2.5-kde3 (>= 0.2.5~svn20071228)' - dh_installdeb - dh_shlibdeps -l/opt/kde3/lib - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ubuntu/lucid_automake/libraries/mlt++/debian/watch b/ubuntu/lucid_automake/libraries/mlt++/debian/watch deleted file mode 100644 index 1349d4e90..000000000 --- a/ubuntu/lucid_automake/libraries/mlt++/debian/watch +++ /dev/null @@ -1,3 +0,0 @@ -version=3 - -http://sf.net/mlt/mlt\+\+-(.*).tar.gz diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/changelog b/ubuntu/lucid_automake/libraries/mlt/debian/changelog deleted file mode 100644 index ec068a8d6..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/changelog +++ /dev/null @@ -1,170 +0,0 @@ -mlt-kde3 (0.2.4.svn20071228-0.0ubuntu5) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600 - -mlt-kde3 (0.2.4.svn20071228-0.0ubuntu4) intrepid; urgency=low - - * Moved KDE3 to /opt/kde3 - * Integrated properly with KDE4.2+ - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Fri, 06 March 2009 01:35:00 -0600 - -mlt-kde3 (0.2.4.svn20071228-0.0ubuntu2) intrepid; urgency=low - - * Added -kde3 suffix - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 16 Dec 2008 16:15:00 -0600 - -mlt (0.2.4.svn20071228-0.0ubuntu4) intrepid; urgency=low - - * debian/patches/missing_declarations.patch: include string.h and - stdlib.h where needed to fix a build failure due to undeclared - functions. LP: #264613. - - -- Steve Langasek <steve.langasek@ubuntu.com> Wed, 24 Sep 2008 15:19:14 +0000 - -mlt (0.2.4.svn20071228-0.0ubuntu3) intrepid; urgency=low - - * No-change rebuild against libavformat52 and libavcodec51. - - -- Steve Langasek <steve.langasek@ubuntu.com> Wed, 24 Sep 2008 09:52:46 +0000 - -mlt (0.2.4.svn20071228-0.0ubuntu2) hardy; urgency=low - - [ Murat Güneş ] - * Fixed typos in libvalerie and libmiracle descriptions (LP: #188440) - - [ Albin Tonnerre ] - * Sigh - - -- Murat Güneş <mgunes@ubuntu.com> Sun, 03 Feb 2008 04:03:15 +0200 - -mlt (0.2.4.svn20071228-0.0ubuntu1) hardy; urgency=low - - * Resync the package with debian-multimedia - * debian/copyright: Add copyright informations - * debian/control, *.install: Split the libraries in 3 different packages - * debian/rules - - Add shlibs informations for the other library packages - - Remove --disable ffmpeg and --disable-sox from configure flags - - Use dh_install instead of dh_movefiles, and install in debian/tmp - * debian/control - - Build-Depend on libsox-dev - - Remove the 'cvs' suffix from dependencies lib{avformat,avutil,swscale}cvs - so that we can use the libs actually in ubuntu - - Conflict/Replace the previous ubuntu versions as needed - * Add a manpage for libmlt-dev - * patches/02_path.dpatch: edit: still install the feeds files in /usr/share - - -- Albin Tonnerre <lutin@ubuntu.com> Wed, 30 Jan 2008 15:13:32 +0100 - -mlt (0.2.4.svn20071228-0.0) unstable; urgency=low - - * New svn release. - * Replace libqt3-mt-dev by kdelibs4-dev in Build-Depends. - * Install modules in /usr/lib instead of /usr/share - - -- Christian Marillat <marillat@debian.org> Sat, 29 Dec 2007 17:12:24 +0100 - -mlt (0.2.4-0.1) unstable; urgency=low - - * Add a Replaces and Conflicts libmlt - - -- Christian Marillat <marillat@debian.org> Sun, 12 Aug 2007 13:13:24 +0200 - -mlt (0.2.4-0.0) unstable; urgency=low - - * New upstream release. - - -- Christian Marillat <marillat@debian.org> Tue, 07 Aug 2007 11:31:44 +0200 - -mlt (0.2.3-0.4) unstable; urgency=low - - * Rebuild against the latest libquicktime-dev package. - - -- Christian Marillat <marillat@debian.org> Fri, 20 Jul 2007 09:53:04 +0200 - -mlt (0.2.3-0.3) unstable; urgency=low - - * Rebuild against the latest flac-dev package. - - -- Christian Marillat <marillat@debian.org> Sun, 15 Jul 2007 08:37:32 +0200 - -mlt (0.2.3-0.2) unstable; urgency=low - - * Move mlt-config in the -dev package. - - -- Christian Marillat <marillat@debian.org> Fri, 18 May 2007 15:30:57 +0200 - -mlt (0.2.3-0.1) unstable; urgency=low - - * Build with --enable-motion-est only for amd64 and i386 arch. - - -- Christian Marillat <marillat@debian.org> Thu, 26 Apr 2007 10:43:16 +0200 - -mlt (0.2.3-0.0) unstable; urgency=low - - * New upstream release. - - -- Christian Marillat <marillat@debian.org> Wed, 25 Apr 2007 22:47:26 +0200 - -mlt (0.2.2+cvs20070331-0.2) unstable; urgency=low - - * libmlt0.2.3 should replaces/conflicts libmlt0 (last uplaod ?). - - -- Christian Marillat <marillat@debian.org> Sat, 31 Mar 2007 16:54:01 +0200 - -mlt (0.2.2+cvs20070331-0.1) unstable; urgency=low - - * Bad idea to move libraries from /usr/share to /usr/lib - - -- Christian Marillat <marillat@debian.org> Sat, 31 Mar 2007 16:36:40 +0200 - -mlt (0.2.2+cvs20070331-0.0) unstable; urgency=low - - * New CVS release. - * Build with --avformat-swscale and add libswscalecvs0-dev in Build-Depends. - - -- Christian Marillat <marillat@debian.org> Sat, 31 Mar 2007 14:19:50 +0200 - -mlt (0.2.2+cvs20070201-0.1) unstable; urgency=low - - * libmlt0 need to depends on ffmpeg. - - -- Christian Marillat <marillat@debian.org> Fri, 2 Mar 2007 18:32:49 +0100 - -mlt (0.2.2+cvs20070201-0.0) unstable; urgency=low - - * new cvs release. - * Add libavformatcvs51-dev in Build-depends. - - -- Christian Marillat <marillat@debian.org> Thu, 1 Feb 2007 09:47:01 +0100 - -mlt (0.2.2+cvs20061009-0.1) unstable; urgency=low - - * Build all archs with --disable-sox except i386 (See bug #390715). - - -- Christian Marillat <marillat@debian.org> Fri, 20 Oct 2006 22:54:45 +0200 - -mlt (0.2.2+cvs20061009-0.0) unstable; urgency=low - - * New CVS release. - * Build the amd4 packages with --enable-motion-est - - -- Christian Marillat <marillat@debian.org> Mon, 9 Oct 2006 10:05:43 +0200 - -mlt (0.2.2-0.2) unstable; urgency=low - - * debian/control Architecture: is now any. - * Build the amd64 package with --disable-sox and without --enable-motion-est. - - -- Christian Marillat <marillat@debian.org> Mon, 2 Oct 2006 19:27:57 +0200 - -mlt (0.2.2-0.1) unstable; urgency=low - - * New upload to my repository. - * This package is for i386 only. - - -- Christian Marillat <marillat@debian.org> Sat, 5 Aug 2006 10:33:05 +0200 diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/compat b/ubuntu/lucid_automake/libraries/mlt/debian/compat deleted file mode 100644 index 7ed6ff82d..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/control b/ubuntu/lucid_automake/libraries/mlt/debian/control deleted file mode 100644 index 6232efe94..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/control +++ /dev/null @@ -1,71 +0,0 @@ -Source: mlt-kde3 -Priority: optional -Section: libs -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: Maintainer: Christian Marillat <marillat@debian.org> -Homepage: http://mlt.sourceforge.net/ -Standards-Version: 3.8.3 -Build-Depends: debhelper (>= 5), libdv4-dev, libquicktime-dev (>= 2:1.0.0), - libvorbis-dev, libsdl-dev | libsdl1.2-dev, libgtk2.0-dev, libjack-dev, quilt, - libsamplerate-dev, libmad0-dev, kdelibs4-kde3-dev, imagemagick, ffmpeg, libflac-dev, - libavcodec-dev, libxml2-dev, ladspa-sdk, libavutil-dev, libxcursor-dev, - libxinerama-dev, libxrandr-dev, libxrender-dev, libavformat-dev, - libswscale-dev, libasound2-dev, libsox-dev - -Package: libmlt0.2.5-kde3 -Architecture: any -Depends: ${shlibs:Depends}, libmlt-data -Provides: libmlt-kde3 -Description: An open source multimedia framework - Core files [KDE3] - MLT is an open source multimedia framework, designed and developed for - television broadcasting. It provides a toolkit for broadcasters, video - editors, media players, transcoders, web streamers and many more types of - applications. The functionality of the system is provided via an assortment - of ready to use tools, xml authoring components, and an extendible plug-in - based API. - . - This package contains the core MLT library files, needed by applications - such as the Jahshaka video editor. - -Package: libmiracle0.2.5-kde3 -Architecture: any -Depends: ${shlibs:Depends}, libmlt0.2.5-kde3 (= ${binary:Version}), libvalerie0.2.5-kde3 (= ${binary:Version}) -Description: An open source multimedia framework - Core files [KDE3] - MLT is an open source multimedia framework, designed and developed for - television broadcasting. It provides a toolkit for broadcasters, video - editors, media players, transcoders, web streamers and many more types of - applications. The functionality of the system is provided via an assortment - of ready to use tools, xml authoring components, and an extendible plug-in - based API. - . - This package contains the Miracle Control Protocol (DVCP) library. - -Package: libvalerie0.2.5-kde3 -Architecture: any -Depends: ${shlibs:Depends}, libmlt0.2.5-kde3 (= ${binary:Version}), libmiracle0.2.5-kde3 (= ${binary:Version}) -Description: An open source multimedia framework - Core files [KDE3] - MLT is an open source multimedia framework, designed and developed for - television broadcasting. It provides a toolkit for broadcasters, video - editors, media players, transcoders, web streamers and many more types of - applications. The functionality of the system is provided via an assortment - of ready to use tools, xml authoring components, and an extendible plug-in - based API. - . - This package contains the valerie library, which provides a high level - parser wrapper to simplify the usage of the miracle library. - -Package: libmlt-kde3-dev -Section: libdevel -Architecture: any -Depends: libmlt0.2.5-kde3 (= ${binary:Version}), libmiracle0.2.5-kde3 (= ${binary:Version}), libvalerie0.2.5-kde3 (= ${binary:Version}) -Provides: libmiracle-kde3-dev, libvalerie-kde3-dev -Description: An open source multimedia framework - Development files [KDE3] - MLT is an open source multimedia framework, designed and developed for - television broadcasting. It provides a toolkit for broadcasters, video - editors, media players, transcoders, web streamers and many more types of - applications. The functionality of the system is provided via an assortment - of ready to use tools, xml authoring components, and an extendible plug-in - based API. - . - This package contains the MLT development files, needed when compiling - applications such as the Jahshaka video editor. diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/copyright b/ubuntu/lucid_automake/libraries/mlt/debian/copyright deleted file mode 100644 index a95008a7d..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/copyright +++ /dev/null @@ -1,98 +0,0 @@ -This package was debianized by Arnaud Quette <aquette@debian.org> on -Tue, 15 Nov 2005 22:27:13 +0100. - -It was downloaded from -http://sourceforge.net/project/showfiles.php?group_id=96039 - -Upstream Authors: Charles Yates <charles.yates@pandora.be> - Dan Dennedy <dan@dennedy.org> - -Copyright (C) 2003-2004 Charles Yates and Dan Dennedy - -License: - -MLT - - This program is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License as published by the Free Software - Foundation; either version 2 of the License, or (at your option) any later - version. - - This program is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - FOR A PARTICULAR PURPOSE. See the GNU General Public License for more - details. - - You should have received a copy of the GNU General Public License along with - this program; if not, write to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301, USA. - -================================================================================ -All files except those listed below: - Copyright (C) 2002 to 2006 Ushodaya Enterprises Limited - License: GPL, see above -================================================================================modules/core/producer_framebuffer.h - Copyright (C) 2006 Jean-Baptiste Mardelle <jb@ader.ch> - License: GPL, see above -================================================================================ -modules/avformat/mmx.h - Copyright (C) 1997-2001 H. Dietz and R. Fisher - License: GPL, see above -================================================================================ -modules/gtk2/pixops.c, modules/gtk2/pixops.h - Copyright (C) 1999 The Free Software Foundation - License: GPL, see above -================================================================================ -modules/jackrack/jack_rack.c, modules/jackrack/jack_rack.h, -modules/jackrack/lock_free_fifo.c, modules/jackrack/lock_free_fifo.h, -modules/jackrack/plugin.c, modules/jackrack/plugin.h, -modules/jackrack/plugin_desc.c, modules/jackrack/plugin_desc.h, -modules/jackrack/plugin_mgr.c, modules/jackrack/plugin_mgr.h, -modules/jackrack/plugin_settings.c, modules/jackrack/plugin_settings.h, -modules/jackrack/process.c, modules/jackrack/process.h - Copyright (C) Robert Ham 2002, 2003 (node@users.sourceforge.net) - License: GPL, see above -================================================================================ -modules/kino/avi.cc, modules/kino/avi.h, modules/kino/error.cc, -modules/kino/error.h, modules/kino/filehandler.cc, modules/kino/filehandler.h, -modules/kino/riff.cc, modules/kino/riff.h - Copyright (C) 2000 - 2002 Arne Schirmacher <arne@schirmacher.de> - License: GPL, see above -================================================================================ -modules/kino/endian_types.h - Copyright (c) 2003-2005 Daniel Kobras <kobras@debian.org> - License: GPL, see above -================================================================================ -modules/motion_est/arrow_code.c, modules/motion_est/arrow_code.h, -modules/motion_est/filter_autotrack_rectangle.c, -modules/motion_est/filter_crop_detect.c, modules/motion_est/filter_motion_est.c, -modules/motion_est/filter_motion_est.h, modules/motion_est/filter_vismv.c - Copyright (C) 2004 and/or 2005 Zachary Drew - License: GPL, see above -================================================================================ -modules/qimage/factory.c, modules/qimage/producer_qimage.h - Copyright (C) 2006 Visual Media - License: GPL, see above -================================================================================ -modules/sdl/producer_sdl_image.c, modules/sdl/producer_sdl_image.h, -modules/vmfx/factory.c, modules/vmfx/filter_chroma.c, -modules/vmfx/filter_chroma.h, modules/vmfx/filter_chroma_hold.c, -modules/vmfx/filter_chroma_hold.h, modules/vmfx/filter_mono.c, -modules/vmfx/filter_mono.h, modules/vmfx/filter_shape.c, -modules/vmfx/filter_shape.h, modules/vmfx/producer_pgm.c, -modules/vmfx/producer_pgm.h - Copyright (C) 2005 Visual Media FX - License: GPL, see above -================================================================================ -modules/xine/attributes.h, modules/xine/cpu_accel.c - Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca> - License: GPL, see above -================================================================================ -modules/xine/deinterlace.c, modules/xine/deinterlace.h, -modules/xine/xineutils.h - Copyright (C) 2000 to 2004 The xine project - License: GPL, see above -================================================================================ - -On Debian systems, the full text of the GNU General Public License -may be found in '/usr/share/common-licenses/GPL'. diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/libmiracle0.2.5-kde3.install b/ubuntu/lucid_automake/libraries/mlt/debian/libmiracle0.2.5-kde3.install deleted file mode 100644 index cf42ad8f6..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/libmiracle0.2.5-kde3.install +++ /dev/null @@ -1 +0,0 @@ -opt/kde3/lib/libmiracle.so.* diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/libmlt-dev.manpages b/ubuntu/lucid_automake/libraries/mlt/debian/libmlt-dev.manpages deleted file mode 100644 index fe9b9ccbb..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/libmlt-dev.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/mlt-config.1 diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/libmlt-kde3-dev.install b/ubuntu/lucid_automake/libraries/mlt/debian/libmlt-kde3-dev.install deleted file mode 100644 index 7aeb93fc4..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/libmlt-kde3-dev.install +++ /dev/null @@ -1,5 +0,0 @@ -opt/kde3/bin/mlt-config -/opt/kde3/include -opt/kde3/lib/pkgconfig -opt/kde3/lib/*.so -/opt/kde3/share/mlt/packages.dat diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/libmlt0.2.5-kde3.install b/ubuntu/lucid_automake/libraries/mlt/debian/libmlt0.2.5-kde3.install deleted file mode 100644 index b363796f0..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/libmlt0.2.5-kde3.install +++ /dev/null @@ -1,2 +0,0 @@ -opt/kde3/lib/libmlt.so.* -opt/kde3/lib/mlt/modules diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/libvalerie0.2.5-kde3.install b/ubuntu/lucid_automake/libraries/mlt/debian/libvalerie0.2.5-kde3.install deleted file mode 100644 index 1d906b638..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/libvalerie0.2.5-kde3.install +++ /dev/null @@ -1 +0,0 @@ -opt/kde3/lib/libvalerie.so.* diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/mlt-config.1 b/ubuntu/lucid_automake/libraries/mlt/debian/mlt-config.1 deleted file mode 100644 index 9e700d957..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/mlt-config.1 +++ /dev/null @@ -1,32 +0,0 @@ -.TH MLT 1 "January 17, 2007" -.SH NAME -mlt-config \- script to get information about the installed version of Mlt -.SH SYNOPSIS -.B mlt-config [ \-\-version ] | [ \-\-prefix=dir ] [ [ package ] [ \-\-cflags ] [ \-\-libs ] ] -.SH DESCRIPTION -\fImlt-config\fP is a tool that is used by configure to determine the -availability of mlt and the compiler and linker flags that should be used to -compile programs using it. -.SH OPTIONS -\fImlt-config\fP accepts the following options: -.TP -.B \-\-version -Print the currently installed version of \fMlt\fP on the standard output. -.TP -.B \-\-prefix=dir -Set the prefix mlt-config uses to find its configuration files -.TP -.B package -Print informations for the given package ( packages are: framework modules -inigo valerie miracle humperdink ) -.TP -.B \-\-libs -Print the linker flags that are necessary to link a \fMlt\fP\-program. -.TP -.B \-\-cflags -Print the compiler flags that are necessary to link a \fMlt\fP\-program. -.SH SEE ALSO -.BR Mlt (1). -.SH AUTHOR -This manual page was written by Albin Tonnerre <lut1n.tne@gmail.com> -for the Debian GNU/Linux system (but may be used by others). diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/patches/.gitignore b/ubuntu/lucid_automake/libraries/mlt/debian/patches/.gitignore deleted file mode 100644 index e69de29bb..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/patches/.gitignore +++ /dev/null diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/rules b/ubuntu/lucid_automake/libraries/mlt/debian/rules deleted file mode 100755 index 9bb8d7a03..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/rules +++ /dev/null @@ -1,120 +0,0 @@ -#!/usr/bin/make -f - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -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) - -version := $(shell sed -n 's/Package: \(.*\)/\1/p' debian/control | head -n 1) - -NCPUS := $(shell getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1) - -ifeq ($(NCPUS),-1) - NCPUS:=1 -endif - -ifeq ($(NCPUS),0) - NCPUS:=1 -endif - -DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) -DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) -DEBIAN_ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH) - -CFLAGS = -Wall -g - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif - -ifeq "$(DEBIAN_ARCH)" "i386" - CONFIGURE_OPTS = --enable-motion-est -endif -ifeq "$(DEBIAN_ARCH)" "amd64" - CONFIGURE_OPTS = --enable-motion-est -endif - -configure: configure-stamp -configure-stamp: - dh_testdir - - QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2 - - CFLAGS="$(CFLAGS)" PATH=/opt/kde3/bin:$(PATH) LD_LIBRARY_PATH=/opt/kde3/lib:$(LD_LIBRARY_PATH) CMAKE_LIBRARY_PATH=/opt/kde3/lib CMAKE_INCLUDE_PATH=/opt/kde3/include/tde ./configure --enable-gpl \ - --luma-compress --disable-mmx $(CONFIGURE_OPTS) \ - --avformat-shared=/usr --avformat-swscale \ - --prefix=/opt/kde3 --with-extra-libs=/opt/kde3/lib --with-extra-includes=/opt/kde3/include/tde - - touch configure-stamp - -build: configure-stamp build-stamp -build-stamp: - dh_testdir - - env PATH=/opt/kde3/bin:$(PATH) LD_LIBRARY_PATH=/opt/kde3/lib:$(LD_LIBRARY_PATH) CMAKE_LIBRARY_PATH=/opt/kde3/lib CMAKE_INCLUDE_PATH=/opt/kde3/include/tde $(MAKE) -j $(NCPUS) - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - - [ ! -f config.mak ] || $(MAKE) dist-clean - - QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2 - - dh_clean *.pc src/modules/gtk2/config.h config.log - - find -name config.mak | xargs -r rm - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs opt/kde3/lib/mlt0.2.5/modules opt/kde3/share/mlt0.2.5 - - env PATH=/opt/kde3/bin:$(PATH) LD_LIBRARY_PATH=/opt/kde3/lib:$(LD_LIBRARY_PATH) CMAKE_LIBRARY_PATH=/opt/kde3/lib CMAKE_INCLUDE_PATH=/opt/kde3/include/tde $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp - -# mkdir debian/tmp/opt/kde3 -# mv debian/tmp/opt/kde3/lib debian/tmp/opt/kde3/ -# mv debian/tmp/opt/kde3/bin debian/tmp//kde3/ - dh_install --sourcedir=debian/tmp - -# Prune empty directories - find debian -type d | xargs rmdir -p --ignore-fail-on-non-empty - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installdocs -plibmlt-kde3-dev docs/* - dh_installman - dh_link - dh_strip - dh_compress - dh_fixperms - dh_makeshlibs -plibmlt0.2.5-kde3 -V 'libmlt0.2.5-kde3 (>= 0.2.4.svn20071228)' - dh_makeshlibs -plibvalerie0.2.5-kde3 -V 'libvalerie0.2.5-kde3 (>= 0.2.4.svn20071228)' - dh_makeshlibs -plibmiracle0.2.5-kde3 -V 'libmiracle0.2.5-kde3 (>= 0.2.4.svn20071228)' - dh_installdeb - dh_shlibdeps --exclude=libmlt --exclude=libmiracle --exclude=libvalerie - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ubuntu/lucid_automake/libraries/mlt/debian/watch b/ubuntu/lucid_automake/libraries/mlt/debian/watch deleted file mode 100644 index 4dcc9e900..000000000 --- a/ubuntu/lucid_automake/libraries/mlt/debian/watch +++ /dev/null @@ -1,3 +0,0 @@ -version=3 - -http://sf.net/mlt/mlt-(.*).tar.gz diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/README.Debian b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/README.Debian deleted file mode 100644 index b0302c211..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/README.Debian +++ /dev/null @@ -1,107 +0,0 @@ -Debian kde-extras Team ----------------------- - -1. Contacts ------------ - -General help requests - <debian-kde@lists.debian.org> mailing list - #debian-kde on irc - -Packaging queries - <debian-qt-kde@lists.debian.org> mailing list - #debian-qt-kde on irc - -Maintainers - <pkg-kde-extras@lists.alioth.debian.org> mailing list - - -2. Subversion repository ------------------------- - -You can browse it only at: - -http://svn.debian.org/wsvn/pkg-kde/kde-extras/ - -To "checkout" the repository use these commands: - - $ svn co svn+ssh://${ALIOTH_USERNAME}@svn.debian.org/svn/pkg-kde/kde-extras - -Authorized SSH keys are controlled at https://alioth.debian.org/account/ - -The repository layout is: - -- packagename/ - - trunk/ - - branches/ - - tags/ - - 0.7.2-1/ - - 0.7.2-2/ - - 0.7.2-2ubuntu1/ - - 0.7.2-2ubuntu2/ - - 0.7.2-2ubuntu3/ - - 0.8.0/ - ... - -If only one version of the package is available at the time, development must -be made at trunk/ dir, copying the dir to tags/'pkg-version' each time a new -release is made. - -When, at some point, the need to have two different versions at the same time -arises (for example, if we need a version to be in unstable and a different one -to be in experimental), experimental development will be made in trunk/ and -if a new unstable package needs to be cooked, copying -tag/'latest_version_in_sid' to tag/'latest_version_in_sid'+1 will make the -trick. - -3. Using svn-buildpackage --------------------------- - -Packages with an upstream tarball will require you to set the mergeWithUpstream -property first (from the package root) so that svn-buildpackage will look for -the .orig.tar.gz in the ../tarballs directory. - - % svn propset mergeWithUpstream 1 debian - -Please note that this only works for packages which have only the debian/ -directory committed. Consequently, you must use CDBS's simple-patchsys.mk or -dpatch to modify the upstream sources. - -After you have finished and committed your Debian patches via - - % svn commit [PACKAGE] - -as well as copying the orig.tar.gz to ../tarballs/ if necessary, you may build -your package with the following commands: - - % svn-buildpackage --svn-ignore-new -rfakeroot - -Please, don't commit tarballs/ or build-area/ directories to SVN. - -4. Tarballs and Build-area directories ------------------------------------- - -During pkg development before uploaded to debian the tarballs can be found at: - - http://pkg-kde.alioth.debian.org/kde-extra/orig.tar.gz/ - -You need to place those dirs in the parent directory of the one from which you're -running svn-buildpackage. Usually this means placing tarballs/ and build-area/ dirs -in 'pkgname'/ dir, at the same level as trunk/ - -If you want to compile inside one version in tags/ dir, you'll need to place those -dirs inside that dir. Of course the easiest and cleanest way of doing it is -by making a symlink of those dirs inside tags/ dir. - -5. Using svn-inject -------------------- - -To inject a new package into the Debian KDE Extras svn archive you should use svn-inject(1) -as follows: - - svn-inject -o <package>.dsc svn+ssh://${ALIOTH_USERNAME}@svn.debian.org/svn/pkg-kde/kde-extras - -Type in your alioth password a few hundred times :-) and your package should be -uploaded to the archive. Note you will also need to manually copy the -package.orig.tar.gz to your tarballs directory. The -o option is important as -this ensures that we 'Only keep modified files under SVN control' diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/changelog b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/changelog deleted file mode 100644 index 9a5d57c27..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/changelog +++ /dev/null @@ -1,134 +0,0 @@ -pytdeextensions-kde3 (0.4.0-6ubuntu6) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600 - -pytdeextensions-kde3 (0.4.0-5ubuntu5) intrepid; urgency=low - - * Added -kde3 suffix - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 03 Dec 2008 21:38:00 -0600 - -pytdeextensions (0.4.0-5ubuntu3) hardy; urgency=low - - * Re-add libpythoniz0 dependency on python-dev to work around - libpythonize0 dlopening libpython2.5.so and not ...so.1 (LP: #179668) - - -- Scott Kitterman <scott@kitterman.com> Sat, 01 Mar 2008 11:15:08 -0500 - -pytdeextensions (0.4.0-5ubuntu2) hardy; urgency=low - - * debian/control: - - remove the python-all-dev dependency in libpythonize0 - - remove python2.5-dev dependency in libpythonize0-dev, this - gets pulled in via libpythonize0 - - -- Michael Vogt <michael.vogt@ubuntu.com> Mon, 17 Dec 2007 12:38:49 +0100 - -pytdeextensions (0.4.0-5ubuntu1) hardy; urgency=low - - * Merge with Debian, remaining changes: - - libpythonize0 depends on python2.5-dev, it tries to load .so file - - -- Jonathan Riddell <jriddell@ubuntu.com> Thu, 29 Nov 2007 17:59:47 +0000 - -pytdeextensions (0.4.0-5) unstable; urgency=low - - * Add python-qt-dev build dependency. - pyqtconfig moved from python-qt3 to python-qt-dev. (Closes: #439504) - * Build with python 2.4/2.5. (Closes: #424505, #445292) - * Revert previous pyversions. - * Revert python-all-dev build dependency. - * Replace 12_force_python2.4_script patch. - * Remove *.py[co] files. - * lintian cleanup: substvar-source-version-is-deprecated. - Use ${binary:Version}. - * Make pytdeextensions package arch all. - - -- Fathi Boudra <fboudra@free.fr> Sun, 07 Oct 2007 12:06:15 +0200 - -pytdeextensions (0.4.0-4ubuntu4) gutsy; urgency=low - - * Fix depends to python2.5-dev - - -- Jonathan Riddell <jriddell@ubuntu.com> Tue, 25 Sep 2007 18:48:45 +0100 - -pytdeextensions (0.4.0-4ubuntu3) gutsy; urgency=low - - * Add libpython2.5-dev as a depends for libpythonize0, it wants to - load libpython2.5.so, reverts change from previous upload, LP: #84689, - LP: #144815 - - -- Jonathan Riddell <jriddell@ubuntu.com> Tue, 25 Sep 2007 16:32:17 +0100 - -pytdeextensions (0.4.0-4ubuntu2) gutsy; urgency=low - - * Fix build failure, build-depend on python-qt-dev. - * Use the unversioned python interpreter for scripts. - * Don't include byte-compiled files. LP: #36733. - * libpythonize0: Remove dependency on python2.5-dev. LP: #84689. - - -- Matthias Klose <doko@ubuntu.com> Wed, 29 Aug 2007 20:48:25 +0000 - -pytdeextensions (0.4.0-4ubuntu1) gutsy; urgency=low - - * Merge with Debian, remaining changes: - - build on python 2.5 - - -- Jonathan Riddell <jriddell@ubuntu.com> Sun, 03 Jun 2007 13:51:42 +0100 - -pytdeextensions (0.4.0-4) unstable; urgency=low - - * Update pyversions. Force to build with python2.4 only. (Closes: #424505) - * Remove python-all-dev build dependency. Replaced by python-dev. - * Remove pycompat. Deprecated. - - -- Fathi Boudra <fboudra@free.fr> Wed, 16 May 2007 11:02:06 +0200 - -pytdeextensions (0.4.0-3ubuntu1) feisty; urgency=low - - * Force to build with python2.5. - * FIXME: The package is unlikely to work with python2.4; maybe - just drop the build dependency on python-all-dev. - - -- Matthias Klose <doko@ubuntu.com> Sun, 14 Jan 2007 16:42:27 +0000 - -pytdeextensions (0.4.0-3) unstable; urgency=low - - * Converted package to python-support - * Added pycompat and pyversions - * Force to use python2.4 (Closes: #375618) - * Added to Build-Depends: python-support, python-all-dev, - kdelibs4c2a (for kde-config) - * Updated libpythonize0-dev, libpythonize0, and pytdextensions install files - * Cleaned up rules - * Added 12_force_python2.4_script.diff to force python2.4 in scripts - - -- Fathi Boudra <fboudra@free.fr> Thu, 29 Jun 2006 15:41:39 +0200 - -pytdeextensions (0.4.0-2) unstable; urgency=low - - * Converted package to cdbs - * Added 2 patches (thanks to Jonathan Riddell) - * 10_qt_candidate_paths.diff - * 11_fix_get_libdir_name.diff (Closes: #357775) - * Updated control file - * Bumped debian policy version - - -- Fathi Boudra <fboudra@free.fr> Tue, 6 Jun 2006 08:56:40 +0200 - -pytdeextensions (0.4.0-1) unstable; urgency=low - - [ Fathi Boudra ] - * Initial Debian release Closes: #340141 - - [ Jonathan Riddell ] - * Add depends on python2.x-dev to libpythonize0 to bring in libpython2.x.so - - [ Mark Purcell ] - * Maintainer: Debian KDE Extras Team <pkg-kde- - extras@lists.alioth.debian.org> - - -- Mark Purcell <msp@debian.org> Tue, 28 Feb 2006 19:24:38 +0000 - diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/compat b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/compat deleted file mode 100644 index 7ed6ff82d..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/control b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/control deleted file mode 100644 index 14412fec1..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/control +++ /dev/null @@ -1,45 +0,0 @@ -Source: pytdeextensions-kde3 -Section: kde -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -Uploaders: Fathi Boudra <fboudra@free.fr>, Mark Purcell <msp@debian.org> -Build-Depends: cdbs, debhelper (>= 5), chrpath, quilt, kdelibs4c2a-kde3, libtool, - libxml2-utils, libxrandr-dev, libxxf86vm-dev, pyqt-tools, python-kde3-kde3, - python-qt-dev, python-sip4-dev, python-support (>= 0.6), python (>= 2.5), python-dev (>= 2.5) -Standards-Version: 3.8.3 - -Package: pytdeextensions-kde3 -Architecture: all -Depends: ${python:Depends} -Conflicts: pytdeextensions -Provides: ${python:Provides} -Description: Python packages to support KDE applications (scripts) [KDE3] - PyKDE Extensions is a collection of software and Python packages - to support the creation and installation of KDE applications. - . - Homepage: http://www.simonzone.com/software/pytdeextensions - -Package: libpythonize0-kde3-dev -Architecture: any -Section: libdevel -Depends: libpythonize0-kde3 (= ${binary:Version}), python-dev -Description: Python packages to support KDE applications (development) [KDE3] - PyKDE Extensions is a collection of software and Python packages - to support the creation and installation of KDE applications. - . - This package contains the libpythonize development files. - . - Homepage: http://www.simonzone.com/software/pytdeextensions - -Package: libpythonize0-kde3 -Architecture: any -Section: libs -Depends: ${shlibs:Depends}, ${misc:Depends} -Conflicts: libpythonize0 -Description: Python packages to support KDE applications (library) [KDE3] - PyKDE Extensions is a collection of software and Python packages - to support the creation and installation of KDE applications. - . - This package contains the libpythonize library files. - . - Homepage: http://www.simonzone.com/software/pytdeextensions diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/copyright b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/copyright deleted file mode 100644 index 9ed7bf6cd..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/copyright +++ /dev/null @@ -1,48 +0,0 @@ -This package was debianized by Fathi Boudra <fboudra@free.fr> on -Wed, 27 Jul 2005 20:19:26 +0200. - -It was downloaded from <http://www.simonzone.com/software/pytdeextensions> - -Application templates and pytde helper modules copyright: - Simon Edwards <simon@simonzone.com> - -License: - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Library 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 Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2'. - -libpythonize: Copyright 2003 Jim Bublitz <jbublitz@nwinternet.com> - -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/libraries/pytdeextensions/debian/docs b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/docs deleted file mode 100644 index e845566c0..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/docs +++ /dev/null @@ -1 +0,0 @@ -README diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/libpythonize0-kde3-dev.install b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/libpythonize0-kde3-dev.install deleted file mode 100644 index c1b3787e8..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/libpythonize0-kde3-dev.install +++ /dev/null @@ -1,4 +0,0 @@ -opt/kde3/include/tde/pythonize.h -opt/kde3/lib/libpythonize.a -opt/kde3/lib/libpythonize.la -opt/kde3/lib/libpythonize.so diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/libpythonize0-kde3.install b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/libpythonize0-kde3.install deleted file mode 100644 index 774c4fddf..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/libpythonize0-kde3.install +++ /dev/null @@ -1 +0,0 @@ -opt/kde3/lib/libpythonize.so.* diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/patches/.gitignore b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/patches/.gitignore deleted file mode 100644 index e69de29bb..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/patches/.gitignore +++ /dev/null diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pycompat b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pycompat deleted file mode 100644 index 0cfbf0888..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pycompat +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pytdeextensions-kde3.install b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pytdeextensions-kde3.install deleted file mode 100644 index 60b8f3085..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pytdeextensions-kde3.install +++ /dev/null @@ -1,7 +0,0 @@ -usr/lib/python*/dist-packages -opt/kde3/share/apps/pytdeextensions/AUTHORS -opt/kde3/share/apps/pytdeextensions/ChangeLog -opt/kde3/share/apps/pytdeextensions/INSTALL -opt/kde3/share/apps/pytdeextensions/NEWS -opt/kde3/share/apps/pytdeextensions/app_templates -opt/kde3/share/doc/kde/HTML/en/pytdeextensions diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pytdeextensions-kde3.lintian-overrides b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pytdeextensions-kde3.lintian-overrides deleted file mode 100644 index fdadfac78..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pytdeextensions-kde3.lintian-overrides +++ /dev/null @@ -1,10 +0,0 @@ -pytdeextensions: desktop-entry-contains-unknown-key ./usr/share/apps/pytdeextensions/app_templates/kcontrol_module/src/kcontrol_module.desktop:4 name[en_GB] -pytdeextensions: desktop-command-not-in-package ./usr/share/apps/pytdeextensions/app_templates/kcontrol_module/src/kcontrol_module.desktop tdecmshell -pytdeextensions: desktop-entry-invalid-category QT ./usr/share/apps/pytdeextensions/app_templates/kcontrol_module/src/kcontrol_module.desktop -pytdeextensions: desktop-entry-invalid-category X-KDE-settings-system ./usr/share/apps/pytdeextensions/app_templates/kcontrol_module/src/kcontrol_module.desktop -pytdeextensions: desktop-entry-lacks-main-category ./usr/share/apps/pytdeextensions/app_templates/kcontrol_module/src/kcontrol_module.desktop -pytdeextensions: desktop-command-not-in-package ./usr/share/apps/pytdeextensions/app_templates/kdeapp/src/kdeapp.desktop $APPNAMELC$ -pytdeextensions: desktop-command-not-in-package ./usr/share/apps/pytdeextensions/app_templates/kdeutility/src/kdeutility.desktop $APPNAMELC$ - -pytdeextensions: executable-not-elf-or-script ./usr/share/apps/pytdeextensions/app_templates/kcontrol_module/src/KcontrolModuleWidgetUI.py -pytdeextensions: executable-not-elf-or-script ./usr/share/apps/pytdeextensions/app_templates/kdeutility/src/KDEUtilityDialogUI.py diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/python-distutils-jaunty.mk b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/python-distutils-jaunty.mk deleted file mode 100644 index 63fce07d5..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/python-distutils-jaunty.mk +++ /dev/null @@ -1,295 +0,0 @@ -# -*- mode: makefile; coding: utf-8 -*- -# Copyright © 2003 Colin Walters <walters@debian.org> -# Copyright © 2006 Marc Dequènes (Duck) <Duck@DuckCorp.org> -# -# Description: manage Python public modules build -# This class is designed to work with Python packages using the -# 'distutils' build system and comply to the new policy established -# during summer 2006. Use of the debhelper class to make use of the -# new dh_python is strongly advised. (This is still left as optional -# in line with CDBS' flexible behavior.) -# -# 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., 51 Franklin St, Fifth Floor, Boston, MA -# 02111-1307 USA. -# - -# This class provides rules for old and new Python policy. Leaving -# DEB_PYTHON_SYSTEM unset selects the old behavior. The pysupport and -# pycentral methods are available to comply with new policy. Don't forget -# to update your 'debian/control'. (Build-Depends are correctly generated -# if you are using the auto control generation feature.) - -# Once all old-style packages are removed before etch, some of the old -# can be refactored or removed. - - -_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_python_distutils -_cdbs_class_python_distutils = 1 - -include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) -include $(_cdbs_class_path)/langcore.mk$(_cdbs_makefile_suffix) - - -# check python system -cdbs_use_xs_field := $(shell grep -q "^XS-Python-Version:" debian/control && echo yes) -cdbs_selected_pycompat := $(shell if [ -e debian/pycompat ]; then cat debian/pycompat; fi) -cdbs_pycompat = $(cdbs_selected_pycompat) -ifeq (pysupport, $(DEB_PYTHON_SYSTEM)) - cdbs_python_support_path = usr/share/python-support/$(DEB_PYTHON_MODULE_PACKAGE) - ifeq (, $(cdbs_selected_pycompat)) - cdbs_pycompat = 2 - endif # use pycompat - # warning pysupport compatibility mode - ifneq (, $(cdbs_use_xs_field)) - $(warning WARNING: Use of XS-Python-Version and XB-Python-Version fields in debian/control is deprecated with pysupport method; use debian/pyversions if you need to specify specific versions.) - endif # use XS field (compat) -else - ifeq (pycentral, $(DEB_PYTHON_SYSTEM)) - ifeq (, $(cdbs_selected_pycompat)) - cdbs_pycompat = 2 - endif # use pycompat - else - ifneq (, $(DEB_PYTHON_SYSTEM)) - $(error unsupported Python system: $(DEB_PYTHON_SYSTEM) (select either pysupport or pycentral)) - else - ifneq (, $(cdbs_use_xs_field)) - $(error package uses the new Python policy; DEB_PYTHON_SYSTEM must be set to "pysupport" or "pycentral") - endif - ifneq (, $(cdbs_selected_pycompat)) - ifeq (yes, $(shell expr $(cdbs_selected_pycompat) \> 1 >/dev/null && echo yes)) - $(error package uses the new Python policy; DEB_PYTHON_SYSTEM must be set to "pysupport" or "pycentral") - endif - endif # use pycompat - endif # unknown method - endif # pycentral -endif # pysupport - - -ifndef DEB_PYTHON_SYSTEM -DEB_PYTHON_COMPILE_VERSION = -DEB_PYTHON_VERSIONS = 2.1 2.2 2.3 2.4 2.5 2.6 -else -# default package is the first one declared in 'debian/control' -# (override if necessary) -DEB_PYTHON_MODULE_PACKAGE = $(firstword $(filter-out %-doc %-dev %-common, $(DEB_PACKAGES))) -DEB_PYTHON_PRIVATE_MODULES_DIRS = -endif - -# common variables -DEB_PYTHON_SETUP_CMD = setup.py -DEB_PYTHON_CLEAN_ARGS = -a -DEB_PYTHON_BUILD_ARGS = --build-base="$(CURDIR)/$(DEB_BUILDDIR)/build" -DEB_PYTHON_INSTALL_ARGS_ALL = --no-compile -O0 --prefix=/usr - - -ifndef DEB_PYTHON_SYSTEM -########################### old policy method ########################### - -$(warning =======================================================) -$(warning Your package does not conform to the new Python policy.) -$(warning Please consider updating. Here is some documentation:) -$(warning http://wiki.debian.org/DebianPython/NewPolicy) -$(warning http://wiki.debian.org/DebianPythonFAQ) -$(warning =======================================================) - -# make: *** No rule to make target `voodoo'. Stop. -DEB_PYTHON_REAL_LIB_PACKAGES = $(strip $(filter $(patsubst %,python%%,$(DEB_PYTHON_VERSIONS)),$(filter-out $(DEB_PYTHON_PACKAGES_EXCLUDE),$(DEB_ALL_PACKAGES)))) -# If no versioned python library packages found, grab all simpler ones -ifeq (,$(DEB_PYTHON_REAL_LIB_PACKAGES)) -DEB_PYTHON_SIMPLE_PACKAGES = $(strip $(filter python-%,$(filter-out $(DEB_PYTHON_PACKAGES_EXCLUDE),$(DEB_ALL_PACKAGES)))) -endif - -cdbs_python_ver = $(filter-out -%,$(subst -, -,$(patsubst python%,%,$(cdbs_curpkg)))) - -common-build-arch common-build-indep:: common-build-impl -common-build-impl:: - cd $(DEB_SRCDIR) && PATH=/opt/kde3/bin:$(PATH) python$(DEB_PYTHON_COMPILE_VERSION) $(DEB_PYTHON_SETUP_CMD) build $(DEB_PYTHON_BUILD_ARGS) - - -# See if this package doesn't appear to need to be compiled by multiple -# Python versions. -ifeq (,$(DEB_PYTHON_REAL_LIB_PACKAGES)) -common-install-arch common-install-indep:: common-install-impl -common-install-impl:: - cd $(DEB_SRCDIR) && PATH=/opt/kde3/bin:$(PATH) python$(DEB_PYTHON_COMPILE_VERSION) $(DEB_PYTHON_SETUP_CMD) install --root=$(DEB_DESTDIR) $(DEB_PYTHON_INSTALL_ARGS_ALL) $(DEB_PYTHON_INSTALL_ARGS_$(cdbs_curpkg)) - for ddir in $(DEB_DESTDIR)/usr/lib/python?.?/dist-packages; do \ - sdir=$$(dirname $$ddir)/site-packages; \ - mkdir -p $$sdir; \ - tar -c -f - -C $$ddir . | tar -x -f - -C $$sdir; \ - rm -rf $$ddir; \ - done -else -$(patsubst %,install/%,$(DEB_PYTHON_REAL_LIB_PACKAGES)) :: install/% : - cd $(DEB_SRCDIR) && PATH=/opt/kde3/bin:$(PATH) python$(cdbs_python_ver) $(DEB_PYTHON_SETUP_CMD) install --root=$(CURDIR)/debian/$(cdbs_curpkg) $(DEB_PYTHON_INSTALL_ARGS_ALL) $(DEB_PYTHON_INSTALL_ARGS_$(cdbs_curpkg)) - for ddir in $(CURDIR)/debian/$(cdbs_curpkg)/usr/lib/python?.?/dist-packages; do \ - sdir=$$(dirname $$ddir)/site-packages; \ - mkdir -p $$sdir; \ - tar -c -f - -C $$ddir . | tar -x -f - -C $$sdir; \ - rm -rf $$ddir; \ - done -endif - -$(patsubst %,install/%,$(DEB_PYTHON_SIMPLE_PACKAGES)) :: install/% : - cd $(DEB_SRCDIR) && PATH=/opt/kde3/bin:$(PATH) python $(DEB_PYTHON_SETUP_CMD) install --root=$(CURDIR)/debian/$(cdbs_curpkg) $(DEB_PYTHON_INSTALL_ARGS_ALL) $(DEB_PYTHON_INSTALL_ARGS_$(cdbs_curpkg)) -ifeq (pysupport, $(DEB_PYTHON_SYSTEM)) - for ddir in $(CURDIR)/debian/$(cdbs_curpkg)/usr/lib/python?.?/dist-packages; do \ - sdir=$$(dirname $$ddir)/site-packages; \ - mkdir -p $$sdir; \ - tar -c -f - -C $$ddir . | tar -x -f - -C $$sdir; \ - rm -rf $$ddir; \ - done -endif - -# This class can optionally utilize debhelper's "dh_python" command. Just -# be sure you include debhelper.mk before including this file. -ifdef _cdbs_rules_debhelper - -DEB_DH_PYTHON_ARGS = $(addprefix -V ,$(DEB_PYTHON_COMPILE_VERSION)) $(DEB_DH_PYTHON_ARGS_ALL) $(DEB_DH_PYTHON_ARGS_$(cdbs_curpkg)) - -$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: - dh_python -p$(cdbs_curpkg) $(DEB_DH_PYTHON_ARGS) -endif - - -# Ignore errors from this rule. In a tarball build, the file may not -# exist. -ifeq (,$(DEB_PYTHON_REAL_LIB_PACKAGES)) -clean:: - -python$(DEB_PYTHON_COMPILE_VERSION) $(DEB_PYTHON_SETUP_CMD) clean $(DEB_PYTHON_CLEAN_ARGS) -else -clean:: $(patsubst %,python-cleanbuilddir/%,$(DEB_PYTHON_REAL_LIB_PACKAGES)) - -$(patsubst %,python-cleanbuilddir/%,$(DEB_PYTHON_REAL_LIB_PACKAGES)) :: python-cleanbuilddir/% : - -python$(cdbs_python_ver) $(DEB_PYTHON_SETUP_CMD) clean $(DEB_PYTHON_CLEAN_ARGS) -endif - -else -########################## new policy methods ########################### - -# Calculate cdbs_python_build_versions -cdbs_python_module_arch := $(strip $(shell perl -e '$$/=""; $$_=(grep {/^Package: $(DEB_PYTHON_MODULE_PACKAGE)$$/m;} (<>))[0]; /^Architecture: (.*)$$/m && print $$1' debian/control)) -cdbs_python_current_version := $(shell pyversions -vd) -ifeq (all, $(cdbs_python_module_arch)) - # check if current is in build versions - ifneq ($(cdbs_python_current_version), $(filter $(cdbs_python_current_version), $(shell pyversions -vr))) - cdbs_python_compile_version := $(firstword $(strip $(sort $(shell pyversions -vr)))) - cdbs_python_build_versions := $(cdbs_python_compile_version) - else - cdbs_python_build_versions := $(cdbs_python_current_version) - endif -else -cdbs_python_build_versions := $(shell pyversions -vr) -endif # archall - -# check if build is possible -ifeq (, $(cdbs_python_build_versions)) -ifeq (pysupport, $(DEB_PYTHON_SYSTEM)) -$(error invalid setting in debian/pyversions) -else -$(error invalid setting for XS-Python-Version) -endif # system selected -endif # build versions empty - - -# Declare Build-Deps for packages using this file -CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.37.2), cdbs (>= 0.4.43) -ifeq (all, $(cdbs_python_module_arch)) - ifneq (, $(cdbs_python_compile_version)) - CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python$(cdbs_python_compile_version)-dev, python (>= 2.3.5-11) - else - CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python-dev (>= 2.3.5-11) - endif -else -CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python-all-dev (>= 2.3.5-11) -endif -ifeq (pysupport, $(DEB_PYTHON_SYSTEM)) -CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python-support (>= 0.3.2) -else -CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python-central (>= 0.6) -endif - - -cdbs_python_current_binary := $(shell pyversions -d) -cdbs_python_binary = $(if $(call cdbs_streq,$(cdbs_python_current_binary),$(1)),python,$(1)) - -# build stage -common-build-arch common-build-indep:: $(addprefix python-build-stamp-, $(cdbs_python_build_versions)) -python-build-stamp-%: -ifeq (all, $(cdbs_python_module_arch)) - cd $(DEB_SRCDIR) && PATH=/opt/kde3/bin:$(PATH) $(call cdbs_python_binary,python$(cdbs_python_compile_version)) $(DEB_PYTHON_SETUP_CMD) build $(DEB_PYTHON_BUILD_ARGS) -else - cd $(DEB_SRCDIR) && PATH=/opt/kde3/bin:$(PATH) $(call cdbs_python_binary,python$*) $(DEB_PYTHON_SETUP_CMD) build $(DEB_PYTHON_BUILD_ARGS) -endif # archall detection - touch $@ - - -# install stage -ifeq (all, $(cdbs_python_module_arch)) -common-install-arch common-install-indep:: python-install-py -python-install-py: - cd $(DEB_SRCDIR) && PATH=/opt/kde3/bin:$(PATH) $(call cdbs_python_binary,python$(cdbs_python_compile_version)) $(DEB_PYTHON_SETUP_CMD) install --root=$(DEB_DESTDIR) $(DEB_PYTHON_INSTALL_ARGS_ALL) -else -common-install-arch common-install-indep:: $(addprefix python-install-, $(cdbs_python_build_versions)) -python-install-%: - cd $(DEB_SRCDIR) && PATH=/opt/kde3/bin:$(PATH) $(call cdbs_python_binary,python$*) $(DEB_PYTHON_SETUP_CMD) install --root=$(DEB_DESTDIR) $(DEB_PYTHON_INSTALL_ARGS_ALL) -endif # archall detection - - -# This class can optionally use debhelper's commands. Just -# be sure you include debhelper.mk before including this file. -ifdef _cdbs_rules_debhelper - -DEB_DH_PYTHON_ARGS = $(DEB_DH_PYTHON_ARGS_ALL) $(DEB_DH_PYTHON_ARGS_$(cdbs_curpkg)) $(DEB_PYTHON_PRIVATE_MODULES_DIRS) - -$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: -ifeq (pysupport, $(DEB_PYTHON_SYSTEM)) - dh_pysupport -p$(cdbs_curpkg) $(DEB_PYTHON_PRIVATE_MODULES_DIRS) -else - dh_pycentral -p$(cdbs_curpkg) -endif - dh_python -p$(cdbs_curpkg) $(DEB_DH_PYTHON_ARGS) -endif - - -# clean stage -clean:: $(addprefix python-clean-, $(cdbs_python_build_versions)) -python-clean-%: -ifeq (all, $(cdbs_python_module_arch)) - -cd $(DEB_SRCDIR) && $(call cdbs_python_binary,python$(cdbs_python_compile_version)) $(DEB_PYTHON_SETUP_CMD) clean $(DEB_PYTHON_CLEAN_ARGS) -else - -cd $(DEB_SRCDIR) && $(call cdbs_python_binary,python$*) $(DEB_PYTHON_SETUP_CMD) clean $(DEB_PYTHON_CLEAN_ARGS) -endif # archall detection - -clean:: -ifeq (, $(cdbs_selected_pycompat)) - echo "$(cdbs_pycompat)" >debian/pycompat -endif # use pycompat - rm -f python-build-stamp-* - -endif - - -########################## all policy methods ########################### - -# Calling setup.py clean may create .pyc files, so we need a final cleanup -# pass here. -clean:: - find . -name '*.pyc' -exec rm '{}' ';' - -endif diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pyversions b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pyversions deleted file mode 100644 index b3dc41ebc..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/pyversions +++ /dev/null @@ -1 +0,0 @@ -2.5- diff --git a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/rules b/ubuntu/lucid_automake/libraries/pytdeextensions/debian/rules deleted file mode 100755 index 96ccfd714..000000000 --- a/ubuntu/lucid_automake/libraries/pytdeextensions/debian/rules +++ /dev/null @@ -1,63 +0,0 @@ -#!/usr/bin/make -f - -DEB_PYTHON_SYSTEM = pysupport - -include /usr/share/cdbs/1/rules/debhelper.mk -#include /usr/share/cdbs/1/class/python-distutils.mk -include debian/python-distutils-jaunty.mk -include /usr/share/cdbs/1/rules/patchsys-quilt.mk -include /usr/share/cdbs/1/rules/utils.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_DH_INSTALL_ARGS = --sourcedir=debian/tmp -DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/kde3 --with-extra-libs=/opt/kde3/lib --with-extra-includes=/opt/kde3/include/tde - -install/pytdeextensions-kde3:: - # We have no idea if the built product is site-packages or dist-packages - cd debian/tmp/usr/lib/python*/ && mv site-packages/ dist-packages/ || echo "site-packages --> dist-packages" - rm -rf debian/tmp/usr/lib/python*/site-packages/ - - # install lintian overrides - install -D -p -m0644 debian/pytdeextensions-kde3.lintian-overrides \ - debian/pytdeextensions-kde3/usr/share/lintian/overrides/pytdeextensions-kde3 - - # fix script-not-executable - find debian -type f -name '*.py' | xargs chmod 0755 - - # remove extra-license-file - find debian -type f -name 'COPYING' | xargs rm -f - - # remove byte-compiled file - find . -type f -name '*.py[co]' | xargs rm -f - -install/libpythonize0-kde3:: - # Move the files where they belong - mkdir -p debian/tmp/opt/kde3/lib - mv debian/tmp/usr/lib/libpythonize* debian/tmp/opt/kde3/lib/ || echo "moving files 1/2" - mv debian/tmp/usr/include debian/tmp/opt/kde3/ || echo "moving files 2/2" - - # fix binary-or-shlib-defines-rpath - chrpath -d debian/tmp/opt/kde3/lib/libpythonize.so.* - # fix include directory location - mkdir -p debian/tmp/opt/kde3/include/tde - mv debian/tmp/opt/kde3/include/*.h debian/tmp/opt/kde3/include/tde - -clean:: - rm -rf build - rm -f doc/en/*html doc/en/*bz2 - rm -f install_log.txt - - # remove byte-compiled file - find . -type f -name '*.py[co]' | xargs rm -f - -get-orig-source: - @@dh_testdir - @@[ -d ../tarballs/. ] - @@dpatch-get-origtargz ../tarballs - diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/NEWS.Debian b/ubuntu/lucid_automake/libraries/python-kde3/debian/NEWS.Debian deleted file mode 100644 index 0cee478f3..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/NEWS.Debian +++ /dev/null @@ -1,10 +0,0 @@ -python-kde3 (3.16.0-3) unstable; urgency=low - - python-kde3-dbg contains modules built for a debug Python interpreter. - However, it contains modules only for the default Python version. Also, - the debug symbols from python-kde3 are not stored inside python-kde3-dbg, - in order to keep the package size sane. If you need those debug symbols, - locate the dh_strip command in debian/rules and uncomment the "--dbg-package" - options. - - -- Torsten Marek <shlomme@debian.org> Sun, 16 Sep 2007 13:57:44 +0200 diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/changelog b/ubuntu/lucid_automake/libraries/python-kde3/debian/changelog deleted file mode 100644 index afeaa1689..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/changelog +++ /dev/null @@ -1,386 +0,0 @@ -python-kde3-kde3 (3.16.3-0ubuntu4) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Fri, 16 Oct 2009 14:47:00 -0600 - -python-kde3-kde3 (3.16.3-0ubuntu1) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600 - -python-kde3-kde3 (3.16.2-0ubuntu1) jaunty; urgency=low - - * Jaunty rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 23 April 2009 13:02:00 -0600 - -python-kde3 (3.16.2-0ubuntu1) jaunty; urgency=low - - [ Matthias Klose ] - * Build for python2.6. - - [ William Grant ] - * New upstream version. Fixes FTBFS. (LP: #333457) - - -- William Grant <wgrant@ubuntu.com> Mon, 09 Mar 2009 09:04:22 +1100 - -python-kde3 (3.16.1-1ubuntu2) intrepid; urgency=low - - * Actually include the fix for (LP: #229845) I claimed was in the last - upload - - -- Scott Kitterman <scott@kitterman.com> Sat, 13 Sep 2008 16:23:41 -0400 - -python-kde3 (3.16.1-1ubuntu1) intrepid; urgency=low - - * Merge from Debian unstable. Remaining Ubuntu changes: - - Add kubuntu_04_kdepyuic_i18n.dpatch: - - kdepyuic now has a useKDEi18n cmdline option, set - to TRUE by default, so that .py files generated from - .ui files are using i18n by default. - - fixes long options parsing, using a list of string - instead of a long string - - Patch by Stephan Hermann <sh@sourcecode.de> - - Build-dep on python-sip4 - * Update debian/rules to move kdeconfig files from - /usr/lib/python-2.*/site-packages to /usr/lib/python2.4/site-packages so it - is in the normal path (LP: #229845) - * Dropped kubuntu_03_konsole_setpty and konsole depends since the new - version no longer needs them - - -- Scott Kitterman <scott@kitterman.com> Wed, 18 Jun 2008 22:11:32 -0400 - -python-kde3 (3.16.1-1) unstable; urgency=low - - [ Piotr Ożarowski ] - * Rename XS-Vcs-* fields to Vcs-* (dpkg supports them now) - - [ Sandro Tosi ] - * debian/watch - - added missing file - * debian/control - - uniforming Vcs-Browser field - - bump Standard-Version to 3.7.3 - - capitalized Python in -dbg package description - - removed Debian revision from versioned build-dep on libqt3-mt-dev, - qt3-apps-dev, qt3-dev-tools - * debian/rules - - fixed destination dir for -dev package (Closes: #446904) - * debian/copyright - - clear separation of copyright and license notice - - copyright and license indented with 4 spaces - - added upstream authors notice - - [ Torsten Marek ] - * New upstream release 3.16.1. - * Included patch to dcopext.py handling - DCOPObj.objmethods being None (Closes: #468248). - * Patched dcopext.py to handle strings with non-ASCII - characters (Closes: #452443). - * Dropped 03-sip-4.7.dpatch, is now included upstream. - * debian/control - - removed dependency on konsole, because the bindings - for the konsole KPart have been removed. - * debian/rules - - compress debs using bzip2 to reduce the size - of the debug packages. - - -- Torsten Marek <shlomme@debian.org> Tue, 11 Mar 2008 01:42:08 +0100 - -python-kde3 (3.16.0-4ubuntu3) hardy; urgency=low - - * Remove build-dep on python-qt3 - No longer needed because pyqtconfig is - back in python-qt-dev (LP: #197867) - - -- Scott Kitterman <scott@kitterman.com> Wed, 12 Mar 2008 16:46:05 -0400 - -python-kde3 (3.16.0-4ubuntu2) hardy; urgency=low - - * Add kubuntu_04_kdepyuic_i18n.dpatch: - - kdepyuic now has a useKDEi18n cmdline option, set - to TRUE by default, so that .py files generated from - .ui files are using i18n by default. - - fixes long options parsing, using a list of string - instead of a long string - - Patch by Stephan Hermann <sh@sourcecode.de> - - -- Anthony Mercatante <tonio@kubuntu> Thu, 03 Jan 2008 22:40:39 +0100 - -python-kde3 (3.16.0-4ubuntu1) hardy; urgency=low - - * Merge with debian, remaining change: - - kubuntu_03_konsole_setpty.dpatch patch for setpty() support - * Build-dep on python-sip4 - * Build-dep on python-qt3 - - -- Jonathan Riddell <jriddell@ubuntu.com> Thu, 29 Nov 2007 18:24:06 +0000 - -python-kde3 (3.16.0-4) unstable; urgency=low - - [ Piotr Ożarowski ] - * XS-Vcs-Svn, XS-Vcs-Browser and Homepage fields added - - [ Torsten Marek ] - * Added dependency on konsole (Closes: #443819) - - -- Torsten Marek <shlomme@debian.org> Mon, 01 Oct 2007 01:37:23 +0200 - -python-kde3 (3.16.0-3) unstable; urgency=low - - * Merge with Ubuntu: - * Unable Konsole bindings. - * Build debug modules, but only for the default Python version - to keep the size sane. Debug symbols are left out as well. - * Adopt DCOP patch from Ubuntu. - * Better debian/rules file. - - -- Torsten Marek <shlomme@debian.org> Sun, 16 Sep 2007 13:57:44 +0200 - -python-kde3 (3.16.0-2) unstable; urgency=low - - * Include dcopext.py and dcopexport.py. (Closes: #440633) - * Add DPMT to uploaders field. - - -- Torsten Marek <shlomme@debian.org> Mon, 03 Sep 2007 21:27:42 +0200 - -python-kde3 (3.16.0-1) unstable; urgency=low - - * New upstream release. (Closes: #427285, #440028) - * Rename method that is also a Python keyword. (Closes: #407894) - - -- Torsten Marek <shlomme@debian.org> Sun, 12 Aug 2007 13:03:11 +0200 - -python-kde3 (3.15.2+20060422-4) unstable; urgency=low - - * Build with sip 4.5 / PyQt 3.17 - - -- Torsten Marek <shlomme@debian.org> Wed, 6 Dec 2006 19:18:30 +0100 - -python-kde3 (3.16.0-0ubuntu14) gutsy; urgency=low - - * Split C++ sources in more parts when building with GCC-4.[23]. - - -- Matthias Klose <doko@ubuntu.com> Wed, 29 Aug 2007 22:12:01 +0200 - -python-kde3 (3.16.0-0ubuntu13) gutsy; urgency=low - - * debian/control: changed the python-kde3-dev depends; - python-kde3-dev depends on python-kde3 now. - - -- Martin Böhm <martin.bohm@kubuntu.org> Mon, 06 Aug 2007 13:56:05 +0200 - -python-kde3 (3.16.0-0ubuntu12) gutsy; urgency=low - - * Add patch kubuntu_00_sip-4.7.dpatch, make it compile with - sip 4.7 and build-dep on pyqt 3.17.3-1ubuntu1 - - -- Jonathan Riddell <jriddell@ubuntu.com> Fri, 03 Aug 2007 17:00:07 +0100 - -python-kde3 (3.16.0-0ubuntu11) feisty; urgency=low - - * Fix copy and paste error, resulting in unusable extensions for - the -dbg build. - - -- Matthias Klose <doko@ubuntu.com> Wed, 21 Feb 2007 18:16:52 +0100 - -python-kde3 (3.16.0-0ubuntu10) feisty; urgency=low - - * Don't call ldconfig in the installation target. - - -- Matthias Klose <doko@ubuntu.com> Tue, 20 Feb 2007 21:19:44 +0100 - -python-kde3 (3.16.0-0ubuntu9) feisty; urgency=low - - * Build a python-kde3-dbg package. - * Use the dpatch patch system. - * Use single targets instead of loops inside a target. - * Set Ubuntu maintainer address. - - -- Matthias Klose <doko@ubuntu.com> Tue, 20 Feb 2007 02:09:12 +0100 - -python-kde3 (3.16.0-0ubuntu8) feisty; urgency=low - - [ Michael Vogt ] - * Add kubuntu_03_konsole_setpty.diff, - adds setPtyFd() to sip/kpart/konsole_kpart.sip - - [ Jonathan Riddell ] - * Update build-dep version to kdelibs and konsole 3.5.6 - - -- Michael Vogt <michael.vogt@ubuntu.com> Fri, 19 Jan 2007 10:43:29 +0100 - -python-kde3 (3.16.0-0ubuntu7) feisty; urgency=low - - * Fix build failures on 64bit archs with python2.5. - - -- Matthias Klose <doko@ubuntu.com> Sun, 14 Jan 2007 17:05:04 +0100 - -python-kde3 (3.16.0-0ubuntu6) feisty; urgency=low - - * Rebuild for python2.5 as the default python version. - - -- Matthias Klose <doko@ubuntu.com> Fri, 12 Jan 2007 13:18:13 +0000 - -python-kde3 (3.16.0-0ubuntu5) feisty; urgency=low - - * Tighen build-dep on python-qt3 to ensure it builds - without visibility=hidden - - -- Jonathan Riddell <jriddell@ubuntu.com> Tue, 5 Dec 2006 11:13:43 +0000 - -python-kde3 (3.16.0-0ubuntu4) feisty; urgency=low - - * Rebuild against Qt without visibility=hidden - * Ensure patches are not applied in source package - - -- Jonathan Riddell <jriddell@ubuntu.com> Mon, 4 Dec 2006 13:53:06 +0000 - -python-kde3 (3.16.0-0ubuntu3) feisty; urgency=low - - * Make python-kde3 depend on konsole - - -- Jonathan Riddell <jriddell@ubuntu.com> Fri, 24 Nov 2006 14:32:43 +0000 - -python-kde3 (3.16.0-0ubuntu2) feisty; urgency=low - - * Add kubuntu_02_no_konsole_symlink.diff, don't create a symlink from - /usr/lib when running make install - * Create symlink from debian/rules instead - - -- Jonathan Riddell <jriddell@ubuntu.com> Fri, 24 Nov 2006 00:49:46 +0000 - -python-kde3 (3.16.0-0ubuntu1) feisty; urgency=low - - * New upstream release - * Build-depend on pyqt 3.17 and sip 4.5 - * Add build-depends on /usr/lib/kde3/libkonsolepart.so - * Don't build for python 2.5, it fails to build - * Merge with Debian, remaining change: - - kubuntu_01_dcop.diff patch - - -- Jonathan Riddell <jriddell@ubuntu.com> Wed, 22 Nov 2006 19:03:34 +0000 - -python-kde3 (3.15.2+20060422-3) unstable; urgency=medium - - * Include shlib dependencies (Closes: #378815) - - -- Torsten Marek <shlomme@debian.org> Thu, 28 Sep 2006 20:25:29 +0200 - -python-kde3 (3.15.2+20060422-2) unstable; urgency=low - - * Python policy transition (Closes: #373321) - - -- Torsten Marek <shlomme@debian.org> Wed, 21 Jun 2006 20:44:58 +0200 - -python-kde3 (3.15.2+20060422-1) unstable; urgency=low - - * New upstream release - * KConfigSkeleton works now (Closes: #310919) - * KABC is included (Closes: #362443) - * Depend on python2.x-sip4 instead of python2.x-sip4-qt3 - * Bump build-depends on sip4 to 4.4.2 and dependencies on PyQt to 3.16 - * Raised debhelper compat level to 5 - * Changed my email address to shlomme@debian.org - * Builds fine in pbuilder now, probably a missed build dependency - elsewhere (Closes: #351711) - * Remove build dependency no c++abi2-dev - * Put kdepyuic into python-kde3-dev. Thanks, Stephan Hermann - - -- Torsten Marek <shlomme@debian.org> Tue, 2 May 2006 11:57:51 +0200 - -python-kde3 (3.11.3+20051013-1) unstable; urgency=low - - * New upstream release - - -- Torsten Marek <shlomme@gmx.net> Sun, 16 Oct 2005 11:55:45 +0200 - -python-kde3 (3.11.3+20050829-2) unstable; urgency=low - - * Applied patch to klibloader.sip to fix an issue with KParts, - thanks to David & Paul Boddie. - - -- Torsten Marek <shlomme@gmx.net> Mon, 10 Oct 2005 22:52:57 +0200 - -python-kde3 (3.11.3+20050829-1) unstable; urgency=low - - * New upstream release (Closes: #304407) - * g++ ABI transition, - add c++abi2-dev to Build-Depends (Closes: #327949) - * Built with sip 4.3 (Closes: #327314) - * Built against KDE 3.4.2 - * Added myself to Uploaders - * Bumped all Build-Depends and Depends on sip to - be >= 4.3 and << 4.4 - * Bumped standards version to 3.6.2, no changes involved - * Fixed FSF address in copyright file - * Include upstream changelog - * Added package for Python 2.4 - * Added the homepage of PyKDE to the package descriptions - * HTML documentations is now installed into - /usr/share/doc/python-kde3-doc/html - * pytdeconfig.py now also knows that the sip files - are in /usr/share/sip/kde3, not in /usr/share/sip/kde - (Closes: #312708) - - -- Torsten Marek <shlomme@gmx.net> Tue, 20 Sep 2005 01:21:33 +0200 - -python-kde3 (3.11.3-4) unstable; urgency=high - - * Added a direct dependency on the right version of sip - * Added python-kde3-dev (Closes: #294076) - * Added extra/332 so it builds with KDE 3.3.2 (Closes: #294079) - - -- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Fri, 1 Apr 2005 16:07:33 +0100 - -python-kde3 (3.11.3-3) unstable; urgency=low - - * Changed depend on PyQt >= 3.13-2 to >= 3.13 (I don't know what - I was thinking on) - - -- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Thu, 9 Dec 2004 09:36:34 +0000 - -python-kde3 (3.11.3-2) unstable; urgency=low - - * Rebuilt against PyQt 3.13 (bumped debian/control depends too) - * Applied a simple patch to build with KDE 3.3.1 - * Adapted Thiemo Seufer's patch to make it build on mips/mipsel. - Closes: Bug#274469 - - -- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Mon, 4 Oct 2004 12:28:17 +0100 - -python-kde3 (3.11.3-1) unstable; urgency=low - - * New upstream version. - - -- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Mon, 30 Aug 2004 15:40:40 +0100 - -python-kde3 (3.11.1+3.11.2-2) unstable; urgency=low - - * Split the number of generated object files during the building - process on some arches, because of hardware limitations (scarce - resources, or things like hitting the exported table size limit - on Alpha). - Closes: Bug#266733 - - -- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Thu, 19 Aug 2004 00:41:08 +0100 - -python-kde3 (3.11.1+3.11.2-1) unstable; urgency=low - - * Applied some changes from 3.11.2-snapshot-040816 to make it - build with KDE 3.3. - * Rebuilt the against KDE 3.3 due to ABI incompatibility. - Closes: Bug#266506 - - -- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Wed, 18 Aug 2004 19:25:53 +0100 - -python-kde3 (3.11.1a-1) unstable; urgency=low - - * Initial release of this package. - Closes: Bug#147965 - * Added "pyParts.rc" from 3.7 that have been missing on the - examples since 3.8 (thanks Patrick McFarland for notifying it) - * Includes some patches from development version. - - -- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Sat, 19 Jun 2004 23:07:05 +0100 diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/compat b/ubuntu/lucid_automake/libraries/python-kde3/debian/compat deleted file mode 100644 index 7ed6ff82d..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/control b/ubuntu/lucid_automake/libraries/python-kde3/debian/control deleted file mode 100644 index 4e1d87d9d..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/control +++ /dev/null @@ -1,52 +0,0 @@ -Source: python-kde3-kde3 -Section: python -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: Ricardo Javier Cardenes Medina <rcardenes@debian.org> -Uploaders: Torsten Marek <shlomme@debian.org>, Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> -Build-Depends: debhelper (>= 5.0.38), libqt3-mt-dev (>= 3:3.3.7), qt3-dev-tools (>= 3:3.3.7), qt3-apps-dev (>= 3:3.3.7), python, python-all-dev, python-all-dbg, sip4 (>= 4.10), python-sip4-dev (>= 4.10), python-qt-dev (>= 3.18), kdelibs4-kde3-dev, python-central (>= 0.6.11), dpatch, python-sip4, python-sip4-dbg, python-sip4-dev -Standards-Version: 3.8.3 -Homepage: http://www.riverbankcomputing.co.uk/pytde/index.php -XS-Python-Version: all - -Package: python-kde3-kde3 -Architecture: any -Depends: ${shlibs:Depends}, ${python:Depends}, python-qt3 (>= 3.18) -XB-Python-Version: ${python:Versions} -Provides: ${python:Provides} -Conflicts: python-kde3-kde3 -Description: KDE3 bindings for Python [KDE3] - Python binding module that provides wide access to the KDE3 API, - also known as PyKDE. Using this, you'll get (for example) classes - from kio, kjs, tdehtml and kprint. - -Package: python-kde3-kde3-dbg -Priority: extra -Architecture: any -Depends: python-kde3-kde3 (= ${binary:Version}), python-dbg, python-qt3-dbg, ${shlibs:Depends} -XB-Python-Version: ${python:Versions} -Description: KDE3 bindings for Python (debug extensions) [KDE3] - Python binding module that provides wide access to the KDE3 API, - also known as PyKDE. Using this, you'll get (for example) classes - from kio, kjs, tdehtml and kprint. - . - This package contains the extension built for the Python debug interpreter. - -Package: python-kde3-kde3-dev -Section: python -Architecture: all -Depends: pyqt-tools, ${python:Depends} -XB-Python-Version: ${python:Versions} -Description: KDE3 bindings for Python - Development files and scripts [KDE3] - Development .sip files with definitions of PyKDE classes. They - are needed to build PyKDE, but also as building blocks of other - packages based on them. - The package also contains kdepyuic, a wrapper script around PyQt's - user interface compiler. - -Package: python-kde3-kde3-doc -Section: doc -Architecture: all -Description: Documentation and examples for PyKDE [KDE3] - General documentation and examples for PyKDE providing programming - tips and working code you can use to learn from. diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/copyright b/ubuntu/lucid_automake/libraries/python-kde3/debian/copyright deleted file mode 100644 index d67316545..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/copyright +++ /dev/null @@ -1,30 +0,0 @@ -This package was debianized by Ricardo Javier Cardenes Medina <rcardenes@debian.org> on -Sat, 19 Jun 2004 23:31:46 +0100. - -It was downloaded from http://www.riverbankcomputing.co.uk - -Upstream Authors: - - Jim Bublitz <jbublitz@nwinternet.com> - PyKDE(KDE2, KDE3) - Phil Thompson <phil@river-bank.demon.co.uk> - sip, PyQt, original PyKDE (KDE1) and loads of good advice and help - -Copyright: - - Copyright 2004 Jim Bublitz <jbublitz@nwinternet.com> - Copyright 1998-2002 Jim Bublitz and/or Phil Thompson - -License: - - This software 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. - - A copy of the GNU General Public License is available as - /usr/share/common-licenses/GPL in the Debian GNU/Linux - distribution or on the World Wide Web at - http://www.gnu.org/copyleft/gpl.html. You can also obtain it by - writing to the Free Software Foundation, Inc., 51 Franklin St, - Fifth Floor, Boston, MA 02110-1301 USA. diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/patches/.gitignore b/ubuntu/lucid_automake/libraries/python-kde3/debian/patches/.gitignore deleted file mode 100644 index e69de29bb..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/patches/.gitignore +++ /dev/null diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/pycompat b/ubuntu/lucid_automake/libraries/python-kde3/debian/pycompat deleted file mode 100644 index 0cfbf0888..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/pycompat +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/pytdeconfig.py b/ubuntu/lucid_automake/libraries/python-kde3/debian/pytdeconfig.py deleted file mode 100644 index baab0b1cf..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/pytdeconfig.py +++ /dev/null @@ -1,11 +0,0 @@ -# import the sipconfig.py for the normal or the debug build - -import sys - -if getattr(sys, "pydebug", False): - try: - from pytdeconfig_d import * - except ImportError, msg: - raise ImportError, 'No module named pytdeconfig; package python-kde3-dbg not installed' -else: - from pytdeconfig_nd import * diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.dirs b/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.dirs deleted file mode 100644 index 74fb54b75..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.dirs +++ /dev/null @@ -1,4 +0,0 @@ -usr/share/doc/python-kde3-doc -usr/share/doc/python-kde3-doc/examples -usr/share/doc/python-kde3-doc/html - diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.doc-base b/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.doc-base deleted file mode 100644 index b42988ba4..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.doc-base +++ /dev/null @@ -1,12 +0,0 @@ -Document: PyKDE -Title: PyKDE developer documentation -Author: Jim Bublitz -Abstract: This documentation describes the PyKDE API - PyKDE contains the Python bindings to the KDE core library. - This manual contains general handling instructions and - a class reference. -Section: Programming - -Format: HTML -Index: /usr/share/doc/python-kde3-doc/html/index.html -Files: /usr/share/doc/python-kde3-doc/html/*.html diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.examples b/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.examples deleted file mode 100644 index e39721e20..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.examples +++ /dev/null @@ -1 +0,0 @@ -examples/* diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.install b/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.install deleted file mode 100644 index 14c8d76eb..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-doc.install +++ /dev/null @@ -1 +0,0 @@ -doc/* usr/share/doc/python-kde3-doc/html diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-kde3-dev.dirs b/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-kde3-dev.dirs deleted file mode 100644 index 09be05c37..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-kde3-dev.dirs +++ /dev/null @@ -1 +0,0 @@ -opt/kde3/share/sip/kde3 diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-kde3-dev.install b/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-kde3-dev.install deleted file mode 100644 index 2bedd563a..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-kde3-dev.install +++ /dev/null @@ -1,2 +0,0 @@ -sip/* opt/kde3/share/sip/kde3 -contrib/kdepyuic opt/kde3/bin/ diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-kde3.install b/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-kde3.install deleted file mode 100644 index facee2907..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/python-kde3-kde3.install +++ /dev/null @@ -1,3 +0,0 @@ -usr/lib/python*/*-packages/*.so -usr/lib/python*/*-packages/dcop*.py - diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/rules b/ubuntu/lucid_automake/libraries/python-kde3/debian/rules deleted file mode 100755 index ed917cdc0..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/rules +++ /dev/null @@ -1,165 +0,0 @@ -#!/usr/bin/make -f -# -*- makefile -*- - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -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) - -include /usr/share/dpatch/dpatch.make -# This has to be exported to make some magic below work. -export DH_OPTIONS -export QTDIR=/usr/share/qt3 -export QMAKESPEC=$(QTDIR)/mkspecs/linux-g++ - -CXXFLAGS = -Wall -g - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CXXFLAGS += -O0 -else - CXXFLAGS += -O2 -endif - -PYTHONS := $(shell pyversions -vr debian/control) -DBG_PYTHONS := $(shell pyversions -vd) - -GCCVER := $(shell gcc --version | sed -n '/^gcc (GCC)/s/.*(GCC) \(...\).*/\1/p') -ifneq (,$(filter $(GCCVER),4.2 4.3)) - SPLIT=20 -else - SPLIT=4 -endif - -.PRECIOUS: build-%/configure-stamp dbg-build-%/configure-stamp - -configure: $(PYTHONS:%=build-%/configure-stamp) $(DBG_PYTHONS:%=dbg-build-%/configure-stamp) - -build-%/configure-stamp: patch-stamp - dh_testdir - mkdir -p build-$* - cd build-$* && python$* ../configure.py \ - -c -u -k /opt/kde3 -o /opt/kde3/include/tde -n /opt/kde3/lib \ - -v /opt/kde3/share/sip/kde3 -j $(SPLIT) - touch $@ - -dbg-build-%/configure-stamp: patch-stamp - dh_testdir - mkdir -p dbg-build-$* - cd dbg-build-$* && python$*-dbg ../configure.py \ - -c -u -k /opt/kde3 -o /opt/kde3/include/tde -n /opt/kde3/lib \ - -v /opt/kde3/share/sip/kde3 -j $(SPLIT) - touch $@ - -build: $(PYTHONS:%=build-%/build-stamp) $(DBG_PYTHONS:%=dbg-build-%/build-stamp) - -build-%/build-stamp: build-%/configure-stamp - dh_testdir - $(MAKE) -C build-$* - touch $@ - -dbg-build-%/build-stamp: dbg-build-%/configure-stamp - dh_testdir - $(MAKE) -C dbg-build-$* - touch $@ - -clean: unpatch - dh_testdir - dh_testroot - rm -f *-stamp - rm -rf $(PYTHONS:%=build-%) $(DBG_PYTHONS:%=dbg-build-%) - -# remove autogenerated *mod.sip files and clean up sources - for moddir in sip/*;\ - do\ - if [ -d $$moddir ]; then\ - rm -f $$moddir/` basename $${moddir}`mod.sip;\ - fi;\ - done - dh_clean - -install: install-indep install-arch - -install-indep: - dh_testdir - dh_testroot - dh_clean -k -i - dh_installdirs -i - dh_install -i -X'\.diff$$' -X'\.in$$' -X'\.html$$' - for version in ${PYTHONS};\ - do\ - mkdir -p debian/python-kde3-kde3-dev/opt/kde3/lib/python-$$version/site-packages;\ - cp debian/pytdeconfig.py debian/python-kde3-kde3-dev/opt/kde3/lib/python-$$version/site-packages/;\ - cp build-$$version/pytdeconfig.py debian/python-kde3-kde3-dev/opt/kde3/lib/python-$$version/site-packages/pytdeconfig_nd.py;\ - done - for version in ${DBG_PYTHONS};\ - do\ - cp dbg-build-$$version/pytdeconfig.py debian/python-kde3-kde3-dev/opt/kde3/lib/python-$$version/site-packages/pytdeconfig_d.py;\ - done - -install-arch: - dh_testdir - dh_testroot - dh_clean -k -a - dh_installdirs -a - set -e; \ - for version in ${PYTHONS};\ - do\ - $(MAKE) -C build-$$version install DESTDIR=$(CURDIR)/debian/tmp;\ - done - - set -e; \ - for version in ${DBG_PYTHONS}; do \ - $(MAKE) -C dbg-build-$$version install DESTDIR=$(CURDIR)/debian/python-kde3-kde3-dbg;\ - done - - dh_install -a --sourcedir=$(CURDIR)/debian/tmp - - mkdir -p $(CURDIR)/debian/python-kde3-kde3/opt/kde3/lib/ - ln -s /opt/kde3/lib/kde3/libkonsolepart.so $(CURDIR)/debian/python-kde3-kde3/opt/kde3/lib/ - for i in $$(find debian/python-*-dbg -name '*.so'); do \ - b=$$(basename $$i .so); \ - mv $$i $$(dirname $$i)/$${b}_d.so; \ - done - find debian/python-*-dbg ! -type d \ - ! \( -name '*.so' -o -name '*config_d.py' \) | xargs rm -f - - find debian/python-*-dbg -depth -type d -empty -exec rmdir {} \; - - -# Must not depend on anything. This is to be called by -# binary-arch/binary-indep -# in another 'make' thread. -binary-common: - dh_testdir - dh_testroot - dh_installchangelogs ChangeLog - dh_installdocs -A THANKS - dh_installexamples - dh_link -ifeq (,$(findstring -i, $(DH_OPTIONS))) - DH_OPTIONS= dh_strip -ppython-kde3-kde3 #--dbg-package=python-kde3-kde3-dbg -endif - dh_compress -X.py -X.ui -X.dtd - dh_fixperms - DH_PYCENTRAL=nomove dh_pycentral - dh_installdeb - dh_shlibdeps -l /opt/kde3/lib - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture independant packages using the common target. -binary-indep: install-indep - $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common - -# Build architecture dependant packages using the common target. -binary-arch: build install-arch - $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common - -binary: binary-arch binary-indep -.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure diff --git a/ubuntu/lucid_automake/libraries/python-kde3/debian/watch b/ubuntu/lucid_automake/libraries/python-kde3/debian/watch deleted file mode 100644 index 26518db46..000000000 --- a/ubuntu/lucid_automake/libraries/python-kde3/debian/watch +++ /dev/null @@ -1,3 +0,0 @@ -version=3 - -http://www.riverbankcomputing.com/Downloads/PyKDE3/PyKDE-(.*)\.tar\.bz2 |