diff options
Diffstat (limited to 'ubuntu/maverick/applications')
363 files changed, 4155 insertions, 848 deletions
diff --git a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/buildvars.mk b/ubuntu/maverick/applications/abakus/debian/cdbs/buildvars.mk index 23d4709dc..23d4709dc 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/buildvars.mk +++ b/ubuntu/maverick/applications/abakus/debian/cdbs/buildvars.mk diff --git a/ubuntu/maverick/applications/abakus/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/abakus/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..856fa4932 --- /dev/null +++ b/ubuntu/maverick/applications/abakus/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,110 @@ +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_debian-qt-kde +_cdbs_class_debian-qt-kde := 1 + +# Note: This _must_ be included before autotools.mk, or it won't work. +common-configure-arch common-configure-indep:: debian/stamp-cvs-make +debian/stamp-cvs-make: + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) +include debian/cdbs/uploaders.mk + +DEB_PATCHDIRS := debian/patches/common debian/patches + +DEB_KDE_ENABLE_FINAL := yes +DEB_INSTALL_DOCS_ALL := + +DEB_DH_MAKESHLIBS_ARGS_ALL := -V +DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib) + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) + else + cdbs_kde_enable_final = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +common-binary-indep:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_INDEP_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +common-binary-arch:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_ARCH_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +clean:: + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -rf debian/shlibs-check + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + done + +clean:: + rm -f debian/stamp-cvs-make + +endif + +#common-build-indep:: debian/stamp-kde-apidox +#debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) +# touch $@ +# +#common-install-indep:: common-install-kde-apidox +#common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) +# +#clean:: +# rm -f debian/stamp-kde-apidox diff --git a/ubuntu/maverick/applications/abakus/debian/cdbs/kde.mk b/ubuntu/maverick/applications/abakus/debian/cdbs/kde.mk new file mode 100644 index 000000000..9dbcfbafd --- /dev/null +++ b/ubuntu/maverick/applications/abakus/debian/cdbs/kde.mk @@ -0,0 +1,97 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Christopher L Cheney <[email protected]> +# Description: A class for KDE packages; sets KDE environment variables, etc +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_kde +_cdbs_class_kde := 1 + +# for dh_icons +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +# include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) + +export kde_cgidir = \$${libdir}/cgi-bin +export kde_confdir = \$${sysconfdir}/trinity +export kde_htmldir = \$${datadir}/doc/kde/HTML + +ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) +endif + +ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = + cdbs_kde_enable_debug = --enable-debug=yes +else + cdbs_kde_enable_debug = --disable-debug +endif + +ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_debug = --enable-debug=full +endif + +cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/" +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi + +cleanbuilddir:: + -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) + +common-build-arch common-build-indep:: debian/stamp-kde-apidox +debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) + touch $@ + +common-install-prehook-impl:: + mkdir -p po + -XGETTEXT=/usr/bin/kde-xgettext EXTRACTATTR=/opt/trinity/bin/extractattr sh $(DEB_SRCDIR)/admin/cvs.sh extract-messages + -for file in po/*pot; do \ + sed "s/charset=CHARSET/charset=UTF-8/" -i $$file; \ + done + +common-install-arch common-install-indep:: common-install-kde-apidox +common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) + +clean:: + rm -f debian/stamp-kde-apidox + rm -rf po/*.pot + +# This is a convenience target for calling manually. It's not part of +# the build process. +buildprep: clean apply-patches + $(MAKE) -f admin/Makefile.common dist + debian/rules clean + +endif diff --git a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/team-members b/ubuntu/maverick/applications/abakus/debian/cdbs/team-members index 05761af6e..05761af6e 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/team-members +++ b/ubuntu/maverick/applications/abakus/debian/cdbs/team-members diff --git a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/uploaders.mk b/ubuntu/maverick/applications/abakus/debian/cdbs/uploaders.mk index 31adfe31e..31adfe31e 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/uploaders.mk +++ b/ubuntu/maverick/applications/abakus/debian/cdbs/uploaders.mk diff --git a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/versions.pl b/ubuntu/maverick/applications/abakus/debian/cdbs/versions.pl index 9ce11d8a3..9ce11d8a3 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/versions.pl +++ b/ubuntu/maverick/applications/abakus/debian/cdbs/versions.pl diff --git a/ubuntu/maverick/applications/abakus/debian/control b/ubuntu/maverick/applications/abakus/debian/control index 4f6f51257..5aebafb8b 100644 --- a/ubuntu/maverick/applications/abakus/debian/control +++ b/ubuntu/maverick/applications/abakus/debian/control @@ -3,14 +3,14 @@ Section: kde Priority: optional Maintainer: Timothy Pearson <[email protected]> XSBC-Original-Maintainer: Steffen Joeris <[email protected]> -Build-Depends: autotools-dev, debhelper (>= 4.1.0), cdbs (>= 0.4.0), scons (>= 0.96), imagemagick, tdelibs4-trinity-dev, chrpath, bison, flex +Build-Depends: autotools-dev, debhelper (>= 4.1.0), cdbs (>= 0.4.0), cmake, imagemagick, tdelibs4-trinity-dev, chrpath, bison, flex Standards-Version: 3.8.4 Package: abakus-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: abakus-kde3 (<< 4:3.5.13) -Breaks: abakus-kde3 (<< 4:3.5.13) +Replaces: abakus-trinity (<< 4:14.0.0) +Breaks: abakus-trinity (<< 4:14.0.0) Description: calculator for KDE [Trinity] AbaKus is a complex calculator, which provides many different kinds of calculations. diff --git a/ubuntu/maverick/applications/abakus/debian/control.in b/ubuntu/maverick/applications/abakus/debian/control.in new file mode 100644 index 000000000..3b8ff361e --- /dev/null +++ b/ubuntu/maverick/applications/abakus/debian/control.in @@ -0,0 +1,22 @@ +Source: abakus-trinity +Section: kde +Priority: optional +Maintainer: Timothy Pearson <[email protected]> +XSBC-Original-Maintainer: @@@MAINTAINER@@@ +Uploaders: @@@UPLOADERS@@@ +Build-Depends: autotools-dev, debhelper (>= 4.1.0), cdbs (>= 0.4.0), cmake, imagemagick, tdelibs4-trinity-dev, chrpath, bison, flex +Standards-Version: 3.8.4 + +Package: abakus-trinity +Architecture: any +Depends: ${shlibs:Depends} +Replaces: abakus-kde3 (<< 4:3.5.13) +Breaks: abakus-kde3 (<< 4:3.5.13) +Description: calculator for KDE [Trinity] + AbaKus is a complex calculator, which provides + many different kinds of calculations. + Think of it as bc (the command-line calculator) with a nice GUI. + It also gives information about mathematical variables and + has the user-friendly menu options of a normal KDE application. + . + Web site: http://grammarian.homelinux.net/abakus/ diff --git a/ubuntu/maverick/applications/abakus/debian/rules b/ubuntu/maverick/applications/abakus/debian/rules index b434be427..10ec1e1b3 100755 --- a/ubuntu/maverick/applications/abakus/debian/rules +++ b/ubuntu/maverick/applications/abakus/debian/rules @@ -1,41 +1,39 @@ #!/usr/bin/make -f +# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function +# Also include the main Trinity path +ifeq ("$(LD_LIBRARY_PATH)", "") +LD_LIBRARY_PATH=debian/tmp/opt/trinity/lib +else +LD_LIBRARY_PATH += :debian/tmp/opt/trinity/lib +endif +export LD_LIBRARY_PATH + include /usr/share/cdbs/1/rules/debhelper.mk -include /usr/share/cdbs/1/class/langcore.mk +include /usr/share/cdbs/1/class/cmake.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk +include debian/cdbs/debian-qt-kde.mk + +DEB_KDE_APIDOX := yes -DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde -DEB_CONFIGURE_MANDIR := /opt/trinity/share/man -DEB_CONFIGURE_PREFIX := /opt/trinity -DEB_CONFIGURE_INFODIR := /opt/trinity/share/info +CXXFLAGS := -DSMB_CTX_FLAG_USE_KERBEROS -DSMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS -g -Wall $(DEB_OPT_FLAG) -cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) +DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_INSTALL_PREFIX="/opt/trinity" -DCONFIG_INSTALL_DIR="/etc/trinity" -DSYSCONF_INSTALL_DIR="/etc/trinity" -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/" -DAUTODETECT_QT_DIRS="ON" -DCMAKE_VERBOSE_MAKEFILE="ON" -DBUILD_ALL="ON" -DCMAKE_SKIP_RPATH="OFF" -SCONS = scons --no-cache -Q -DEB_INSTALL_DOCS_ALL = -DEB_COMPRESS_EXCLUDE = .docbook +# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to +# never build in parallel, regardless of DEB_BUILD_OPTIONS. +DEB_BUILD_PARALLEL = true -debian/abakus.xpm: src/hi64-app-abakus.png +debian/abakus.xpm: icons/hi64-app-abakus.png convert -resize 32 $< $@ -common-build-arch:: build-stamp -build-stamp: debian/abakus.xpm - env PATH=/opt/trinity/bin:$(PATH) QTDIR=/usr/share/qt3 CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde DESTDIR=$(DEB_DESTDIR)/opt/trinity $(SCONS) configure prefix=/opt/trinity - env PATH=/opt/trinity/bin:$(PATH) QTDIR=/usr/share/qt3 CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde DESTDIR=$(DEB_DESTDIR)/opt/trinity $(SCONS) - touch build-stamp +common-build-arch:: debian/abakus.xpm common-install-arch:: - env PATH=/opt/trinity/bin:$(PATH) QTDIR=/usr/share/qt3 CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde DESTDIR=$(DEB_DESTDIR)/opt/trinity $(SCONS) install install -D -m 644 debian/abakus.xpm debian/abakus-trinity/opt/trinity/share/pixmaps/abakus.xpm chrpath -d debian/abakus-trinity/opt/trinity/bin/abakus dh_icons -pabakus clean:: - #env PATH=/opt/trinity/bin:$(PATH) QTDIR=/usr/share/qt3 CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde DESTDIR=$(DEB_DESTDIR)/opt/trinity $(SCONS) --clean rm -f debian/abakus.xpm - rm -rf cache - rm -rf .sconf_temp - rm -f bksys/generic.pyc - rm -f bksys/abakus.pyc - rm -f bksys/help.pyc - rm -f bksys/kde.pyc - rm -f config.log diff --git a/ubuntu/maverick/applications/abakus/debian/source/format b/ubuntu/maverick/applications/abakus/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/abakus/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/abakus/debian/source/options b/ubuntu/maverick/applications/abakus/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/abakus/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/adept/debian/control b/ubuntu/maverick/applications/adept/debian/control index f14bf6ffd..8e2160fb7 100644 --- a/ubuntu/maverick/applications/adept/debian/control +++ b/ubuntu/maverick/applications/adept/debian/control @@ -10,8 +10,8 @@ Standards-Version: 3.8.4 Package: adept-trinity Section: kde Depends: adept-manager-trinity, adept-installer-trinity, adept-updater-trinity, adept-notifier-trinity, adept-batch-trinity -Replaces: adept-kde3 (<< 4:3.5.13) -Breaks: adept-kde3 (<< 4:3.5.13) +Replaces: adept-trinity (<< 4:14.0.0) +Breaks: adept-trinity (<< 4:14.0.0) Architecture: all Description: package management suite for Trinity These packages belong to the adept suite: @@ -23,8 +23,8 @@ Description: package management suite for Trinity Package: adept-common-trinity Section: kde Depends: debtags (>= 1.6.1), konsole-trinity (>= 3.5.0), ${shlibs:Depends} -Replaces: adept-common-kde3 (<< 4:3.5.13) -Breaks: adept-common-kde3 (<< 4:3.5.13) +Replaces: adept-common-trinity (<< 4:14.0.0) +Breaks: adept-common-trinity (<< 4:14.0.0) Architecture: all Description: package manager for Trinity -- common files Icons and other common files for all adept components. @@ -32,9 +32,9 @@ Description: package manager for Trinity -- common files Package: adept-manager-trinity Section: kde Depends: adept-common-trinity, ${shlibs:Depends} -Replaces: adept-manager-kde3 (<< 4:3.5.13) -Breaks: adept-manager-kde3 (<< 4:3.5.13) -Recommends: libqt-perl +Replaces: adept-manager-trinity (<< 4:14.0.0) +Breaks: adept-manager-trinity (<< 4:14.0.0) +Recommends: libtqt-perl Architecture: any Description: package manager for Trinity Adept Manager is a graphical user interface for package management. @@ -45,15 +45,15 @@ Description: package manager for Trinity * Edit the list of used repositories (sources.list) * Configure packages through the debconf system . - Please also install libqt-perl if you want the KDE Debconf frontend + Please also install libtqt-perl if you want the KDE Debconf frontend to function. Package: adept-installer-trinity Section: kde Depends: adept-common-trinity, app-install-data, ${shlibs:Depends} -Replaces: adept-installer-kde3 (<< 4:3.5.13) -Breaks: adept-installer-kde3 (<< 4:3.5.13) -Recommends: libqt-perl +Replaces: adept-installer-trinity (<< 4:14.0.0) +Breaks: adept-installer-trinity (<< 4:14.0.0) +Recommends: libtqt-perl Architecture: any Description: simple user interface for application management (for Trinity) Adept Installer presents a list of applications available through the @@ -61,28 +61,28 @@ Description: simple user interface for application management (for Trinity) that contains a .desktop file for use with KDE, GNOME or other desktop environment. . - Please also install libqt-perl if you want the KDE Debconf frontend + Please also install libtqt-perl if you want the KDE Debconf frontend to function. Package: adept-updater-trinity Section: kde Depends: adept-common-trinity, ${shlibs:Depends} -Replaces: adept-updater-kde3 (<< 4:3.5.13) -Breaks: adept-updater-kde3 (<< 4:3.5.13) -Recommends: libqt-perl +Replaces: adept-updater-trinity (<< 4:14.0.0) +Breaks: adept-updater-trinity (<< 4:14.0.0) +Recommends: libtqt-perl Architecture: any Description: system update tool for Trinity Adept Updater provides a simple wizard-style user interface to system upgrades. It uses same algorithms as apt-get dist-upgrade. . - Please also install libqt-perl if you want the KDE Debconf frontend + Please also install libtqt-perl if you want the KDE Debconf frontend to function. Package: adept-notifier-trinity Section: kde Depends: ${shlibs:Depends}, adept-updater-trinity, update-notifier-common -Replaces: adept-notifier-kde3 (<< 4:3.5.13) -Breaks: adept-notifier-kde3 (<< 4:3.5.13) +Replaces: adept-notifier-trinity (<< 4:14.0.0) +Breaks: adept-notifier-trinity (<< 4:14.0.0) Architecture: any Description: system tray notifier of available system updates Adept Notifier provides a system tray icon notifying the user of @@ -92,8 +92,8 @@ Description: system tray notifier of available system updates Package: adept-batch-trinity Section: kde Depends: ${shlibs:Depends}, adept-manager-trinity -Replaces: adept-batch-kde3 (<< 4:3.5.13) -Breaks: adept-batch-kde3 (<< 4:3.5.13) +Replaces: adept-batch-trinity (<< 4:14.0.0) +Breaks: adept-batch-trinity (<< 4:14.0.0) Architecture: any Description: command line install for Adept Adept Batch lets you install packages with Adept from the diff --git a/ubuntu/maverick/applications/adept/debian/control.in b/ubuntu/maverick/applications/adept/debian/control.in index a313fdbae..d272f82b2 100644 --- a/ubuntu/maverick/applications/adept/debian/control.in +++ b/ubuntu/maverick/applications/adept/debian/control.in @@ -28,7 +28,7 @@ Description: package manager for Trinity -- common files Package: adept-manager-trinity Section: kde Depends: adept-common-trinity, ${shlibs:Depends} -Recommends: libqt-perl +Recommends: libtqt-perl Architecture: any Description: package manager for Trinity Adept Manager is a graphical user interface for package management. @@ -39,13 +39,13 @@ Description: package manager for Trinity * Edit the list of used repositories (sources.list) * Configure packages through the debconf system . - Please also install libqt-perl if you want the KDE Debconf frontend + Please also install libtqt-perl if you want the KDE Debconf frontend to function. Package: adept-installer-trinity Section: kde Depends: adept-common-trinity, app-install-data, ${shlibs:Depends} -Recommends: libqt-perl +Recommends: libtqt-perl Architecture: any Description: simple user interface for application management (for Trinity) Adept Installer presents a list of applications available through the @@ -53,19 +53,19 @@ Description: simple user interface for application management (for Trinity) that contains a .desktop file for use with KDE, GNOME or other desktop environment. . - Please also install libqt-perl if you want the KDE Debconf frontend + Please also install libtqt-perl if you want the KDE Debconf frontend to function. Package: adept-updater-trinity Section: kde Depends: adept-common-trinity, ${shlibs:Depends} -Recommends: libqt-perl +Recommends: libtqt-perl Architecture: any Description: system update tool for Trinity Adept Updater provides a simple wizard-style user interface to system upgrades. It uses same algorithms as apt-get dist-upgrade. . - Please also install libqt-perl if you want the KDE Debconf frontend + Please also install libtqt-perl if you want the KDE Debconf frontend to function. Package: adept-notifier-trinity diff --git a/ubuntu/maverick/applications/adept/debian/source/format b/ubuntu/maverick/applications/adept/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/adept/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/adept/debian/source/options b/ubuntu/maverick/applications/adept/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/adept/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/amarok.cmake/debian/control b/ubuntu/maverick/applications/amarok.cmake/debian/control index def456393..a07b416a8 100644 --- a/ubuntu/maverick/applications/amarok.cmake/debian/control +++ b/ubuntu/maverick/applications/amarok.cmake/debian/control @@ -19,10 +19,10 @@ Homepage: http://amarok.kde.org Package: amarok-trinity Architecture: any Depends: amarok-common-trinity (>= ${source:Version}), amarok-engine-xine-trinity (= ${binary:Version}) | amarok-engine-yauap-trinity (= ${binary:Version}), unzip, ${shlibs:Depends} -Replaces: amarok-kde3 (<< 4:3.5.13) -Breaks: amarok-kde3 (<< 4:3.5.13) +Replaces: amarok-trinity (<< 4:14.0.0) +Breaks: amarok-trinity (<< 4:14.0.0) Suggests: amarok-engines-trinity, moodbar, konqueror-trinity | www-browser, - python, python-qt3, libqt0-ruby1.8, libvisual-0.4-plugins + python, python-qt3, libqt0-ruby1.8-trinity, libvisual-0.4-plugins Description: versatile and easy to use audio player for Trinity Amarok tries to be a little different, providing a simple drag and drop interface that really makes playlist handling easy. @@ -49,10 +49,10 @@ Description: versatile and easy to use audio player for Trinity Package: amarok-common-trinity Architecture: all Depends: ruby -Replaces: amarok-common-kde3 (<< 4:3.5.13) -Breaks: amarok-common-kde3 (<< 4:3.5.13) +Replaces: amarok-common-trinity (<< 4:14.0.0) +Breaks: amarok-common-trinity (<< 4:14.0.0) Recommends: amarok-trinity (>= ${source:Version}) -Suggests: libqt0-ruby1.8, python, python-qt3 +Suggests: libqt0-ruby1.8-trinity, python, python-qt3 Description: architecture independent files for Amarok [Trinity] This package contains architecture independent files needed for Amarok to run properly. It also provides Amarok documentation. Therefore, unless you have @@ -65,8 +65,8 @@ Description: architecture independent files for Amarok [Trinity] Package: amarok-engines-trinity Architecture: all Depends: amarok-engine-xine-trinity (>= ${source:Version}), amarok-engine-yauap-trinity (>= ${source:Version}) -Replaces: amarok-engines-kde3 (<< 4:3.5.13) -Breaks: amarok-engines-kde3 (<< 4:3.5.13) +Replaces: amarok-engines-trinity (<< 4:14.0.0) +Breaks: amarok-engines-trinity (<< 4:14.0.0) Description: output engines for the Amarok music player [Trinity] This package serves merely as a reference point if you want to install all available Amarok engines. It depends on those Amarok engines that @@ -76,8 +76,8 @@ Description: output engines for the Amarok music player [Trinity] Package: amarok-engine-xine-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: amarok-engine-xine-kde3 (<< 4:3.5.13) -Breaks: amarok-engine-xine-kde3 (<< 4:3.5.13) +Replaces: amarok-engine-xine-trinity (<< 4:14.0.0) +Breaks: amarok-engine-xine-trinity (<< 4:14.0.0) Recommends: amarok-trinity (= ${binary:Version}) Description: xine engine for the Amarok audio player [Trinity] This package provides the xine engine for Amarok, which you may prefer @@ -87,8 +87,8 @@ Description: xine engine for the Amarok audio player [Trinity] Package: amarok-engine-yauap-trinity Architecture: any Depends: yauap, ${shlibs:Depends} -Replaces: amarok-engine-yauap-kde3 (<< 4:3.5.13) -Breaks: amarok-engine-yauap-kde3 (<< 4:3.5.13) +Replaces: amarok-engine-yauap-trinity (<< 4:14.0.0) +Breaks: amarok-engine-yauap-trinity (<< 4:14.0.0) Recommends: amarok-trinity (= ${binary:Version}) Description: Yauap engine for the Amarok audio player [Trinity] This package includes Amarok yauap engine, which provides a frontend @@ -99,8 +99,8 @@ Description: Yauap engine for the Amarok audio player [Trinity] Package: amarok-trinity-dbg Priority: extra Architecture: any -Replaces: amarok-kde3-dbg (<< 4:3.5.13) -Breaks: amarok-kde3-dbg (<< 4:3.5.13) +Replaces: amarok-trinity-dbg (<< 4:14.0.0) +Breaks: amarok-trinity-dbg (<< 4:14.0.0) Depends: amarok-trinity (= ${binary:Version}) Recommends: tdelibs-trinity-dbg Description: debugging symbols for Amarok [Trinity] diff --git a/ubuntu/maverick/applications/amarok.cmake/debian/source/format b/ubuntu/maverick/applications/amarok.cmake/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/amarok.cmake/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/amarok.cmake/debian/source/options b/ubuntu/maverick/applications/amarok.cmake/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/amarok.cmake/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/amarok/debian/control b/ubuntu/maverick/applications/amarok/debian/control index 0b36962a8..715ec98c4 100644 --- a/ubuntu/maverick/applications/amarok/debian/control +++ b/ubuntu/maverick/applications/amarok/debian/control @@ -19,10 +19,10 @@ Homepage: http://amarok.kde.org Package: amarok-trinity Architecture: any Depends: amarok-common-trinity (>= ${source:Version}), amarok-engine-xine-trinity (= ${binary:Version}) | amarok-engine-yauap-trinity (= ${binary:Version}), unzip, ${shlibs:Depends} -Replaces: amarok-kde3 (<< 4:3.5.13) -Breaks: amarok-kde3 (<< 4:3.5.13) +Replaces: amarok-trinity (<< 4:14.0.0) +Breaks: amarok-trinity (<< 4:14.0.0) Suggests: amarok-engines-trinity, moodbar, konqueror-trinity | www-browser, - python, python-qt3, libqt0-ruby1.8, libvisual-0.4-plugins + python, python-qt3, libqt0-ruby1.8-trinity, libvisual-0.4-plugins Description: versatile and easy to use audio player for Trinity Amarok tries to be a little different, providing a simple drag and drop interface that really makes playlist handling easy. @@ -49,10 +49,10 @@ Description: versatile and easy to use audio player for Trinity Package: amarok-common-trinity Architecture: all Depends: ruby -Replaces: amarok-common-kde3 (<< 4:3.5.13) -Breaks: amarok-common-kde3 (<< 4:3.5.13) +Replaces: amarok-common-trinity (<< 4:14.0.0) +Breaks: amarok-common-trinity (<< 4:14.0.0) Recommends: amarok-trinity (>= ${source:Version}) -Suggests: libqt0-ruby1.8, python, python-qt3 +Suggests: libqt0-ruby1.8-trinity, python, python-qt3 Description: architecture independent files for Amarok [Trinity] This package contains architecture independent files needed for Amarok to run properly. It also provides Amarok documentation. Therefore, unless you have @@ -65,8 +65,8 @@ Description: architecture independent files for Amarok [Trinity] Package: amarok-engines-trinity Architecture: all Depends: amarok-engine-xine-trinity (>= ${source:Version}), amarok-engine-yauap-trinity (>= ${source:Version}) -Replaces: amarok-engines-kde3 (<< 4:3.5.13) -Breaks: amarok-engines-kde3 (<< 4:3.5.13) +Replaces: amarok-engines-trinity (<< 4:14.0.0) +Breaks: amarok-engines-trinity (<< 4:14.0.0) Description: output engines for the Amarok music player [Trinity] This package serves merely as a reference point if you want to install all available Amarok engines. It depends on those Amarok engines that @@ -76,8 +76,8 @@ Description: output engines for the Amarok music player [Trinity] Package: amarok-engine-xine-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: amarok-engine-xine-kde3 (<< 4:3.5.13) -Breaks: amarok-engine-xine-kde3 (<< 4:3.5.13) +Replaces: amarok-engine-xine-trinity (<< 4:14.0.0) +Breaks: amarok-engine-xine-trinity (<< 4:14.0.0) Recommends: amarok-trinity (= ${binary:Version}) Description: xine engine for the Amarok audio player [Trinity] This package provides the xine engine for Amarok, which you may prefer @@ -87,8 +87,8 @@ Description: xine engine for the Amarok audio player [Trinity] Package: amarok-engine-yauap-trinity Architecture: any Depends: yauap, ${shlibs:Depends} -Replaces: amarok-engine-yauap-kde3 (<< 4:3.5.13) -Breaks: amarok-engine-yauap-kde3 (<< 4:3.5.13) +Replaces: amarok-engine-yauap-trinity (<< 4:14.0.0) +Breaks: amarok-engine-yauap-trinity (<< 4:14.0.0) Recommends: amarok-trinity (= ${binary:Version}) Description: Yauap engine for the Amarok audio player [Trinity] This package includes Amarok yauap engine, which provides a frontend @@ -99,8 +99,8 @@ Description: Yauap engine for the Amarok audio player [Trinity] Package: amarok-trinity-dbg Priority: extra Architecture: any -Replaces: amarok-kde3-dbg (<< 4:3.5.13) -Breaks: amarok-kde3-dbg (<< 4:3.5.13) +Replaces: amarok-trinity-dbg (<< 4:14.0.0) +Breaks: amarok-trinity-dbg (<< 4:14.0.0) Depends: amarok-trinity (= ${binary:Version}) Recommends: tdelibs-trinity-dbg Description: debugging symbols for Amarok [Trinity] diff --git a/ubuntu/maverick/applications/amarok/debian/source/format b/ubuntu/maverick/applications/amarok/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/amarok/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/amarok/debian/source/options b/ubuntu/maverick/applications/amarok/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/amarok/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/basket/debian/control b/ubuntu/maverick/applications/basket/debian/control index 45319008f..0f23477d8 100644 --- a/ubuntu/maverick/applications/basket/debian/control +++ b/ubuntu/maverick/applications/basket/debian/control @@ -10,9 +10,9 @@ Standards-Version: 3.8.4 Package: basket-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} +Replaces: basket-trinity (<< 4:14.0.0) +Breaks: basket-trinity (<< 4:14.0.0) Recommends: basket-kontact-integration-trinity -Replaces: basket-kde3 (<< 4:3.5.13) -Breaks: basket-kde3 (<< 4:3.5.13) Description: a multi-purpose note-taking application for TDE [Trinity] This application provides as many baskets (drawers) as you wish; Several kinds of objects (texts, URLs, images,...) can be drag-n-drop'd into it. @@ -26,8 +26,8 @@ Description: a multi-purpose note-taking application for TDE [Trinity] Package: basket-kontact-integration-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: basket-trinity (<< 4:3.5.13-0debian9+r1258873+pr4) -Breaks: basket-trinity (<< 4:3.5.13-0debian9+r1258873+pr4) +Replaces: basket-kontact-integration-trinity (<< 4:14.0.0) +Breaks: basket-kontact-integration-trinity (<< 4:14.0.0) Description: a multi-purpose note-taking appliction, Kontact integration [Trinity] This application provides as many baskets (drawers) as you wish; Several kinds of objects (texts, URLs, images,...) can be drag-n-drop'd into it. diff --git a/ubuntu/maverick/applications/basket/debian/source/format b/ubuntu/maverick/applications/basket/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/basket/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/basket/debian/source/options b/ubuntu/maverick/applications/basket/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/basket/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/bibletime/debian/control b/ubuntu/maverick/applications/bibletime/debian/control index 74815a5f1..cadc5f7d8 100644 --- a/ubuntu/maverick/applications/bibletime/debian/control +++ b/ubuntu/maverick/applications/bibletime/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: bibletime-trinity Architecture: any Section: kde -Replaces: bibletime-kde3 (<< 4:3.5.13) -Breaks: bibletime-kde3 (<< 4:3.5.13) +Replaces: bibletime-trinity (<< 4:14.0.0) +Breaks: bibletime-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends} Recommends: sword-text, sword-dict, sword-comm Suggests: bibletime-i18n-trinity diff --git a/ubuntu/maverick/applications/bibletime/debian/source/format b/ubuntu/maverick/applications/bibletime/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/bibletime/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/bibletime/debian/source/options b/ubuntu/maverick/applications/bibletime/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/bibletime/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/compizconfig-backend-kconfig/debian/control b/ubuntu/maverick/applications/compizconfig-backend-kconfig/debian/control index b473b03c8..57cfdd8b3 100644 --- a/ubuntu/maverick/applications/compizconfig-backend-kconfig/debian/control +++ b/ubuntu/maverick/applications/compizconfig-backend-kconfig/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: compizconfig-backend-kconfig-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: compizconfig-backend-kconfig-kde3 (<< 4:3.5.13) -Breaks: compizconfig-backend-kconfig-kde3 (<< 4:3.5.13) +Replaces: compizconfig-backend-kconfig-trinity (<< 4:14.0.0) +Breaks: compizconfig-backend-kconfig-trinity (<< 4:14.0.0) Conflicts: libcompizconfig-backend-kconfig-trinity Description: KConfig [Trinity] Settings library for plugins - OpenCompositing Project The OpenCompositing Project brings 3D desktop visual effects that improve diff --git a/ubuntu/maverick/applications/compizconfig-backend-kconfig/debian/source/format b/ubuntu/maverick/applications/compizconfig-backend-kconfig/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/compizconfig-backend-kconfig/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/compizconfig-backend-kconfig/debian/source/options b/ubuntu/maverick/applications/compizconfig-backend-kconfig/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/compizconfig-backend-kconfig/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/desktop-effects-tde/debian/control b/ubuntu/maverick/applications/desktop-effects-tde/debian/control index 00ddd4bd1..c9fd9a263 100644 --- a/ubuntu/maverick/applications/desktop-effects-tde/debian/control +++ b/ubuntu/maverick/applications/desktop-effects-tde/debian/control @@ -9,8 +9,8 @@ XS-Python-Version: all Package: desktop-effects-tde-trinity Architecture: all Depends: ${python:Depends}, python-qt4 -Replaces: desktop-effects-tde-kde3 (<< 4:3.5.13) -Breaks: desktop-effects-tde-kde3 (<< 4:3.5.13) +Replaces: desktop-effects-kde-trinity (<< 4:14.0.0) +Breaks: desktop-effects-kde-trinity (<< 4:14.0.0) XB-Python-Version: ${python:Versions} Description: compiz setup tool for Trinity A simple Compiz configuration tool for Trinity. Installs and sets Compiz diff --git a/ubuntu/maverick/applications/desktop-effects-tde/debian/source/format b/ubuntu/maverick/applications/desktop-effects-tde/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/desktop-effects-tde/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/desktop-effects-tde/debian/source/options b/ubuntu/maverick/applications/desktop-effects-tde/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/desktop-effects-tde/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/digikam/debian/control b/ubuntu/maverick/applications/digikam/debian/control index c62380338..3fc492330 100644 --- a/ubuntu/maverick/applications/digikam/debian/control +++ b/ubuntu/maverick/applications/digikam/debian/control @@ -16,8 +16,8 @@ Homepage: http://www.digikam.org Package: digikam-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: digikam-kde3 (<< 4:3.5.13) -Breaks: digikam-kde3 (<< 4:3.5.13) +Replaces: digikam-trinity (<< 4:14.0.0) +Breaks: digikam-trinity (<< 4:14.0.0) Recommends: kipi-plugins-trinity, tdeprint-trinity, konqueror-trinity Suggests: digikam-trinity-doc Description: digital photo management application for KDE [Trinity] @@ -43,8 +43,8 @@ Description: digital photo management application for KDE [Trinity] Package: showfoto-trinity Architecture: any Section: graphics -Replaces: showfoto-kde3 (<< 4:3.5.13) -Breaks: showfoto-kde3 (<< 4:3.5.13) +Replaces: showfoto-trinity (<< 4:14.0.0) +Breaks: showfoto-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, digikam-trinity Recommends: kipi-plugins-trinity, tdeprint-trinity, konqueror-trinity Description: image viewer/editor for KDE [Trinity] @@ -54,8 +54,8 @@ Description: image viewer/editor for KDE [Trinity] Package: digikam-trinity-dbg Architecture: any Section: devel -Replaces: digikam-kde3-dbg (<< 4:3.5.13) -Breaks: digikam-kde3-dbg (<< 4:3.5.13) +Replaces: digikam-trinity-dbg (<< 4:14.0.0) +Breaks: digikam-trinity-dbg (<< 4:14.0.0) Depends: ${shlibs:Depends}, digikam-trinity (= ${binary:Version}), showfoto-trinity (= ${binary:Version}), tdelibs-trinity-dbg Priority: extra Description: debugging symbols for digikam [Trinity] diff --git a/ubuntu/maverick/applications/digikam/debian/source/format b/ubuntu/maverick/applications/digikam/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/digikam/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/digikam/debian/source/options b/ubuntu/maverick/applications/digikam/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/digikam/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/dolphin/debian/control b/ubuntu/maverick/applications/dolphin/debian/control index 70a5a26dc..225c29e0c 100644 --- a/ubuntu/maverick/applications/dolphin/debian/control +++ b/ubuntu/maverick/applications/dolphin/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: dolphin-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: dolphin-kde3 (<< 4:3.5.13) -Breaks: dolphin-kde3 (<< 4:3.5.13) +Replaces: dolphin-trinity (<< 4:14.0.0) +Breaks: dolphin-trinity (<< 4:14.0.0) Recommends: amarok-trinity, ark-trinity, k3b-trinity, kmail-trinity, digikam-trinity Suggests: kfloppy-trinity Description: File manager for KDE focusing on usability [Trinity] diff --git a/ubuntu/maverick/applications/dolphin/debian/source/format b/ubuntu/maverick/applications/dolphin/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/dolphin/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/dolphin/debian/source/options b/ubuntu/maverick/applications/dolphin/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/dolphin/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/filelight-l10n/debian/control b/ubuntu/maverick/applications/filelight-l10n/debian/control index 091af9d3e..a15255751 100644 --- a/ubuntu/maverick/applications/filelight-l10n/debian/control +++ b/ubuntu/maverick/applications/filelight-l10n/debian/control @@ -9,9 +9,9 @@ Homepage: http://www.methylblue.com/filelight/ Package: filelight-l10n-trinity Architecture: any -Depends: ${shlibs:Depends} , filelight-trinity (>= ${source:Version}) -Replaces: filelight-l10n-kde3 (<< 4:3.5.13) -Breaks: filelight-l10n-kde3 (<< 4:3.5.13) +Depends: ${shlibs:Depends} , filelight-trinity +Replaces: filelight-l10n-trinity (<< 4:14.0.0) +Breaks: filelight-l10n-trinity (<< 4:14.0.0) Description: Localization (l10n) for Filelight, disk space usage tool [Trinity] This package provides localization(l10n) files (translations and docs) for Filelight, Filelight allows you to understand your disk usage by graphically diff --git a/ubuntu/maverick/applications/filelight-l10n/debian/source/format b/ubuntu/maverick/applications/filelight-l10n/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/filelight-l10n/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/filelight-l10n/debian/source/options b/ubuntu/maverick/applications/filelight-l10n/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/filelight-l10n/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/filelight/debian/control b/ubuntu/maverick/applications/filelight/debian/control index 47b3e6eaf..943ff1166 100644 --- a/ubuntu/maverick/applications/filelight/debian/control +++ b/ubuntu/maverick/applications/filelight/debian/control @@ -11,8 +11,8 @@ Homepage: http://www.methylblue.com/filelight/ Package: filelight-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: filelight-kde3 (<< 4:3.5.13) -Breaks: filelight-kde3 (<< 4:3.5.13) +Replaces: filelight-trinity (<< 4:14.0.0) +Breaks: filelight-trinity (<< 4:14.0.0) Description: show where your diskspace is being used [Trinity] Filelight allows you to understand your disk usage by graphically representing your filesystem as a set of concentric, segmented rings. diff --git a/ubuntu/maverick/applications/filelight/debian/source/format b/ubuntu/maverick/applications/filelight/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/filelight/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/filelight/debian/source/options b/ubuntu/maverick/applications/filelight/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/filelight/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/fusion-icon/debian/control b/ubuntu/maverick/applications/fusion-icon/debian/control index 07b9e7ebd..25234c2dd 100644 --- a/ubuntu/maverick/applications/fusion-icon/debian/control +++ b/ubuntu/maverick/applications/fusion-icon/debian/control @@ -11,8 +11,8 @@ Standards-Version: 3.8.4 Package: fusion-icon-trinity Architecture: all XB-Python-Version: ${python:Versions} -Replaces: fusion-icon-kde3 (<< 4:3.5.13) -Breaks: fusion-icon-kde3 (<< 4:3.5.13) +Replaces: fusion-icon-trinity (<< 4:14.0.0) +Breaks: fusion-icon-trinity (<< 4:14.0.0) Depends: ${misc:Depends}, ${python:Depends}, python-gtk2 | python-qt4, python-compizconfig-trinity, compiz-trinity Description: tray icon to launch and manage Compiz Fusion [Trinity] The OpenCompositing Project brings 3D desktop visual effects that diff --git a/ubuntu/maverick/applications/fusion-icon/debian/source/format b/ubuntu/maverick/applications/fusion-icon/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/fusion-icon/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/fusion-icon/debian/source/options b/ubuntu/maverick/applications/fusion-icon/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/fusion-icon/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/gtk-qt-engine/debian/control b/ubuntu/maverick/applications/gtk-qt-engine/debian/control index 84b2b015d..1db192bc3 100644 --- a/ubuntu/maverick/applications/gtk-qt-engine/debian/control +++ b/ubuntu/maverick/applications/gtk-qt-engine/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: gtk-qt-engine-trinity Architecture: any Provides: gtk2-engines-gtk-qt-trinity -Replaces: gtk-qt-engine-kde3 (<< 4:3.5.13) -Breaks: gtk-qt-engine-kde3 (<< 4:3.5.13) +Replaces: gtk-qt-engine-trinity (<< 4:14.0.0) +Breaks: gtk-qt-engine-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, ${misc:Depends} Description: theme engine using Qt for GTK+ 2.x and Trinity The GTK-Qt Theme Engine (also known as gtk-qt-engine) is a GTK 2 theme engine diff --git a/ubuntu/maverick/applications/gtk-qt-engine/debian/source/format b/ubuntu/maverick/applications/gtk-qt-engine/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/gtk-qt-engine/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/gtk-qt-engine/debian/source/options b/ubuntu/maverick/applications/gtk-qt-engine/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/gtk-qt-engine/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/gwenview/debian/control b/ubuntu/maverick/applications/gwenview/debian/control index 33ab3069d..736286221 100644 --- a/ubuntu/maverick/applications/gwenview/debian/control +++ b/ubuntu/maverick/applications/gwenview/debian/control @@ -9,8 +9,8 @@ Homepage: http://gwenview.sourceforge.net Package: gwenview-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: gwenview-kde3 (<< 4:3.5.13) -Breaks: gwenview-kde3 (<< 4:3.5.13) +Replaces: gwenview-trinity (<< 4:14.0.0) +Breaks: gwenview-trinity (<< 4:14.0.0) Recommends: tdegraphics-kfile-plugins-trinity, kipi-plugins-trinity Suggests: gwenview-i18n Description: image viewer for TDE diff --git a/ubuntu/maverick/applications/gwenview/debian/source/format b/ubuntu/maverick/applications/gwenview/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/gwenview/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/gwenview/debian/source/options b/ubuntu/maverick/applications/gwenview/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/gwenview/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/k3b/debian/control b/ubuntu/maverick/applications/k3b/debian/control index 4dda755d0..74cfc4638 100644 --- a/ubuntu/maverick/applications/k3b/debian/control +++ b/ubuntu/maverick/applications/k3b/debian/control @@ -11,8 +11,8 @@ Homepage: http://www.k3b.org Package: k3b-trinity Architecture: any Depends: ${shlibs:Depends}, wodim | cdrskin, cdparanoia (>= 3a9.8), genisoimage, tdelibs-data-trinity (>= 4:3.1.4-2), cdrdao (>= 1.1.7-5), k3b-data-trinity (= ${source:Version}), libk3b3-trinity (= ${binary:Version}) -Replaces: k3b-kde3 (<< 4:3.5.13) -Breaks: k3b-kde3 (<< 4:3.5.13) +Replaces: k3b-trinity (<< 4:14.0.0) +Breaks: k3b-trinity (<< 4:14.0.0) Recommends: dvd+rw-tools, libk3b3-extracodecs-trinity Suggests: k3b-i18n, normalize-audio, toolame, sox, movixmaker-2, vcdimager (>= 0.7) Description: A sophisticated KDE CD burning application [Trinity] @@ -31,8 +31,8 @@ Description: A sophisticated KDE CD burning application [Trinity] Package: k3b-data-trinity Conflicts: k3b-trinity (<< 1.0.4-4) Architecture: all -Replaces: k3b-data-kde3 (<< 4:3.5.13) -Breaks: k3b-data-kde3 (<< 4:3.5.13) +Replaces: k3b-data-trinity (<< 4:14.0.0) +Breaks: k3b-data-trinity (<< 4:14.0.0) Description: A sophisticated KDE CD burning application - data files [Trinity] K3b is a GUI frontend to the CD recording programs cdrdao and cdrecord. Its aim is to provide a very user friendly interface to all the tasks @@ -43,8 +43,8 @@ Description: A sophisticated KDE CD burning application - data files [Trinity] Package: libk3b-trinity-dev Conflicts: libk3bcore-trinity-dev, libk3bplugin-trinity-dev, libk3btools-trinity-dev, libk3bproject-trinity-dev, k3blibs-trinity-dev, k3blibs-trinity Section: libdevel -Replaces: libk3b-kde3-dev (<< 4:3.5.13) -Breaks: libk3b-kde3-dev (<< 4:3.5.13) +Replaces: libk3b-trinity-dev (<< 4:14.0.0) +Breaks: libk3b-trinity-dev (<< 4:14.0.0) Architecture: any Depends: libk3b3-trinity (= ${binary:Version}) Description: The KDE cd burning application library - development files [Trinity] @@ -57,8 +57,8 @@ Description: The KDE cd burning application library - development files [Trinity Package: libk3b3-trinity Section: libs Architecture: any -Replaces: libk3b3-kde3 (<< 4:3.5.13) -Breaks: libk3b3-kde3 (<< 4:3.5.13) +Replaces: libk3b3-trinity (<< 4:14.0.0) +Breaks: libk3b3-trinity (<< 4:14.0.0) Conflicts: libk3bcore-trinity, libk3bplugin-trinity, libk3btools-trinity, libk3bproject-trinity, k3blibs-trinity, libk3b2-trinity Depends: ${shlibs:Depends} Description: The KDE cd burning application library - runtime files [Trinity] @@ -71,8 +71,8 @@ Description: The KDE cd burning application library - runtime files [Trinity] Package: libk3b3-extracodecs-trinity Section: libs Architecture: any -Replaces: libk3b3-extracodecs-kde3 (<< 4:3.5.13) -Breaks: libk3b3-extracodecs-kde3 (<< 4:3.5.13) +Replaces: libk3b3-extracodecs-trinity (<< 4:14.0.0) +Breaks: libk3b3-extracodecs-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends} Conflicts: libk3b2-mp3-trinity Description: The KDE cd burning application library - extra decoders [Trinity] @@ -85,8 +85,8 @@ Description: The KDE cd burning application library - extra decoders [Trinity] Package: libk3b2-extracodecs-trinity Architecture: all Priority: extra -Replaces: libk3b2-extracodecs-kde3 (<< 4:3.5.13) -Breaks: libk3b2-extracodecs-kde3 (<< 4:3.5.13) +Replaces: libk3b2-extracodecs-trinity (<< 4:14.0.0) +Breaks: libk3b2-extracodecs-trinity (<< 4:14.0.0) Depends: libk3b3-extracodecs-trinity Description: transitional package for K3b's extra decoders [Trinity] This is a dummy transitional package to enable a smooth transition from diff --git a/ubuntu/maverick/applications/k3b/debian/source/format b/ubuntu/maverick/applications/k3b/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/k3b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/k3b/debian/source/options b/ubuntu/maverick/applications/k3b/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/k3b/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/k9copy/debian/control b/ubuntu/maverick/applications/k9copy/debian/control index d35e678ee..a54326497 100644 --- a/ubuntu/maverick/applications/k9copy/debian/control +++ b/ubuntu/maverick/applications/k9copy/debian/control @@ -10,8 +10,8 @@ Homepage: http://k9copy.sourceforge.net/ Package: k9copy-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, vamps, dvd+rw-tools, dvdauthor, mencoder, libdvdnav4 -Replaces: k9copy-kde3 (<< 4:3.5.13) -Breaks: k9copy-kde3 (<< 4:3.5.13) +Replaces: k9copy-trinity (<< 4:14.0.0) +Breaks: k9copy-trinity (<< 4:14.0.0) Description: DVD backup tool for Trinity k9copy is a tabbed tool that allows to copy of one or more titles from a DVD9 to a DVD5, in thesame way than DVDShrink for Microsoft Windows (R). diff --git a/ubuntu/maverick/applications/k9copy/debian/source/format b/ubuntu/maverick/applications/k9copy/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/k9copy/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/k9copy/debian/source/options b/ubuntu/maverick/applications/k9copy/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/k9copy/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kaffeine-mozilla/debian/control b/ubuntu/maverick/applications/kaffeine-mozilla/debian/control index afc97f80f..38270dc34 100644 --- a/ubuntu/maverick/applications/kaffeine-mozilla/debian/control +++ b/ubuntu/maverick/applications/kaffeine-mozilla/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: kaffeine-mozilla-trinity Architecture: any Depends: kaffeine-trinity, ${shlibs:Depends}, ${misc:Depends} -Replaces: kaffeine-mozilla-kde3 (<< 4:3.5.13) -Breaks: kaffeine-mozilla-kde3 (<< 4:3.5.13) +Replaces: kaffeine-mozilla-trinity (<< 4:14.0.0) +Breaks: kaffeine-mozilla-trinity (<< 4:14.0.0) Description: mozilla plugin that lanches kaffeine for supported media types [Trinity] This mozilla plugin launches kaffeine, the xine-based media player for KDE, when a page containing a supported media format is loaded. diff --git a/ubuntu/maverick/applications/kaffeine-mozilla/debian/source/format b/ubuntu/maverick/applications/kaffeine-mozilla/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kaffeine-mozilla/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kaffeine-mozilla/debian/source/options b/ubuntu/maverick/applications/kaffeine-mozilla/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kaffeine-mozilla/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kaffeine/debian/control b/ubuntu/maverick/applications/kaffeine/debian/control index 660e771c3..5aa779d25 100644 --- a/ubuntu/maverick/applications/kaffeine/debian/control +++ b/ubuntu/maverick/applications/kaffeine/debian/control @@ -15,8 +15,8 @@ Standards-Version: 3.8.4 Package: kaffeine-trinity Architecture: any Depends: ${shlibs:Depends}, hdparm -Replaces: kaffeine-kde3 (<< 4:3.5.13) -Breaks: kaffeine-kde3 (<< 4:3.5.13) +Replaces: kaffeine-trinity (<< 4:14.0.0) +Breaks: kaffeine-trinity (<< 4:14.0.0) Recommends: tdesudo-trinity, kpackage-trinity Description: versatile media player for TDE Kaffeine is a media player for KDE. While it supports multiple player @@ -32,8 +32,8 @@ Description: versatile media player for TDE Package: kaffeine-trinity-dbg Section: devel Architecture: any -Replaces: kaffeine-kde3-dbg (<< 4:3.5.13) -Breaks: kaffeine-kde3-dbg (<< 4:3.5.13) +Replaces: kaffeine-trinity-dbg (<< 4:14.0.0) +Breaks: kaffeine-trinity-dbg (<< 4:14.0.0) Priority: extra Depends: kaffeine-trinity (= ${binary:Version}), tdelibs-trinity-dbg Recommends: tdesudo-trinity, kpackage-trinity @@ -45,8 +45,8 @@ Description: debugging symbols for kaffeine [Trinity] Package: kaffeine-gstreamer-trinity Architecture: any Depends: ${shlibs:Depends}, kaffeine-trinity -Replaces: kaffeine-gstreamer-kde3 (<< 4:3.5.13) -Breaks: kaffeine-gstreamer-kde3 (<< 4:3.5.13) +Replaces: kaffeine-gstreamer-trinity (<< 4:14.0.0) +Breaks: kaffeine-gstreamer-trinity (<< 4:14.0.0) Description: Gstreamer engine for kaffeine media player [Trinity] Kaffeine is a media player for KDE. While it supports multiple player engines, its default engine is Gstreamer, giving Kaffeine a wide variety of diff --git a/ubuntu/maverick/applications/kaffeine/debian/source/format b/ubuntu/maverick/applications/kaffeine/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kaffeine/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kaffeine/debian/source/options b/ubuntu/maverick/applications/kaffeine/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kaffeine/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/katapult/debian/control b/ubuntu/maverick/applications/katapult/debian/control index 4d7a1b588..003a6d5da 100644 --- a/ubuntu/maverick/applications/katapult/debian/control +++ b/ubuntu/maverick/applications/katapult/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: katapult-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: katapult-kde3 (<< 4:3.5.13) -Breaks: katapult-kde3 (<< 4:3.5.13) +Replaces: katapult-trinity (<< 4:14.0.0) +Breaks: katapult-trinity (<< 4:14.0.0) Description: item launcher for KDE [Trinity] Katapult is an application, which analyses text-based queries to launch items, such as bookmarks, directories or programs. diff --git a/ubuntu/maverick/applications/katapult/debian/source/format b/ubuntu/maverick/applications/katapult/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/katapult/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/katapult/debian/source/options b/ubuntu/maverick/applications/katapult/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/katapult/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kbarcode/debian/control b/ubuntu/maverick/applications/kbarcode/debian/control index e9fc1c3bd..d2341bf16 100644 --- a/ubuntu/maverick/applications/kbarcode/debian/control +++ b/ubuntu/maverick/applications/kbarcode/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: kbarcode-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, barcode, imagemagick -Replaces: kbarcode-kde3 (<< 4:3.5.13) -Breaks: kbarcode-kde3 (<< 4:3.5.13) +Replaces: kbarcode-trinity (<< 4:14.0.0) +Breaks: kbarcode-trinity (<< 4:14.0.0) Recommends: libqt3-mt-mysql | libqt3-mt-psql | libqt3-mt-odbc | libqt3-mt-sqlite | libqt3-mt-ibase Description: barcode and label printing application for Trinity diff --git a/ubuntu/maverick/applications/kbarcode/debian/source/format b/ubuntu/maverick/applications/kbarcode/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kbarcode/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kbarcode/debian/source/options b/ubuntu/maverick/applications/kbarcode/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kbarcode/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kbfx/debian/control b/ubuntu/maverick/applications/kbfx/debian/control index 2f0099a65..d3830e6d6 100644 --- a/ubuntu/maverick/applications/kbfx/debian/control +++ b/ubuntu/maverick/applications/kbfx/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: kbfx-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: kbfx-kde3 (<< 4:3.5.13) -Breaks: kbfx-kde3 (<< 4:3.5.13) +Replaces: kbfx-trinity (<< 4:14.0.0) +Breaks: kbfx-trinity (<< 4:14.0.0) Description: an alternative to K-Menu for KDE [Trinity] KBFX is an alternative to the classical K-Menu button and its menu. It improves the user experience by enabling him to set a bigger (and thus more diff --git a/ubuntu/maverick/applications/kbfx/debian/source/format b/ubuntu/maverick/applications/kbfx/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kbfx/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kbfx/debian/source/options b/ubuntu/maverick/applications/kbfx/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kbfx/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kbookreader/debian/control b/ubuntu/maverick/applications/kbookreader/debian/control index cbea39b39..c6ab189eb 100644 --- a/ubuntu/maverick/applications/kbookreader/debian/control +++ b/ubuntu/maverick/applications/kbookreader/debian/control @@ -10,8 +10,8 @@ Homepage: http://k9copy.sourceforge.net/ Package: kbookreader-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: kbookreader-kde3 (<< 4:3.5.13) -Breaks: kbookreader-kde3 (<< 4:3.5.13) +Replaces: kbookreader-trinity (<< 4:14.0.0) +Breaks: kbookreader-trinity (<< 4:14.0.0) Description: eBook reader for Trinity kbookreader is an application which allows you to view eBooks within the Trinity Desktop Environment diff --git a/ubuntu/maverick/applications/kbookreader/debian/source/format b/ubuntu/maverick/applications/kbookreader/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kbookreader/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kbookreader/debian/source/options b/ubuntu/maverick/applications/kbookreader/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kbookreader/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kchmviewer/debian/control b/ubuntu/maverick/applications/kchmviewer/debian/control index 3a8e5bf73..93a25020d 100644 --- a/ubuntu/maverick/applications/kchmviewer/debian/control +++ b/ubuntu/maverick/applications/kchmviewer/debian/control @@ -10,8 +10,8 @@ Homepage: http://www.kchmviewer.net/ Package: kchmviewer-trinity Architecture: any Conflicts: kchmviewer-nokde-trinity -Replaces: kchmviewer-kde3 (<< 4:3.5.13) -Breaks: kchmviewer-kde3 (<< 4:3.5.13) +Replaces: kchmviewer-trinity (<< 4:14.0.0) +Breaks: kchmviewer-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, ${misc:Depends} Description: CHM viewer for Trinity KchmViewer is a chm (MS HTML help file format) viewer, written in C++. diff --git a/ubuntu/maverick/applications/kchmviewer/debian/source/format b/ubuntu/maverick/applications/kchmviewer/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kchmviewer/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kchmviewer/debian/source/options b/ubuntu/maverick/applications/kchmviewer/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kchmviewer/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kcpuload/debian/control b/ubuntu/maverick/applications/kcpuload/debian/control index ee0499761..8b5024c98 100644 --- a/ubuntu/maverick/applications/kcpuload/debian/control +++ b/ubuntu/maverick/applications/kcpuload/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: kcpuload-trinity Architecture: any Section: kde -Replaces: kcpuload-kde3 (<< 4:3.5.13) -Breaks: kcpuload-kde3 (<< 4:3.5.13) +Replaces: kcpuload-trinity (<< 4:14.0.0) +Breaks: kcpuload-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends} Suggests: knetload-trinity Description: a CPU meter for Kicker [Trinity] diff --git a/ubuntu/maverick/applications/kcpuload/debian/source/format b/ubuntu/maverick/applications/kcpuload/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kcpuload/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kcpuload/debian/source/options b/ubuntu/maverick/applications/kcpuload/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kcpuload/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kdbusnotification/debian/control b/ubuntu/maverick/applications/kdbusnotification/debian/control index b08146fc3..cd2ef673b 100644 --- a/ubuntu/maverick/applications/kdbusnotification/debian/control +++ b/ubuntu/maverick/applications/kdbusnotification/debian/control @@ -8,6 +8,8 @@ Standards-Version: 3.8.4 Package: kdbusnotification-trinity Architecture: any Section: kde +Replaces: kdbusnotification-trinity (<< 4:14.0.0) +Breaks: kdbusnotification-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends} Description: a DBUS notification service [Trinity] kdbusnotification is a small program for Trinity that displays diff --git a/ubuntu/maverick/applications/kdbusnotification/debian/source/format b/ubuntu/maverick/applications/kdbusnotification/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kdbusnotification/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kdbusnotification/debian/source/options b/ubuntu/maverick/applications/kdbusnotification/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kdbusnotification/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kdiff3/debian/control b/ubuntu/maverick/applications/kdiff3/debian/control index 9caa5fa2e..01e6d6a24 100644 --- a/ubuntu/maverick/applications/kdiff3/debian/control +++ b/ubuntu/maverick/applications/kdiff3/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: kdiff3-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: kdiff3-kde3 (<< 4:3.5.13) -Breaks: kdiff3-kde3 (<< 4:3.5.13) +Replaces: kdiff3-trinity (<< 4:14.0.0) +Breaks: kdiff3-trinity (<< 4:14.0.0) Recommends: kdiff3-trinity-doc Description: compares and merges 2 or 3 files or directories [Trinity] KDiff3 compares two or three input files and shows the differences @@ -22,8 +22,8 @@ Description: compares and merges 2 or 3 files or directories [Trinity] Package: kdiff3-trinity-doc Architecture: all Recommends: kdiff3-trinity -Replaces: kdiff3-kde3-doc (<< 4:3.5.13) -Breaks: kdiff3-kde3-doc (<< 4:3.5.13) +Replaces: kdiff3-trinity-doc (<< 4:14.0.0) +Breaks: kdiff3-trinity-doc (<< 4:14.0.0) Description: documentation for kdiff3 [Trinity] KDiff3 compares two or three input files and shows the differences line by line and character by character. This package contains the diff --git a/ubuntu/maverick/applications/kdiff3/debian/source/format b/ubuntu/maverick/applications/kdiff3/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kdiff3/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kdiff3/debian/source/options b/ubuntu/maverick/applications/kdiff3/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kdiff3/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kdirstat/debian/control b/ubuntu/maverick/applications/kdirstat/debian/control index e8946bff5..27e47ff0e 100644 --- a/ubuntu/maverick/applications/kdirstat/debian/control +++ b/ubuntu/maverick/applications/kdirstat/debian/control @@ -9,8 +9,8 @@ Homepage: http://kdirstat.sourceforge.net/ Package: kdirstat-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: kdirstat-kde3 (<< 4:3.5.13) -Breaks: kdirstat-kde3 (<< 4:3.5.13) +Replaces: kdirstat-trinity (<< 4:14.0.0) +Breaks: kdirstat-trinity (<< 4:14.0.0) Description: graphical disk usage display with cleanup facilities [Trinity] KDirStat (KDE Directory Statistics) is a small utility program that sums up disk usage for directory trees, very much like the Unix 'du' command. diff --git a/ubuntu/maverick/applications/kdirstat/debian/source/format b/ubuntu/maverick/applications/kdirstat/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kdirstat/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kdirstat/debian/source/options b/ubuntu/maverick/applications/kdirstat/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kdirstat/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kdmtheme/debian/README.Debian b/ubuntu/maverick/applications/kdmtheme/debian/README.Debian deleted file mode 100644 index 1291b6a32..000000000 --- a/ubuntu/maverick/applications/kdmtheme/debian/README.Debian +++ /dev/null @@ -1,7 +0,0 @@ -kdmtheme for Debian -------------------- - -kdmtheme is a KDE Control Module (KCM). To run it, open KDE Control Center and -go to System Administration to find KDM Theme Manager. - - -- Fathi Boudra <[email protected]>, Mon, 31 Jul 2006 18:33:26 +0200 diff --git a/ubuntu/maverick/applications/kdmtheme/debian/kdmtheme.lintian-overrides b/ubuntu/maverick/applications/kdmtheme/debian/kdmtheme.lintian-overrides deleted file mode 100644 index 4932c5f8a..000000000 --- a/ubuntu/maverick/applications/kdmtheme/debian/kdmtheme.lintian-overrides +++ /dev/null @@ -1,6 +0,0 @@ -# provided by tdelibs -kdmtheme: desktop-command-not-in-package ./usr/share/applications/kde/kdmtheme.desktop kcmshell -# kcontrol module -kdmtheme: desktop-entry-invalid-category X-KDE-settings-system ./usr/share/applications/kde/kdmtheme.desktop -kdmtheme: desktop-entry-lacks-main-category ./usr/share/applications/kde/kdmtheme.desktop - diff --git a/ubuntu/maverick/applications/kdmtheme/debian/watch b/ubuntu/maverick/applications/kdmtheme/debian/watch deleted file mode 100644 index 5cf8d8c80..000000000 --- a/ubuntu/maverick/applications/kdmtheme/debian/watch +++ /dev/null @@ -1,2 +0,0 @@ -version=3 -http://beta.smileaf.org/files/kdmtheme/kdmtheme-(.*)\.tar\.bz2 debian svn-upgrade diff --git a/ubuntu/maverick/applications/kdpkg/debian/control b/ubuntu/maverick/applications/kdpkg/debian/control index 5bf5bb345..15d673216 100644 --- a/ubuntu/maverick/applications/kdpkg/debian/control +++ b/ubuntu/maverick/applications/kdpkg/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: kdpkg-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, apt, dpkg (>=1.14), sudo-trinity, menu -Replaces: kdpkg-kde3 (<< 4:3.5.13) -Breaks: kdpkg-kde3 (<< 4:3.5.13) +Replaces: kdpkg-trinity (<< 4:14.0.0) +Breaks: kdpkg-trinity (<< 4:14.0.0) Description: KDE frontend for dpkg [Trinity] kdpkg is a utility for installing .deb package files. It is similar to gdebi, except that kdpkg is a KDE application diff --git a/ubuntu/maverick/applications/kdpkg/debian/source/format b/ubuntu/maverick/applications/kdpkg/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kdpkg/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kdpkg/debian/source/options b/ubuntu/maverick/applications/kdpkg/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kdpkg/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/keep/debian/control b/ubuntu/maverick/applications/keep/debian/control index 98d816db0..536f0d010 100644 --- a/ubuntu/maverick/applications/keep/debian/control +++ b/ubuntu/maverick/applications/keep/debian/control @@ -10,8 +10,8 @@ Standards-Version: 3.8.4 Package: keep-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, rdiff-backup -Replaces: keep-kde3 (<< 4:3.5.13) -Breaks: keep-kde3 (<< 4:3.5.13) +Replaces: keep-trinity (<< 4:14.0.0) +Breaks: keep-trinity (<< 4:14.0.0) Description: backup system for KDE [Trinity] Keep is an automatic backup program that allows users to set the parameters of the backup, including the frequency and the number of backups. diff --git a/ubuntu/maverick/applications/keep/debian/source/format b/ubuntu/maverick/applications/keep/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/keep/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/keep/debian/source/options b/ubuntu/maverick/applications/keep/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/keep/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kerry/debian/control b/ubuntu/maverick/applications/kerry/debian/control index 1775ae6ad..f43dc07dd 100644 --- a/ubuntu/maverick/applications/kerry/debian/control +++ b/ubuntu/maverick/applications/kerry/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: kerry-trinity Architecture: any Depends: ${shlibs:Depends}, beagle (>= 0.2.3) -Replaces: kerry-kde3 (<< 4:3.5.13) -Breaks: kerry-kde3 (<< 4:3.5.13) +Replaces: kerry-trinity (<< 4:14.0.0) +Breaks: kerry-trinity (<< 4:14.0.0) Description: a KDE frontend for the Beagle desktop search daemon [Trinity] Kerry is a Trinity frontend for the Beagle desktop search daemon. . diff --git a/ubuntu/maverick/applications/kerry/debian/source/format b/ubuntu/maverick/applications/kerry/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kerry/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kerry/debian/source/options b/ubuntu/maverick/applications/kerry/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kerry/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kgtk-qt3/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/kgtk-qt3/debian/cdbs/debian-qt-kde.mk index 47e83ef4a..856fa4932 100644 --- a/ubuntu/maverick/applications/kgtk-qt3/debian/cdbs/debian-qt-kde.mk +++ b/ubuntu/maverick/applications/kgtk-qt3/debian/cdbs/debian-qt-kde.mk @@ -10,9 +10,6 @@ _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) @@ -96,14 +93,18 @@ binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: 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 + +#common-build-indep:: debian/stamp-kde-apidox +#debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) +# touch $@ +# +#common-install-indep:: common-install-kde-apidox +#common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) +# +#clean:: +# rm -f debian/stamp-kde-apidox diff --git a/ubuntu/maverick/applications/kgtk-qt3/debian/cdbs/kde.mk b/ubuntu/maverick/applications/kgtk-qt3/debian/cdbs/kde.mk index 5b6508f8c..9dbcfbafd 100644 --- a/ubuntu/maverick/applications/kgtk-qt3/debian/cdbs/kde.mk +++ b/ubuntu/maverick/applications/kgtk-qt3/debian/cdbs/kde.mk @@ -35,7 +35,7 @@ else DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) endif -include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) +# include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) export kde_cgidir = \$${libdir}/cgi-bin export kde_confdir = \$${sysconfdir}/trinity @@ -59,7 +59,7 @@ endif cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin -DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/kde" +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/" DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el $(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: @@ -70,7 +70,7 @@ cleanbuilddir:: common-build-arch common-build-indep:: debian/stamp-kde-apidox debian/stamp-kde-apidox: - $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) touch $@ common-install-prehook-impl:: @@ -82,7 +82,7 @@ common-install-prehook-impl:: 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)) +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) clean:: rm -f debian/stamp-kde-apidox diff --git a/ubuntu/maverick/applications/kgtk-qt3/debian/control b/ubuntu/maverick/applications/kgtk-qt3/debian/control index 8152e92eb..5ba35f8d3 100644 --- a/ubuntu/maverick/applications/kgtk-qt3/debian/control +++ b/ubuntu/maverick/applications/kgtk-qt3/debian/control @@ -9,8 +9,8 @@ Homepage: http://trinity.pearsoncomputing.net Package: kgtk-qt3-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: kgtk-qt3-kde3 (<< 4:3.5.13) -Breaks: kgtk-qt3-kde3 (<< 4:3.5.13) +Replaces: kgtk-qt3-trinity (<< 4:14.0.0) +Breaks: kgtk-qt3-trinity (<< 4:14.0.0) Conflicts: kgtk-config-bluefish, kgtk-config-eclipse, kgtk-config-firefox, kgtk-config-gimp, kgtk-config-inkscape, kgtk-config-kino, kgtk-config-openoffice, kgtk-config-opera-qt3, kgtk-config-opera-qt4, kgtk-config-scribus, kgtk-config-thunderbird, kubuntu-kgtk-trinity Description: Use KDE dialogs in Gtk apps This is an LD_PRELOAD hack that allows most GTK diff --git a/ubuntu/maverick/applications/kgtk-qt3/debian/control.in b/ubuntu/maverick/applications/kgtk-qt3/debian/control.in new file mode 100644 index 000000000..b31284ac4 --- /dev/null +++ b/ubuntu/maverick/applications/kgtk-qt3/debian/control.in @@ -0,0 +1,24 @@ +Source: kgtk-qt3-trinity +Section: kde +Priority: optional +Maintainer: Timothy Pearson <[email protected]> +XSBC-Original-Maintainer: @@@MAINTAINER@@@ +Uploaders: @@@UPLOADERS@@@ +Build-Depends: debhelper (>= 7), cdbs, tdelibs4-trinity-dev, libgtk2.0-dev, libtqtinterface-dev, cmake +Standards-Version: 3.8.4 +Homepage: http://trinity.pearsoncomputing.net + +Package: kgtk-qt3-trinity +Architecture: any +Depends: ${shlibs:Depends} +Replaces: kgtk-qt3-kde3 (<< 4:3.5.13) +Breaks: kgtk-qt3-kde3 (<< 4:3.5.13) +Conflicts: kgtk-config-bluefish, kgtk-config-eclipse, kgtk-config-firefox, kgtk-config-gimp, kgtk-config-inkscape, kgtk-config-kino, kgtk-config-openoffice, kgtk-config-opera-qt3, kgtk-config-opera-qt4, kgtk-config-scribus, kgtk-config-thunderbird, kubuntu-kgtk-trinity +Description: Use KDE dialogs in Gtk apps + This is an LD_PRELOAD hack that allows most GTK + applications to use Trinity's file dialogs when run under Trinity. + . + The Gtk file chooser functions have been overridden to communicate + with this KDE module/application. + . + This package includes the kqt3-wrapper diff --git a/ubuntu/maverick/applications/kgtk-qt3/debian/rules b/ubuntu/maverick/applications/kgtk-qt3/debian/rules index 333c9807f..1948d86d6 100755 --- a/ubuntu/maverick/applications/kgtk-qt3/debian/rules +++ b/ubuntu/maverick/applications/kgtk-qt3/debian/rules @@ -1,31 +1,31 @@ #!/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. + +# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function +# Also include the main Trinity path +ifeq ("$(LD_LIBRARY_PATH)", "") +LD_LIBRARY_PATH=debian/tmp/opt/trinity/lib +else +LD_LIBRARY_PATH += :debian/tmp/opt/trinity/lib +endif +export LD_LIBRARY_PATH include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk +include debian/cdbs/debian-qt-kde.mk -DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde -DEB_CONFIGURE_MANDIR := /opt/trinity/share/man -DEB_CONFIGURE_PREFIX := /opt/trinity -DEB_CONFIGURE_INFODIR := /opt/trinity/share/info -DEB_CMAKE_CUSTOM_FLAGS := -DKGTK_KDE3=true -DKGTK_QT3=true - -cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) +DEB_KDE_APIDOX := yes -DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/trinity --with-extra-libs=/opt/trinity/lib +CXXFLAGS := -DSMB_CTX_FLAG_USE_KERBEROS -DSMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS -g -Wall $(DEB_OPT_FLAG) -configure/kgtk-qt3-trinity:: - env PATH=/opt/trinity/bin:$(PATH) CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde cmake -D CMAKE_INSTALL_PREFIX=/opt/trinity . +DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_INSTALL_PREFIX="/opt/trinity" -DCONFIG_INSTALL_DIR="/etc/trinity" -DSYSCONF_INSTALL_DIR="/etc/trinity" -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/" -DAUTODETECT_QT_DIRS="ON" -DCMAKE_VERBOSE_MAKEFILE="ON" -DBUILD_ALL="ON" -DCMAKE_SKIP_RPATH="OFF" -build/kgtk-qt3-trinity:: - env PATH=/opt/trinity/bin:$(PATH) CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde $(MAKE) +# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to +# never build in parallel, regardless of DEB_BUILD_OPTIONS. +DEB_BUILD_PARALLEL = true -install/kgtk-qt3-trinity:: - env PATH=/opt/trinity/bin:$(PATH) CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde $(MAKE) install DESTDIR=$(CURDIR)/debian/kgtk-qt3-trinity +binary-install/kgtk-qt3-trinity:: mkdir -p $(CURDIR)/debian/kgtk-qt3-trinity/opt/trinity/share/kgtk/ cp -Rp $(CURDIR)/debian/preload $(CURDIR)/debian/kgtk-qt3-trinity/opt/trinity/share/kgtk/ + diff --git a/ubuntu/maverick/applications/kgtk-qt3/debian/source/format b/ubuntu/maverick/applications/kgtk-qt3/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kgtk-qt3/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kgtk-qt3/debian/source/options b/ubuntu/maverick/applications/kgtk-qt3/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kgtk-qt3/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kile/debian/control b/ubuntu/maverick/applications/kile/debian/control index 18bfb1feb..b39ba1894 100644 --- a/ubuntu/maverick/applications/kile/debian/control +++ b/ubuntu/maverick/applications/kile/debian/control @@ -11,8 +11,8 @@ Homepage: http://kile.sourceforge.net Package: kile-trinity Architecture: any Section: tex -Replaces: kile-kde3 (<< 4:3.5.13) -Breaks: kile-kde3 (<< 4:3.5.13) +Replaces: kile-trinity (<< 4:14.0.0) +Breaks: kile-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, konsole-trinity, texlive-latex-base Recommends: kdvi-trinity, dvipng, kghostview-trinity, kpdf-trinity Suggests: gbib, latex2html, pybliographer, xfig, kile-trinity-i18n, gv @@ -33,8 +33,8 @@ Description: KDE Integrated LaTeX Environment [Trinity] Package: kile-trinity-i18n-ar Architecture: all Section: tex -Replaces: kile-kde3-i18n-ar (<< 4:3.5.13) -Breaks: kile-kde3-i18n-ar (<< 4:3.5.13) +Replaces: kile-trinity-i18n-ar (<< 4:14.0.0) +Breaks: kile-trinity-i18n-ar (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-ar Provides: kile-trinity-i18n @@ -44,8 +44,8 @@ Description: Arabic (ar) translations for Kile [Trinity] Package: kile-trinity-i18n-bg Architecture: all Section: tex -Replaces: kile-kde3-i18n-bg (<< 4:3.5.13) -Breaks: kile-kde3-i18n-bg (<< 4:3.5.13) +Replaces: kile-trinity-i18n-bg (<< 4:14.0.0) +Breaks: kile-trinity-i18n-bg (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-bg Provides: kile-trinity-i18n @@ -55,8 +55,8 @@ Description: Bulgarian (bg) translations for Kile [Trinity] Package: kile-trinity-i18n-br Architecture: all Section: tex -Replaces: kile-kde3-i18n-br (<< 4:3.5.13) -Breaks: kile-kde3-i18n-br (<< 4:3.5.13) +Replaces: kile-trinity-i18n-br (<< 4:14.0.0) +Breaks: kile-trinity-i18n-br (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-br Provides: kile-trinity-i18n @@ -66,8 +66,8 @@ Description: Brazilian (br) translations for Kile [Trinity] Package: kile-trinity-i18n-ca Architecture: all Section: tex -Replaces: kile-kde3-i18n-ca (<< 4:3.5.13) -Breaks: kile-kde3-i18n-ca (<< 4:3.5.13) +Replaces: kile-trinity-i18n-ca (<< 4:14.0.0) +Breaks: kile-trinity-i18n-ca (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-ca Provides: kile-trinity-i18n @@ -77,8 +77,8 @@ Description: Catalan (ca) translations for Kile [Trinity] Package: kile-trinity-i18n-cs Architecture: all Section: tex -Replaces: kile-kde3-i18n-cs (<< 4:3.5.13) -Breaks: kile-kde3-i18n-cs (<< 4:3.5.13) +Replaces: kile-trinity-i18n-cs (<< 4:14.0.0) +Breaks: kile-trinity-i18n-cs (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-cs Provides: kile-trinity-i18n @@ -88,8 +88,8 @@ Description: Czech (cs) translations for Kile [Trinity] Package: kile-trinity-i18n-cy Architecture: all Section: tex -Replaces: kile-kde3-i18n-cy (<< 4:3.5.13) -Breaks: kile-kde3-i18n-cy (<< 4:3.5.13) +Replaces: kile-trinity-i18n-cy (<< 4:14.0.0) +Breaks: kile-trinity-i18n-cy (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-cy Provides: kile-trinity-i18n @@ -99,8 +99,8 @@ Description: Welsh (cy) translations for Kile [Trinity] Package: kile-trinity-i18n-da Architecture: all Section: tex -Replaces: kile-kde3-i18n-da (<< 4:3.5.13) -Breaks: kile-kde3-i18n-da (<< 4:3.5.13) +Replaces: kile-trinity-i18n-da (<< 4:14.0.0) +Breaks: kile-trinity-i18n-da (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-da Provides: kile-trinity-i18n @@ -110,8 +110,8 @@ Description: Danish (da) translations for Kile [Trinity] Package: kile-trinity-i18n-de Architecture: all Section: tex -Replaces: kile-kde3-i18n-de (<< 4:3.5.13) -Breaks: kile-kde3-i18n-de (<< 4:3.5.13) +Replaces: kile-trinity-i18n-de (<< 4:14.0.0) +Breaks: kile-trinity-i18n-de (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-de Provides: kile-trinity-i18n @@ -121,8 +121,8 @@ Description: German (de) translations for Kile [Trinity] Package: kile-trinity-i18n-el Architecture: all Section: tex -Replaces: kile-kde3-i18n-el (<< 4:3.5.13) -Breaks: kile-kde3-i18n-el (<< 4:3.5.13) +Replaces: kile-trinity-i18n-el (<< 4:14.0.0) +Breaks: kile-trinity-i18n-el (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-el Provides: kile-trinity-i18n @@ -132,8 +132,8 @@ Description: Greek (el) translations for Kile [Trinity] Package: kile-trinity-i18n-engb Architecture: all Section: tex -Replaces: kile-kde3-i18n-engb (<< 4:3.5.13) -Breaks: kile-kde3-i18n-engb (<< 4:3.5.13) +Replaces: kile-trinity-i18n-engb (<< 4:14.0.0) +Breaks: kile-trinity-i18n-engb (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-engb Provides: kile-trinity-i18n @@ -143,8 +143,8 @@ Description: British English (en_GB) translations for Kile [Trinity] Package: kile-trinity-i18n-es Architecture: all Section: tex -Replaces: kile-kde3-i18n-es (<< 4:3.5.13) -Breaks: kile-kde3-i18n-es (<< 4:3.5.13) +Replaces: kile-trinity-i18n-es (<< 4:14.0.0) +Breaks: kile-trinity-i18n-es (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-es Provides: kile-trinity-i18n @@ -154,8 +154,8 @@ Description: Spanish (es) translations for Kile [Trinity] Package: kile-trinity-i18n-et Architecture: all Section: tex -Replaces: kile-kde3-i18n-et (<< 4:3.5.13) -Breaks: kile-kde3-i18n-et (<< 4:3.5.13) +Replaces: kile-trinity-i18n-et (<< 4:14.0.0) +Breaks: kile-trinity-i18n-et (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-et Provides: kile-trinity-i18n @@ -165,8 +165,8 @@ Description: Estonian (et) translations for Kile [Trinity] Package: kile-trinity-i18n-eu Architecture: all Section: tex -Replaces: kile-kde3-i18n-eu (<< 4:3.5.13) -Breaks: kile-kde3-i18n-eu (<< 4:3.5.13) +Replaces: kile-trinity-i18n-eu (<< 4:14.0.0) +Breaks: kile-trinity-i18n-eu (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-eu Provides: kile-trinity-i18n @@ -176,8 +176,8 @@ Description: Basque (eu) translations for Kile [Trinity] Package: kile-trinity-i18n-fi Architecture: all Section: tex -Replaces: kile-kde3-i18n-fi (<< 4:3.5.13) -Breaks: kile-kde3-i18n-fi (<< 4:3.5.13) +Replaces: kile-trinity-i18n-fi (<< 4:14.0.0) +Breaks: kile-trinity-i18n-fi (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-fi Provides: kile-trinity-i18n @@ -187,8 +187,8 @@ Description: Finnish (fi) translations for Kile [Trinity] Package: kile-trinity-i18n-fr Architecture: all Section: tex -Replaces: kile-kde3-i18n-fr (<< 4:3.5.13) -Breaks: kile-kde3-i18n-fr (<< 4:3.5.13) +Replaces: kile-trinity-i18n-fr (<< 4:14.0.0) +Breaks: kile-trinity-i18n-fr (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-fr Provides: kile-trinity-i18n @@ -198,8 +198,8 @@ Description: French (fr) translations for Kile [Trinity] Package: kile-trinity-i18n-ga Architecture: all Section: tex -Replaces: kile-kde3-i18n-ga (<< 4:3.5.13) -Breaks: kile-kde3-i18n-ga (<< 4:3.5.13) +Replaces: kile-trinity-i18n-ga (<< 4:14.0.0) +Breaks: kile-trinity-i18n-ga (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-ga Provides: kile-trinity-i18n @@ -209,8 +209,8 @@ Description: Irish Gaelic (ga) translations for Kile [Trinity] Package: kile-trinity-i18n-gl Architecture: all Section: tex -Replaces: kile-kde3-i18n-gl (<< 4:3.5.13) -Breaks: kile-kde3-i18n-gl (<< 4:3.5.13) +Replaces: kile-trinity-i18n-gl (<< 4:14.0.0) +Breaks: kile-trinity-i18n-gl (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-gl Provides: kile-trinity-i18n @@ -220,8 +220,8 @@ Description: Galician (gl) translations for Kile [Trinity] Package: kile-trinity-i18n-hi Architecture: all Section: tex -Replaces: kile-kde3-i18n-hi (<< 4:3.5.13) -Breaks: kile-kde3-i18n-hi (<< 4:3.5.13) +Replaces: kile-trinity-i18n-hi (<< 4:14.0.0) +Breaks: kile-trinity-i18n-hi (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-hi Provides: kile-trinity-i18n @@ -231,8 +231,8 @@ Description: Hindi (hi) translations for Kile [Trinity] Package: kile-trinity-i18n-hu Architecture: all Section: tex -Replaces: kile-kde3-i18n-hu (<< 4:3.5.13) -Breaks: kile-kde3-i18n-hu (<< 4:3.5.13) +Replaces: kile-trinity-i18n-hu (<< 4:14.0.0) +Breaks: kile-trinity-i18n-hu (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-hu Provides: kile-trinity-i18n @@ -242,8 +242,8 @@ Description: Hungarian (hu) translations for Kile [Trinity] Package: kile-trinity-i18n-is Architecture: all Section: tex -Replaces: kile-kde3-i18n-is (<< 4:3.5.13) -Breaks: kile-kde3-i18n-is (<< 4:3.5.13) +Replaces: kile-trinity-i18n-is (<< 4:14.0.0) +Breaks: kile-trinity-i18n-is (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-is Provides: kile-trinity-i18n @@ -253,8 +253,8 @@ Description: Icelandic (is) translations for Kile [Trinity] Package: kile-trinity-i18n-it Architecture: all Section: tex -Replaces: kile-kde3-i18n-it (<< 4:3.5.13) -Breaks: kile-kde3-i18n-it (<< 4:3.5.13) +Replaces: kile-trinity-i18n-it (<< 4:14.0.0) +Breaks: kile-trinity-i18n-it (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-it Provides: kile-trinity-i18n @@ -264,8 +264,8 @@ Description: Italian (it) translations for Kile [Trinity] Package: kile-trinity-i18n-ja Architecture: all Section: tex -Replaces: kile-kde3-i18n-ja (<< 4:3.5.13) -Breaks: kile-kde3-i18n-ja (<< 4:3.5.13) +Replaces: kile-trinity-i18n-ja (<< 4:14.0.0) +Breaks: kile-trinity-i18n-ja (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-ja Provides: kile-trinity-i18n @@ -275,8 +275,8 @@ Description: Japanese (ja) translations for Kile [Trinity] Package: kile-trinity-i18n-lt Architecture: all Section: tex -Replaces: kile-kde3-i18n-lt (<< 4:3.5.13) -Breaks: kile-kde3-i18n-lt (<< 4:3.5.13) +Replaces: kile-trinity-i18n-lt (<< 4:14.0.0) +Breaks: kile-trinity-i18n-lt (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-lt Provides: kile-trinity-i18n @@ -286,8 +286,8 @@ Description: Lithuanian (lt) translations for Kile [Trinity] Package: kile-trinity-i18n-ms Architecture: all Section: tex -Replaces: kile-kde3-i18n-ms (<< 4:3.5.13) -Breaks: kile-kde3-i18n-ms (<< 4:3.5.13) +Replaces: kile-trinity-i18n-ms (<< 4:14.0.0) +Breaks: kile-trinity-i18n-ms (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-ms Provides: kile-trinity-i18n @@ -297,8 +297,8 @@ Description: Malay (ms) translations for Kile [Trinity] Package: kile-trinity-i18n-mt Architecture: all Section: tex -Replaces: kile-kde3-i18n-mt (<< 4:3.5.13) -Breaks: kile-kde3-i18n-mt (<< 4:3.5.13) +Replaces: kile-trinity-i18n-mt (<< 4:14.0.0) +Breaks: kile-trinity-i18n-mt (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Provides: kile-trinity-i18n Description: Maltese (mt) translations for Kile [Trinity] @@ -307,8 +307,8 @@ Description: Maltese (mt) translations for Kile [Trinity] Package: kile-trinity-i18n-nb Architecture: all Section: tex -Replaces: kile-kde3-i18n-nb (<< 4:3.5.13) -Breaks: kile-kde3-i18n-nb (<< 4:3.5.13) +Replaces: kile-trinity-i18n-nb (<< 4:14.0.0) +Breaks: kile-trinity-i18n-nb (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-nb Provides: kile-trinity-i18n @@ -318,8 +318,8 @@ Description: Norwegian Bookmal (nb) translations for Kile [Trinity] Package: kile-trinity-i18n-nds Architecture: all Section: tex -Replaces: kile-kde3-i18n-nds (<< 4:3.5.13) -Breaks: kile-kde3-i18n-nds (<< 4:3.5.13) +Replaces: kile-trinity-i18n-nds (<< 4:14.0.0) +Breaks: kile-trinity-i18n-nds (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-nds Provides: kile-trinity-i18n @@ -329,8 +329,8 @@ Description: Low Saxon (nds) translations for Kile [Trinity] Package: kile-trinity-i18n-nl Architecture: all Section: tex -Replaces: kile-kde3-i18n-nl (<< 4:3.5.13) -Breaks: kile-kde3-i18n-nl (<< 4:3.5.13) +Replaces: kile-trinity-i18n-nl (<< 4:14.0.0) +Breaks: kile-trinity-i18n-nl (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-nl Provides: kile-trinity-i18n @@ -340,8 +340,8 @@ Description: Dutch (nl) translations for Kile [Trinity] Package: kile-trinity-i18n-nn Architecture: all Section: tex -Replaces: kile-kde3-i18n-nn (<< 4:3.5.13) -Breaks: kile-kde3-i18n-nn (<< 4:3.5.13) +Replaces: kile-trinity-i18n-nn (<< 4:14.0.0) +Breaks: kile-trinity-i18n-nn (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-nn Provides: kile-trinity-i18n @@ -351,8 +351,8 @@ Description: Norwegian Nynorsk (nn) translations for Kile [Trinity] Package: kile-trinity-i18n-pa Architecture: all Section: tex -Replaces: kile-kde3-i18n-pa (<< 4:3.5.13) -Breaks: kile-kde3-i18n-pa (<< 4:3.5.13) +Replaces: kile-trinity-i18n-pa (<< 4:14.0.0) +Breaks: kile-trinity-i18n-pa (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-pa Provides: kile-trinity-i18n @@ -362,8 +362,8 @@ Description: Punjabi (pa) translations for Kile [Trinity] Package: kile-trinity-i18n-pl Architecture: all Section: tex -Replaces: kile-kde3-i18n-pl (<< 4:3.5.13) -Breaks: kile-kde3-i18n-pl (<< 4:3.5.13) +Replaces: kile-trinity-i18n-pl (<< 4:14.0.0) +Breaks: kile-trinity-i18n-pl (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-pl Provides: kile-trinity-i18n @@ -373,8 +373,8 @@ Description: Polish (pl) translations for Kile [Trinity] Package: kile-trinity-i18n-pt Architecture: all Section: tex -Replaces: kile-kde3-i18n-pt (<< 4:3.5.13) -Breaks: kile-kde3-i18n-pt (<< 4:3.5.13) +Replaces: kile-trinity-i18n-pt (<< 4:14.0.0) +Breaks: kile-trinity-i18n-pt (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-pt Provides: kile-trinity-i18n @@ -384,8 +384,8 @@ Description: Portuguese (pt) translations for Kile [Trinity] Package: kile-trinity-i18n-ptbr Architecture: all Section: tex -Replaces: kile-kde3-i18n-ptbr (<< 4:3.5.13) -Breaks: kile-kde3-i18n-ptbr (<< 4:3.5.13) +Replaces: kile-trinity-i18n-ptbr (<< 4:14.0.0) +Breaks: kile-trinity-i18n-ptbr (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-ptbr Provides: kile-trinity-i18n @@ -395,8 +395,8 @@ Description: Brazilian Portuguese (pt_BR) translations for Kile [Trinity] Package: kile-trinity-i18n-ro Architecture: all Section: tex -Replaces: kile-kde3-i18n-ro (<< 4:3.5.13) -Breaks: kile-kde3-i18n-ro (<< 4:3.5.13) +Replaces: kile-trinity-i18n-ro (<< 4:14.0.0) +Breaks: kile-trinity-i18n-ro (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-ro Provides: kile-trinity-i18n @@ -406,8 +406,8 @@ Description: Romanian (ro) translations for Kile [Trinity] Package: kile-trinity-i18n-ru Architecture: all Section: tex -Replaces: kile-kde3-i18n-ru (<< 4:3.5.13) -Breaks: kile-kde3-i18n-ru (<< 4:3.5.13) +Replaces: kile-trinity-i18n-ru (<< 4:14.0.0) +Breaks: kile-trinity-i18n-ru (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-ru Provides: kile-trinity-i18n @@ -417,8 +417,8 @@ Description: Russian (ru) translations for Kile [Trinity] Package: kile-trinity-i18n-rw Architecture: all Section: tex -Replaces: kile-kde3-i18n-rw (<< 4:3.5.13) -Breaks: kile-kde3-i18n-rw (<< 4:3.5.13) +Replaces: kile-trinity-i18n-rw (<< 4:14.0.0) +Breaks: kile-trinity-i18n-rw (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-rw Provides: kile-trinity-i18n @@ -428,8 +428,8 @@ Description: Kinyarwanda (rw) translations for Kile [Trinity] Package: kile-trinity-i18n-sk Architecture: all Section: tex -Replaces: kile-kde3-i18n-sk (<< 4:3.5.13) -Breaks: kile-kde3-i18n-sk (<< 4:3.5.13) +Replaces: kile-trinity-i18n-sk (<< 4:14.0.0) +Breaks: kile-trinity-i18n-sk (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-sk Provides: kile-trinity-i18n @@ -439,8 +439,8 @@ Description: Slovak (sk) translations for Kile [Trinity] Package: kile-trinity-i18n-sr Architecture: all Section: tex -Replaces: kile-kde3-i18n-sr (<< 4:3.5.13) -Breaks: kile-kde3-i18n-sr (<< 4:3.5.13) +Replaces: kile-trinity-i18n-sr (<< 4:14.0.0) +Breaks: kile-trinity-i18n-sr (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-sr Provides: kile-trinity-i18n @@ -450,8 +450,8 @@ Description: Serbian (sr) translations for Kile [Trinity] Package: kile-trinity-i18n-srlatin Architecture: all Section: tex -Replaces: kile-kde3-i18n-srlatin (<< 4:3.5.13) -Breaks: kile-kde3-i18n-srlatin (<< 4:3.5.13) +Replaces: kile-trinity-i18n-srlatin (<< 4:14.0.0) +Breaks: kile-trinity-i18n-srlatin (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-srlatin Provides: kile-trinity-i18n @@ -461,8 +461,8 @@ Description: Latin Serbian (sr@Latn) translations for Kile [Trinity] Package: kile-trinity-i18n-sv Architecture: all Section: tex -Replaces: kile-kde3-i18n-sv (<< 4:3.5.13) -Breaks: kile-kde3-i18n-sv (<< 4:3.5.13) +Replaces: kile-trinity-i18n-sv (<< 4:14.0.0) +Breaks: kile-trinity-i18n-sv (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-sv Provides: kile-trinity-i18n @@ -472,8 +472,8 @@ Description: Swedish (sv) translations for Kile [Trinity] Package: kile-trinity-i18n-ta Architecture: all Section: tex -Replaces: kile-kde3-i18n-ta (<< 4:3.5.13) -Breaks: kile-kde3-i18n-ta (<< 4:3.5.13) +Replaces: kile-trinity-i18n-ta (<< 4:14.0.0) +Breaks: kile-trinity-i18n-ta (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-ta Provides: kile-trinity-i18n @@ -483,8 +483,8 @@ Description: Tamil (ta) translations for Kile [Trinity] Package: kile-trinity-i18n-th Architecture: all Section: tex -Replaces: kile-kde3-i18n-th (<< 4:3.5.13) -Breaks: kile-kde3-i18n-th (<< 4:3.5.13) +Replaces: kile-trinity-i18n-th (<< 4:14.0.0) +Breaks: kile-trinity-i18n-th (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-th Provides: kile-trinity-i18n @@ -494,8 +494,8 @@ Description: Thai (th) translations for Kile [Trinity] Package: kile-trinity-i18n-tr Architecture: all Section: tex -Replaces: kile-kde3-i18n-tr (<< 4:3.5.13) -Breaks: kile-kde3-i18n-tr (<< 4:3.5.13) +Replaces: kile-trinity-i18n-tr (<< 4:14.0.0) +Breaks: kile-trinity-i18n-tr (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-tr Provides: kile-trinity-i18n @@ -505,8 +505,8 @@ Description: Turkish (tr) translations for Kile [Trinity] Package: kile-trinity-i18n-uk Architecture: all Section: tex -Replaces: kile-kde3-i18n-uk (<< 4:3.5.13) -Breaks: kile-kde3-i18n-uk (<< 4:3.5.13) +Replaces: kile-trinity-i18n-uk (<< 4:14.0.0) +Breaks: kile-trinity-i18n-uk (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-uk Provides: kile-trinity-i18n @@ -516,8 +516,8 @@ Description: Ukrainian (uk) translations for Kile [Trinity] Package: kile-trinity-i18n-zhcn Architecture: all Section: tex -Replaces: kile-kde3-i18n-zhcn (<< 4:3.5.13) -Breaks: kile-kde3-i18n-zhcn (<< 4:3.5.13) +Replaces: kile-trinity-i18n-zhcn (<< 4:14.0.0) +Breaks: kile-trinity-i18n-zhcn (<< 4:14.0.0) Depends: kile-trinity (>= ${source:Version}) Recommends: kde-trinity-i18n-zhcn Provides: kile-trinity-i18n diff --git a/ubuntu/maverick/applications/kile/debian/source/format b/ubuntu/maverick/applications/kile/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kile/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kile/debian/source/options b/ubuntu/maverick/applications/kile/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kile/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kima/debian/control b/ubuntu/maverick/applications/kima/debian/control index 59fc2c85b..3f2b78348 100644 --- a/ubuntu/maverick/applications/kima/debian/control +++ b/ubuntu/maverick/applications/kima/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: kima-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: kima-kde3 (<< 4:3.5.13) -Breaks: kima-kde3 (<< 4:3.5.13) +Replaces: kima-trinity (<< 4:14.0.0) +Breaks: kima-trinity (<< 4:14.0.0) Description: kicker monitoring applet [Trinity] This applet monitors various temperature, frequency and fan sources in your kicker diff --git a/ubuntu/maverick/applications/kima/debian/source/format b/ubuntu/maverick/applications/kima/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kima/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kima/debian/source/options b/ubuntu/maverick/applications/kima/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kima/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kio-apt/debian/control b/ubuntu/maverick/applications/kio-apt/debian/control index ca97e58b9..46eec78e4 100644 --- a/ubuntu/maverick/applications/kio-apt/debian/control +++ b/ubuntu/maverick/applications/kio-apt/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: kio-apt-trinity Architecture: any Depends: ${shlibs:Depends}, apt, adept-batch-trinity -Replaces: kio-apt-kde3 (<< 4:3.5.13) -Breaks: kio-apt-kde3 (<< 4:3.5.13) +Replaces: kio-apt-trinity (<< 4:14.0.0) +Breaks: kio-apt-trinity (<< 4:14.0.0) Description: an apt-cache ioslave for Trinity kio-apt is an ioslave which provides the apt:/ protocol. It integrates apt-cache functionalities into Konqueror, making diff --git a/ubuntu/maverick/applications/kio-apt/debian/source/format b/ubuntu/maverick/applications/kio-apt/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kio-apt/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kio-apt/debian/source/options b/ubuntu/maverick/applications/kio-apt/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kio-apt/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kio-locate/debian/cdbs/buildvars.mk b/ubuntu/maverick/applications/kio-locate/debian/cdbs/buildvars.mk new file mode 100644 index 000000000..23d4709dc --- /dev/null +++ b/ubuntu/maverick/applications/kio-locate/debian/cdbs/buildvars.mk @@ -0,0 +1,86 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2002,2003 Colin Walters <[email protected]> +# Description: Defines some useful variables, but no rules +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_buildvars +_cdbs_rules_buildvars = 1 + +CDBS_VERSION = something + +# Common useful variables +DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':')) +DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') +DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) +DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') +DEB_ISNATIVE := $(shell dpkg-parsechangelog | egrep '^Version:' | perl -ne 'print if not /^Version:\s*.*-/;') + +# Split into arch/indep packages +ifneq ($(DEB_INDEP_PACKAGES),cdbs) +DEB_INDEP_PACKAGES := $(filter-out $(DONT_BUILD), $(strip $(shell $(_cdbs_scripts_path)/list-packages indep))) +DEB_ARCH_PACKAGES := $(filter-out $(DONT_BUILD), $(filter-out $(DEB_INDEP_PACKAGES),$(strip $(shell $(_cdbs_scripts_path)/list-packages same)))) +endif +# Split into normal and udeb packages +ifeq ($(DEB_UDEB_PACKAGES),) +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +DEB_UDEB_PACKAGES = $(filter-out $(DONT_BUILD),$(filter %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +else +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES), $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +endif +# Too much bother for now. If someone complains we'll fix it. +#DEB_ARCH_UDEB_PACKAGES = $(filter %-udeb, $(DEB_ARCH_PACKAGES)) +#DEB_INDEP_UDEB_PACKAGES = $(filter %-udeb, $(DEB_INDEP_PACKAGES)) +# A handy list of every package, udeb or not +DEB_ALL_PACKAGES = $(filter-out $(DONT_BUILD),$(DEB_PACKAGES) $(DEB_UDEB_PACKAGES)) +DEB_INDEP_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_INDEP_PACKAGES))) +DEB_ARCH_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_ARCH_PACKAGES))) + +DEB_DBG_PACKAGES = $(filter-out $(DONT_BUILD), $(filter %-dbg, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) + +# Some support for srcdir != builddir builds. +# These are relative to the root of the package +DEB_SRCDIR ?= . +DEB_BUILDDIR ?= $(strip $(DEB_SRCDIR)) + +# Miscellaneous bits +DEB_ARCH = $(shell dpkg --print-architecture) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) +DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) +DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) + +ifeq ($(words $(DEB_ALL_PACKAGES)),1) + DEB_DESTDIR = $(CURDIR)/debian/$(strip $(DEB_ALL_PACKAGES))/ +else + DEB_DESTDIR = $(CURDIR)/debian/tmp/ +endif + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.23-1.1) + +endif diff --git a/ubuntu/maverick/applications/kio-locate/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/kio-locate/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..856fa4932 --- /dev/null +++ b/ubuntu/maverick/applications/kio-locate/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,110 @@ +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_debian-qt-kde +_cdbs_class_debian-qt-kde := 1 + +# Note: This _must_ be included before autotools.mk, or it won't work. +common-configure-arch common-configure-indep:: debian/stamp-cvs-make +debian/stamp-cvs-make: + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) +include debian/cdbs/uploaders.mk + +DEB_PATCHDIRS := debian/patches/common debian/patches + +DEB_KDE_ENABLE_FINAL := yes +DEB_INSTALL_DOCS_ALL := + +DEB_DH_MAKESHLIBS_ARGS_ALL := -V +DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib) + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) + else + cdbs_kde_enable_final = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +common-binary-indep:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_INDEP_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +common-binary-arch:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_ARCH_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +clean:: + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -rf debian/shlibs-check + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + done + +clean:: + rm -f debian/stamp-cvs-make + +endif + +#common-build-indep:: debian/stamp-kde-apidox +#debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) +# touch $@ +# +#common-install-indep:: common-install-kde-apidox +#common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) +# +#clean:: +# rm -f debian/stamp-kde-apidox diff --git a/ubuntu/maverick/applications/kio-locate/debian/cdbs/kde.mk b/ubuntu/maverick/applications/kio-locate/debian/cdbs/kde.mk new file mode 100644 index 000000000..9dbcfbafd --- /dev/null +++ b/ubuntu/maverick/applications/kio-locate/debian/cdbs/kde.mk @@ -0,0 +1,97 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Christopher L Cheney <[email protected]> +# Description: A class for KDE packages; sets KDE environment variables, etc +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_kde +_cdbs_class_kde := 1 + +# for dh_icons +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +# include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) + +export kde_cgidir = \$${libdir}/cgi-bin +export kde_confdir = \$${sysconfdir}/trinity +export kde_htmldir = \$${datadir}/doc/kde/HTML + +ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) +endif + +ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = + cdbs_kde_enable_debug = --enable-debug=yes +else + cdbs_kde_enable_debug = --disable-debug +endif + +ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_debug = --enable-debug=full +endif + +cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/" +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi + +cleanbuilddir:: + -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) + +common-build-arch common-build-indep:: debian/stamp-kde-apidox +debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) + touch $@ + +common-install-prehook-impl:: + mkdir -p po + -XGETTEXT=/usr/bin/kde-xgettext EXTRACTATTR=/opt/trinity/bin/extractattr sh $(DEB_SRCDIR)/admin/cvs.sh extract-messages + -for file in po/*pot; do \ + sed "s/charset=CHARSET/charset=UTF-8/" -i $$file; \ + done + +common-install-arch common-install-indep:: common-install-kde-apidox +common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) + +clean:: + rm -f debian/stamp-kde-apidox + rm -rf po/*.pot + +# This is a convenience target for calling manually. It's not part of +# the build process. +buildprep: clean apply-patches + $(MAKE) -f admin/Makefile.common dist + debian/rules clean + +endif diff --git a/ubuntu/maverick/applications/kio-locate/debian/cdbs/team-members b/ubuntu/maverick/applications/kio-locate/debian/cdbs/team-members new file mode 100644 index 000000000..05761af6e --- /dev/null +++ b/ubuntu/maverick/applications/kio-locate/debian/cdbs/team-members @@ -0,0 +1,16 @@ +Sune Vuorela <[email protected]> +Ana Beatriz Guerrero Lopez <[email protected]> +Fathi Boudra <[email protected]> +Modestas Vainius <[email protected]> +Josh Metzler <[email protected]> +Isaac Clerencia <[email protected]> +Adeodato Simó <[email protected]> +Adeodato Simo <[email protected]> +Christopher Martin <[email protected]> +Daniel Schepler <[email protected]> +Sarah Hobbs <[email protected]> +Nacho Barrientos Arias <[email protected]> +Ricardo Javier Cardenes Medina <[email protected]> +Ricardo Cardenes <[email protected]> +Armin Berres <[email protected]> +Francesco Pedrini <[email protected]> diff --git a/ubuntu/maverick/applications/kio-locate/debian/cdbs/uploaders.mk b/ubuntu/maverick/applications/kio-locate/debian/cdbs/uploaders.mk new file mode 100644 index 000000000..31adfe31e --- /dev/null +++ b/ubuntu/maverick/applications/kio-locate/debian/cdbs/uploaders.mk @@ -0,0 +1,29 @@ + +MAINTAINER=Debian Qt/KDE Maintainers <[email protected]> +UPLOADERS=$(shell grep -e +++ -e "^ -- " debian/changelog | grep -v "[email protected]" | head -13 | /bin/sed 's/^\s*//;s/\s*$$//;s/^+++\? Changes by //;s/^+++\? //;s/-- //;s/:$$//;s/ <.*//' | sort -u | while read line ; do grep "$$line" debian/cdbs/team-members ; done | tr "\n" ", " | sed 's/,/, /g;s/, $$//') + + +debian/control.tmp: + @if [ ! -e debian/control.in ] ; then \ + echo "this package is not yet prepared for using automatic update of uploaders"; \ + echo "Please do so."; \ + exit 1; \ + fi + @sed 's/@@@UPLOADERS@@@/$(UPLOADERS)/;s#@@@MAINTAINER@@@#$(MAINTAINER)#' debian/control.in > debian/control.tmp + +check-uploaders: debian/control.tmp + @if ! diff -q debian/control debian/control.tmp ; then \ + echo "WARNING:: Control file differs from manually generated one" ; \ + echo "WARNING:: Please update it manually and check it afterwards" ; \ + echo "WARNING:: Uploaders are updated by debian/rules update-uploaders" ;\ + echo "WARNING:: If this is a binNMU, NMU or security upload, just ignore" ;\ + fi + + +clean:: + rm -f debian/control.tmp + +update-uploaders: debian/control.tmp + @mv -f debian/control.tmp debian/control + +makebuilddir:: check-uploaders diff --git a/ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl b/ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/ubuntu/maverick/applications/kio-locate/debian/cdbs/versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; +my ($version3, $version3_next); +my ($version2, $version2_next); + +($version3 = $version) =~ s/-[^-]+$//; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "KDE-Version3=$version3\n"; +print "KDE-Version2=$version2\n"; +print "KDE-Next-Version3=$version3_next\n"; +print "KDE-Next-Version2=$version2_next\n"; diff --git a/ubuntu/maverick/applications/kio-locate/debian/control b/ubuntu/maverick/applications/kio-locate/debian/control index a66f03f96..5c668f1bf 100644 --- a/ubuntu/maverick/applications/kio-locate/debian/control +++ b/ubuntu/maverick/applications/kio-locate/debian/control @@ -3,14 +3,14 @@ Section: kde Priority: optional Maintainer: Timothy Pearson <[email protected]> XSBC-Original-Maintainer: Tobi Vollebregt <[email protected]> -Build-Depends: cdbs, debhelper (>= 5), tdelibs4-trinity-dev, bzip2, python (>= 2.3), scons +Build-Depends: cdbs, debhelper (>= 5), tdelibs4-trinity-dev, bzip2, python (>= 2.3), cmake Standards-Version: 3.8.4 Package: kio-locate-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: kio-locate-kde3 (<< 4:3.5.13) -Breaks: kio-locate-kde3 (<< 4:3.5.13) +Replaces: kio-locate-trinity (<< 4:14.0.0) +Breaks: kio-locate-trinity (<< 4:14.0.0) Description: kio-slave for the locate command [Trinity] Adds support for the "locate:" and "locater:" protocols to Konqueror and other KDE applications. diff --git a/ubuntu/maverick/applications/kio-locate/debian/control.in b/ubuntu/maverick/applications/kio-locate/debian/control.in new file mode 100644 index 000000000..cabae4597 --- /dev/null +++ b/ubuntu/maverick/applications/kio-locate/debian/control.in @@ -0,0 +1,21 @@ +Source: kio-locate-trinity +Section: kde +Priority: optional +Maintainer: Timothy Pearson <[email protected]> +XSBC-Original-Maintainer: @@@MAINTAINER@@@ +Uploaders: @@@UPLOADERS@@@ +Build-Depends: cdbs, debhelper (>= 5), tdelibs4-trinity-dev, bzip2, python (>= 2.3), cmake +Standards-Version: 3.8.4 + +Package: kio-locate-trinity +Architecture: any +Depends: ${shlibs:Depends} +Replaces: kio-locate-kde3 (<< 4:3.5.13) +Breaks: kio-locate-kde3 (<< 4:3.5.13) +Description: kio-slave for the locate command [Trinity] + Adds support for the "locate:" and "locater:" + protocols to Konqueror and other KDE applications. + . + This enables you to perform locate searches as you + would in a terminal. The result is displayed just + as a directory. diff --git a/ubuntu/maverick/applications/kio-locate/debian/rules b/ubuntu/maverick/applications/kio-locate/debian/rules index f10f5f7c1..4a1d73457 100755 --- a/ubuntu/maverick/applications/kio-locate/debian/rules +++ b/ubuntu/maverick/applications/kio-locate/debian/rules @@ -1,37 +1,28 @@ #!/usr/bin/make -f -include /usr/share/cdbs/1/rules/debhelper.mk - -DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde -DEB_CONFIGURE_MANDIR := /opt/trinity/share/man -DEB_CONFIGURE_PREFIX := /opt/trinity -DEB_CONFIGURE_INFODIR := /opt/trinity/share/info - -cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) +# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function +# Also include the main Trinity path +ifeq ("$(LD_LIBRARY_PATH)", "") +LD_LIBRARY_PATH=debian/tmp/opt/trinity/lib +else +LD_LIBRARY_PATH += :debian/tmp/opt/trinity/lib +endif +export LD_LIBRARY_PATH -DEB_COMPRESS_EXCLUDE=.docbook -DEB_SCONS_PREFIX=/opt/trinity - -CONFIG_STATUS=$(DEB_BUILDDIR)/config.status -SCONS_CMD=/usr/bin/scons +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk +include debian/cdbs/debian-qt-kde.mk -common-configure-arch common-configure-indep:: common-configure-impl -common-configure-impl:: $(CONFIG_STATUS) -$(CONFIG_STATUS): - env PATH=/opt/trinity/bin:$(PATH) $(SCONS_CMD) configure prefix=$(DEB_DESTDIR)$(DEB_SCONS_PREFIX) - touch $(CONFIG_STATUS) +DEB_KDE_APIDOX := yes -common-build-arch common-build-indep:: common-build-impl -common-build-impl:: - env PATH=/opt/trinity/bin:$(PATH) $(SCONS_CMD) - rm -f doc/en/index.cache.bz2 +CXXFLAGS := -DSMB_CTX_FLAG_USE_KERBEROS -DSMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS -g -Wall $(DEB_OPT_FLAG) -common-install-arch common-install-indep:: common-install-impl -common-install-impl:: - env PATH=/opt/trinity/bin:$(PATH) DESTDIR=$(DEB_DESTDIR) $(SCONS_CMD) install +DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_INSTALL_PREFIX="/opt/trinity" -DCONFIG_INSTALL_DIR="/etc/trinity" -DSYSCONF_INSTALL_DIR="/etc/trinity" -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/" -DAUTODETECT_QT_DIRS="ON" -DCMAKE_VERBOSE_MAKEFILE="ON" -DBUILD_ALL="ON" -DCMAKE_SKIP_RPATH="OFF" -clean:: - rm -rf build cache scons-mini - rm -f admin/*.pyc $(CONFIG_STATUS) +# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to +# never build in parallel, regardless of DEB_BUILD_OPTIONS. +DEB_BUILD_PARALLEL = true DEB_INSTALL_DOCS_kio-locate-trinity := -XREADME -XNEWS -XTODO -XAUTHORS diff --git a/ubuntu/maverick/applications/kio-locate/debian/source/format b/ubuntu/maverick/applications/kio-locate/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kio-locate/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kio-locate/debian/source/options b/ubuntu/maverick/applications/kio-locate/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kio-locate/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kio-umountwrapper/debian/control b/ubuntu/maverick/applications/kio-umountwrapper/debian/control index ac759122d..413c8c66b 100644 --- a/ubuntu/maverick/applications/kio-umountwrapper/debian/control +++ b/ubuntu/maverick/applications/kio-umountwrapper/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: kio-umountwrapper-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: kio-umountwrapper-kde3 (<< 4:3.5.13) -Breaks: kio-umountwrapper-kde3 (<< 4:3.5.13) +Replaces: kio-umountwrapper-trinity (<< 4:14.0.0) +Breaks: kio-umountwrapper-trinity (<< 4:14.0.0) Description: progress dialog for safely removing devices in Trinity. Wrapper around kio_media_mountwrapper. Provides a progress dialog for Safely Removing of devices in Trinity. diff --git a/ubuntu/maverick/applications/kio-umountwrapper/debian/source/format b/ubuntu/maverick/applications/kio-umountwrapper/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kio-umountwrapper/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kio-umountwrapper/debian/source/options b/ubuntu/maverick/applications/kio-umountwrapper/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kio-umountwrapper/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kiosktool/debian/control b/ubuntu/maverick/applications/kiosktool/debian/control index 68d0b7404..068639c25 100644 --- a/ubuntu/maverick/applications/kiosktool/debian/control +++ b/ubuntu/maverick/applications/kiosktool/debian/control @@ -9,6 +9,8 @@ Standards-Version: 3.8.4 Package: kiosktool-trinity Architecture: any Depends: ${shlibs:Depends}, tdesudo-trinity +Replaces: kiosktool-trinity (<< 4:14.0.0) +Breaks: kiosktool-trinity (<< 4:14.0.0) Description: tool to configure the TDE kiosk framework A Point&Click tool for system administrators to enable TDE's KIOSK features or otherwise preconfigure TDE for diff --git a/ubuntu/maverick/applications/kiosktool/debian/kiosktool-kdedirs-trinity.1 b/ubuntu/maverick/applications/kiosktool/debian/kiosktool-tdedirs-trinity.1 index 62faad5d3..e44c4cd99 100644 --- a/ubuntu/maverick/applications/kiosktool/debian/kiosktool-kdedirs-trinity.1 +++ b/ubuntu/maverick/applications/kiosktool/debian/kiosktool-tdedirs-trinity.1 @@ -1,10 +1,10 @@ .\" This file was generated by kdemangen.pl -.TH KIOSKTOOL\-KDEDIRS 1 "Ago 2004" "K Desktop Environment" "A tool to set $KDEDIRS according to the current user profile." +.TH KIOSKTOOL\-TDEDIRS 1 "Ago 2004" "K Desktop Environment" "A tool to set $TDEDIRS according to the current user profile." .SH NAME -kiosktool\-kdedirs -\- A tool to set $KDEDIRS according to the current user profile. +kiosktool\-tdedirs +\- A tool to set $TDEDIRS according to the current user profile. .SH SYNOPSIS -kiosktool\-kdedirs [Qt\-options] [KDE\-options] [options] +kiosktool\-tdedirs [Qt\-options] [KDE\-options] [options] .SH DESCRIPTION .SH OPTIONS @@ -136,9 +136,9 @@ mirrors the whole layout of widgets. .SH SEE ALSO Full user documentation is available through the KDE Help Center. You can also enter the URL -.BR help:/kiosktool\-kdedirs/ +.BR help:/kiosktool\-tdedirs/ directly into konqueror or you can run -.BR "`khelpcenter help:/kiosktool\-kdedirs/'" +.BR "`khelpcenter help:/kiosktool\-tdedirs/'" from the command\-line. .br .SH AUTHORS diff --git a/ubuntu/maverick/applications/kiosktool/debian/kiosktool-trinity.manpages b/ubuntu/maverick/applications/kiosktool/debian/kiosktool-trinity.manpages index 2d009e1db..43bd4d1b8 100644 --- a/ubuntu/maverick/applications/kiosktool/debian/kiosktool-trinity.manpages +++ b/ubuntu/maverick/applications/kiosktool/debian/kiosktool-trinity.manpages @@ -1,2 +1,2 @@ debian/kiosktool-trinity.1 -debian/kiosktool-kdedirs-trinity.1 +debian/kiosktool-tdedirs-trinity.1 diff --git a/ubuntu/maverick/applications/kiosktool/debian/source/format b/ubuntu/maverick/applications/kiosktool/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kiosktool/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kiosktool/debian/source/options b/ubuntu/maverick/applications/kiosktool/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kiosktool/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kmatplot/debian/changelog b/ubuntu/maverick/applications/kmatplot/debian/changelog new file mode 100644 index 000000000..6bd58f944 --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/changelog @@ -0,0 +1,81 @@ +kmatplot-trinity (0.4-9-0ubuntu0) lucid; urgency=low + + * Initial import + + -- Timothy Pearson <[email protected]> Sat, 10 Dec 2011 18:34:00 -0600 + +kmatplot (0.4-8) unstable; urgency=low + + * Orphan package + + -- Hugo van der Merwe <[email protected]> Wed, 11 Jan 2006 12:29:07 +0200 + +kmatplot (0.4-7.2) unstable; urgency=low + + * 0-day NMU during BSP. + * Build-conflicts on autoconf and autoconf2.13 to fix FTBFS on sparc. + + -- Aurelien Jarno <[email protected]> Sat, 17 Dec 2005 17:00:30 +0100 + +kmatplot (0.4-7.1) unstable; urgency=low + + * 0-day NMU during BSP. + * Rebuild for the Qt/KDE transition (closes: bug#327980). + * Rebuilt for libreadline transition (closes: bug#326338). + * Applied a patch from Andreas Jochen to make the package buildable with + gcc-4.0 (closes: bug#300867). + * Build the shared libraries with -fPIC (closes: bug#286533). + * Added support for GNU/kFreeBSD. + + -- Aurelien Jarno <[email protected]> Sat, 17 Dec 2005 15:43:54 +0100 + +kmatplot (0.4-7) unstable; urgency=low + + * Rebuild with latest unstable packages (Closes: #249482) + + -- Hugo van der Merwe <[email protected]> Wed, 15 Dec 2004 09:57:20 +0200 + +kmatplot (0.4-6) unstable; urgency=low + + * Build with new octave (Closes: #240548) + + -- Hugo van der Merwe <[email protected]> Mon, 29 Mar 2004 02:11:03 +0200 + +kmatplot (0.4-5) unstable; urgency=low + + * Update build-dependencies (Closes: #224711,#219556) + (ACK NMU by J.H.M. Dassen, thanks.) + * Build with octave-2.1.52 (Closes: #210510) + * Switched to cdbs. + * (0.4-4 never uploaded due to dead hard-drive, and long GPG key + salvaging operation - I don't keep backups of secret keys ;-) + + -- Hugo van der Merwe <[email protected]> Wed, 31 Dec 2003 18:09:41 +0200 + +kmatplot (0.4-3.1) unstable; urgency=medium + + * NMU + * [debian/control] Updated build dependencies to fix FTBFS. (Closes: #219556) + + -- J.H.M. Dassen (Ray) <[email protected]> Sun, 21 Dec 2003 12:39:58 +0100 + +kmatplot (0.4-3) unstable; urgency=low + + * Applied patch from John Lightsey fixing G++ and QT3 build + problems. (Closes: #184028) + + -- Hugo van der Merwe <[email protected]> Sun, 1 Jun 2003 12:55:36 +0200 + +kmatplot (0.4-2) unstable; urgency=low + + * Fixed SearchPath so that kmatplot finds its rc file. Thanks Laurent + Jacques. + + -- Hugo van der Merwe <[email protected]> Sun, 12 May 2002 00:01:15 +0200 + +kmatplot (0.4-1) unstable; urgency=low + + * Initial Release. (Closes: #144363) + + -- Hugo van der Merwe <[email protected]> Wed, 24 Apr 2002 17:24:30 +0200 + diff --git a/ubuntu/maverick/applications/kmatplot/debian/compat b/ubuntu/maverick/applications/kmatplot/debian/compat new file mode 100644 index 000000000..b8626c4cf --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/compat @@ -0,0 +1 @@ +4 diff --git a/ubuntu/maverick/applications/kmatplot/debian/control b/ubuntu/maverick/applications/kmatplot/debian/control new file mode 100644 index 000000000..3204688e6 --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/control @@ -0,0 +1,28 @@ +Source: kmatplot-trinity +Section: math +Priority: optional +Maintainer: Timothy Pearson <[email protected]> +Build-Depends: debhelper (>> 3.0.0), libtqtinterface-dev, xlibmesa-gl-dev, octave2.1-headers, cdbs, automake, autoconf, libtool, libltdl-dev +Build-Conflicts: scilab +Standards-Version: 3.8.4 + +Package: kmatplot-trinity +Architecture: any +Depends: ${shlibs:Depends} +Replaces: kmatplot-trinity (<< 4:14.0.0) +Breaks: kmatplot-trinity (<< 4:14.0.0) +Recommends: octave2.1 +Description: A Gnuplot-like tool for plotting data sets in 2D or 3D + KMatplot is a gnuplot-like tool for plotting data sets in either two or + three dimensions. It can plot many types of 2d plots, including pixmaps + and contours, and 3d surfaces. It offers a full WYSIWYG mode with + multiple objects on a single page. + . + As opposite to Gnuplot, KMatplot is very clickable, so easier to use + for unexperienced users. It can be used instead of Gnuplot with Octave + and Scilab - there are new dll functions installed in those packages, + which communicate with KMatplot through an Unix socket. Those functions + are named 'kplot', 'kimage', kmesh', ... and are similar to those found + in Octave by default. + . + The Debian package is not built with Scilab support by default. diff --git a/ubuntu/maverick/applications/kmatplot/debian/copyright b/ubuntu/maverick/applications/kmatplot/debian/copyright new file mode 100644 index 000000000..e61cc889c --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/copyright @@ -0,0 +1,18 @@ +This package was debianized by Hugo van der Merwe <[email protected]> on +Wed, 24 Apr 2002 15:23:52 +0200. + +It was downloaded from http://kmatplot.sourceforge.net/ + +Upstream Author: Kamil Dobkowski <[email protected]> + +Copyright: + +This software is copyright (c) 2000-2002 by Kamil Dobkowski + +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. + +On Debian systems, the complete text of the GNU General Public +License can be found in /usr/share/common-licenses/GPL file. diff --git a/ubuntu/maverick/applications/kmatplot/debian/debianrules b/ubuntu/maverick/applications/kmatplot/debian/debianrules new file mode 100644 index 000000000..7cfb17bd9 --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/debianrules @@ -0,0 +1,84 @@ +#!/usr/bin/perl -w + +use Shell qw(mv cp mkdir rm) ; +use File::Find; +use Cwd; + +$origPwd = `pwd`; +chomp $origPwd; + + +if (@ARGV && $ARGV[0] eq 'cleanup') { + +if (-d "debian/tmp/usr/share/config") { + if (! -d "debian/tmp/$tde_confdir") { + system("mv debian/tmp/usr/share/config debian/tmp/$tde_confdir"); + } +} +system("rm -f `find debian/ -name \".anchors\"`"); +system("chmod 755 debian/*preinst debian/*postinst"); + +exit; +} + +$TQTDIR="/usr/share/tqt3"; +$tde_prefix="/opt/trinity"; +$tde_htmldir="$tde_prefix/share/doc/kde/HTML"; +$tde_icondir="$tde_prefix/share/icons"; +$tde_sounddir="$tde_prefix/share/sounds"; +$tde_datadir="$tde_prefix/share/apps"; +$tde_locale="$tde_prefix/share/locale"; +$tde_confdir="/etc/tde2"; +$tde_cgidir="$tde_prefix/lib/cgi-bin"; +$tde_appsdir="$tde_prefix/share/applnk"; +$tde_mimedir="$tde_prefix/share/mimelnk"; +$tde_wallpaperdir="$tde_prefix/share/wallpapers"; +$tde_bindir="$tde_prefix/bin"; +$tde_servicesdir="$tde_prefix/share/services"; +$tde_servicetypesdir="$tde_prefix/share/servicetypes"; +$tde_includedir="$tde_prefix/include/tde"; +$tde_libdir="$tde_prefix/lib"; +$tde_moduledir="$tde_prefix/lib/tde"; +$mandir="$tde_prefix/share/man"; +$infodir="$tde_prefix/share/info"; +$IDL="$tde_bindir/cuteidl"; +$DCOPIDL="$tde_bindir/dcopidl"; +$DCOPIDL2CPP="$tde_bindir/dcopidl2cpp"; +$KDB2HTML="$tde_bindir/kdb2html"; +$MCOPIDL="$tde_bindir/mcopidl"; +$ARTSCCONFIG="$tde_bindir/artsc-config"; + +if (@ARGV && $ARGV[0] eq 'echodirs') { + print STDOUT "export tde_htmldir=$tde_htmldir\n"; + print STDOUT "export tde_appsdir=$tde_appsdir\n"; + print STDOUT "export tde_icondir=$tde_icondir\n"; + print STDOUT "export tde_sounddir=$tde_sounddir\n"; + print STDOUT "export tde_datadir=$tde_datadir\n"; + print STDOUT "export tde_cgidir=$tde_cgidir\n"; + print STDOUT "export tde_locale=$tde_locale\n"; + print STDOUT "export tde_confdir=$tde_confdir\n"; + print STDOUT "export tde_mimedir=$tde_mimedir\n"; + print STDOUT "export tde_wallpaperdir=$tde_wallpaperdir\n"; + print STDOUT "export tde_bindir=$tde_bindir\n"; + print STDOUT "export tde_servicesdir=$tde_servicesdir\n"; + print STDOUT "export tde_servicetypesdir=$tde_servicetypesdir\n"; + print STDOUT "export tde_includedir=$tde_includedir\n"; + print STDOUT "export tde_libdir=$tde_libdir\n"; + print STDOUT "export tde_moduledir=$tde_moduledir\n"; + print STDOUT "export mandir=$mandir\n"; + print STDOUT "export infodir=$infodir\n"; + print STDOUT "export TQTDIR=$TQTDIR\n"; + print STDOUT "export tde_prefix=$tde_prefix\n"; + print STDOUT "export INSTALL_DATA=install -p -c -m 644\n"; + print STDOUT "export IDL=$IDL\n"; + print STDOUT "export DCOPIDL=$DCOPIDL\n"; + print STDOUT "export DCOPIDL2CPP=$DCOPIDL2CPP\n"; + print STDOUT "export KDB2HTML=$KDB2HTML\n"; + print STDOUT "export MCOPIDL=$MCOPIDL\n"; + print STDOUT "export ARTSCCONFIG=$ARTSCCONFIG\n"; + print STDOUT "configtde=--disable-debug --disable-rpath --prefix=\$(tde_prefix) --libexecdir=\$(tde_bindir) --libdir=\$(tde_libdir) --includedir=\$(tde_includedir) --with-qt-includes=/usr/include/qt --mandir=\$(mandir) --infodir=\$(infodir)\n"; + print STDOUT "configtdevelop=--disable-debug --enable-docbase --enable-kdoc2 --disable-rpath --libdir=\$(tde_libdir) --includedir=\$(tde_includedir) --with-qt-includes=/usr/include/qt --mandir=\$(mandir) --with-tdelibsdoc-dir=/usr/share/doc/tdelibs3-doc/html\n"; + print STDOUT "configtdepim=--disable-debug --with-extra-includes=/usr/include/libpisock --enable-shared --disable-rpath --libdir=\$(tde_libdir) --includedir=\$(tde_includedir) --prefix=\$(tde_prefix) --libexecdir=\$(tde_bindir) --with-qt-includes=/usr/include/qt --mandir=\$(mandir) --infodir=\$(infodir)\n"; + exit +} + diff --git a/ubuntu/maverick/applications/kmatplot/debian/dirs b/ubuntu/maverick/applications/kmatplot/debian/dirs new file mode 100644 index 000000000..e77248175 --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/dirs @@ -0,0 +1 @@ +usr/bin diff --git a/ubuntu/maverick/applications/kmatplot/debian/kmatplot.1 b/ubuntu/maverick/applications/kmatplot/debian/kmatplot.1 new file mode 100644 index 000000000..0937e379f --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/kmatplot.1 @@ -0,0 +1,38 @@ +.\" Hey, EMACS: -*- nroff -*- +.TH KMATPLOT 1 "May 1, 2002" +.\" Please adjust this date whenever revising the manpage. + +.SH NAME +kmatplot \- A Gnuplot-like tool for plotting data sets in 2D or 3D. + +.SH SYNOPSIS +.B kmatplot + +.SH DESCRIPTION +This manual page briefly documents +.B KMatplot. +This manual page was written for the Debian GNU/Linux distribution +because the original program does not have a manual page. +.PP +.B KMatplot +is a Gnuplot-like tool for plotting data sets in either two or +three dimensions. It can plot many types of 2d plots, including pixmaps +and contours, and 3d surfaces. It offers a full WYSIWYG mode with +multiple objects on a single page. + +As opposite to Gnuplot, +.B KMatplot is very clickable, so easier to use for unexperienced users. +It can be used instead of Gnuplot with Octave and Scilab (although the +Debian package is not built with Scilab support by default) - there are +new dll functions installed in those packages, which communicate with +.B KMatplot +through a Unix socket. Those functions are named 'kplot', 'kimage', +kmesh', and are similar to those found in Octave by default. + +Example plots can be found in the Help menu of the program. Help for +many of the Octave functions can be found within Octave, for example: +"help kplot", "help kaddaxes". + +.SH AUTHOR +This manual page was written by Hugo van der Merwe <[email protected]>, +for the Debian GNU/Linux system (but may be used by others). diff --git a/ubuntu/maverick/applications/kmatplot/debian/kmatplot.manpages b/ubuntu/maverick/applications/kmatplot/debian/kmatplot.manpages new file mode 100644 index 000000000..e093ba20c --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/kmatplot.manpages @@ -0,0 +1 @@ +debian/kmatplot.1 diff --git a/ubuntu/maverick/applications/kmatplot/debian/menu b/ubuntu/maverick/applications/kmatplot/debian/menu new file mode 100644 index 000000000..6cb3a60a8 --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/menu @@ -0,0 +1,2 @@ +?package(kmatplot):needs="X11" section="Apps/Math"\ + title="kmatplot" command="/usr/bin/kmatplot" diff --git a/ubuntu/maverick/applications/kmatplot/debian/rules b/ubuntu/maverick/applications/kmatplot/debian/rules new file mode 100755 index 000000000..0df925fe4 --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +export QSETTINGSDIR=/etc +DEB_CONFIGURE_EXTRA_FLAGS := --enable-mt --with-qsettings-dir=/etc +DEB_INSTALL_DOCS_ALL := diff --git a/ubuntu/maverick/applications/kmatplot/debian/source/format b/ubuntu/maverick/applications/kmatplot/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kmatplot/debian/source/options b/ubuntu/maverick/applications/kmatplot/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kmatplot/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kmplayer/debian/control b/ubuntu/maverick/applications/kmplayer/debian/control index 0af2ebb6d..f182f5290 100644 --- a/ubuntu/maverick/applications/kmplayer/debian/control +++ b/ubuntu/maverick/applications/kmplayer/debian/control @@ -14,8 +14,8 @@ Homepage: http://kmplayer.kde.org Package: kmplayer-trinity Architecture: any Depends: ${shlibs:Depends}, kmplayer-base-trinity (= ${binary:Version}), libxine1-x | libxine1 (<< 1.1.8-2) -Replaces: kmplayer-kde3 (<< 4:3.5.13) -Breaks: kmplayer-kde3 (<< 4:3.5.13) +Replaces: kmplayer-trinity (<< 4:14.0.0) +Breaks: kmplayer-trinity (<< 4:14.0.0) Recommends: kmplayer-plugin-trinity (= ${binary:Version}) Suggests: ffmpeg, vdr, xawtv, mplayer Description: media player for Trinity @@ -37,8 +37,8 @@ Description: media player for Trinity Package: kmplayer-base-trinity Architecture: any Section: kde -Replaces: kmplayer-base-kde3 (<< 4:3.5.13) -Breaks: kmplayer-base-kde3 (<< 4:3.5.13) +Replaces: kmplayer-base-trinity (<< 4:14.0.0) +Breaks: kmplayer-base-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends} Description: Base files for KMPlayer [Trinity] Core files needed for KMPlayer. @@ -48,8 +48,8 @@ Description: Base files for KMPlayer [Trinity] Package: kmplayer-konq-plugins-trinity Architecture: any Section: kde -Replaces: kmplayer-konq-plugins-kde3 (<< 4:3.5.13) -Breaks: kmplayer-konq-plugins-kde3 (<< 4:3.5.13) +Replaces: kmplayer-konq-plugins-trinity (<< 4:14.0.0) +Breaks: kmplayer-konq-plugins-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, kmplayer-base-trinity (= ${binary:Version}), konqueror-trinity Description: KMPlayer plugin for KHTML/Konqueror [Trinity] This plugin enables audio/video playback inside konqueror, using Xine (with @@ -60,8 +60,8 @@ Description: KMPlayer plugin for KHTML/Konqueror [Trinity] Package: kmplayer-trinity-doc Architecture: all Section: kde -Replaces: kmplayer-kde3-doc (<< 4:3.5.13) -Breaks: kmplayer-kde3-doc (<< 4:3.5.13) +Replaces: kmplayer-trinity-doc (<< 4:14.0.0) +Breaks: kmplayer-trinity-doc (<< 4:14.0.0) Depends: ${shlibs:Depends}, kmplayer-trinity Description: Handbook for KMPlayer [Trinity] Documention for KMPlayer, a basic audio/video viewer application for KDE. diff --git a/ubuntu/maverick/applications/kmplayer/debian/source/format b/ubuntu/maverick/applications/kmplayer/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kmplayer/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kmplayer/debian/source/options b/ubuntu/maverick/applications/kmplayer/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kmplayer/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kmyfirewall/debian/control b/ubuntu/maverick/applications/kmyfirewall/debian/control index 234dbbc8e..dfa0bd20f 100644 --- a/ubuntu/maverick/applications/kmyfirewall/debian/control +++ b/ubuntu/maverick/applications/kmyfirewall/debian/control @@ -9,8 +9,8 @@ Homepage: http://kmyfirewall.sourceforge.net/ Package: kmyfirewall-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: kmyfirewall-kde3 (<< 4:3.5.13) -Breaks: kmyfirewall-kde3 (<< 4:3.5.13) +Replaces: kmyfirewall-trinity (<< 4:14.0.0) +Breaks: kmyfirewall-trinity (<< 4:14.0.0) Description: iptables based firewall configuration tool for KDE [Trinity] KMyFirewall attempts to make it easier to setup iptables based firewalls on Linux systems. It will be the right tool if you like to have a so called diff --git a/ubuntu/maverick/applications/kmyfirewall/debian/source/format b/ubuntu/maverick/applications/kmyfirewall/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kmyfirewall/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kmyfirewall/debian/source/options b/ubuntu/maverick/applications/kmyfirewall/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kmyfirewall/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kmymoney/debian/control b/ubuntu/maverick/applications/kmymoney/debian/control index edca3a474..316e96269 100644 --- a/ubuntu/maverick/applications/kmymoney/debian/control +++ b/ubuntu/maverick/applications/kmymoney/debian/control @@ -9,9 +9,9 @@ Standards-Version: 3.8.4 Package: kmymoney2-trinity Architecture: any -Depends: ${shlibs:Depends}, ${shlibs:Misc}, ${misc:Depends}, -Replaces: kmymoney2-kde3 (<< 4:3.5.13) -Breaks: kmymoney2-kde3 (<< 4:3.5.13) +Depends: ${shlibs:Depends}, ${shlibs:Misc}, ${misc:Depends}, kmymoney2-common-trinity (>= ${source:Version}) +Replaces: kmymoney2-trinity (<< 4:14.0.0) +Breaks: kmymoney2-trinity (<< 4:14.0.0) Recommends: kmymoney2-plugin-aqbanking-trinity Description: personal finance manager for TDE KMyMoney is the Personal Finance Manager for TDE. It operates similar to @@ -22,8 +22,8 @@ Description: personal finance manager for TDE Package: kmymoney2-common-trinity Architecture: all Depends: ${misc:Depends} -Replaces: kmymoney2-common-kde3 (<< 4:3.5.13) -Breaks: kmymoney2-common-kde3 (<< 4:3.5.13) +Replaces: kmymoney2-common-trinity (<< 4:14.0.0) +Breaks: kmymoney2-common-trinity (<< 4:14.0.0) Recommends: kmymoney2-trinity (>= ${source:Version}) Description: KMyMoney architecture independent files This package contains architecture independent files needed for KMyMoney to @@ -33,8 +33,8 @@ Description: KMyMoney architecture independent files Package: kmymoney2-trinity-dev Section: libdevel Architecture: any -Replaces: kmymoney2-kde3-dev (<< 4:3.5.13) -Breaks: kmymoney2-kde3-dev (<< 4:3.5.13) +Replaces: kmymoney2-trinity-dev (<< 4:14.0.0) +Breaks: kmymoney2-trinity-dev (<< 4:14.0.0) Depends: ${misc:Depends}, kmymoney2-trinity (= ${binary:Version}) Description: KMyMoney development files This package contains development files needed for KMyMoney plugins. diff --git a/ubuntu/maverick/applications/kmymoney/debian/source/format b/ubuntu/maverick/applications/kmymoney/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kmymoney/debian/source/options b/ubuntu/maverick/applications/kmymoney/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/knemo/debian/control b/ubuntu/maverick/applications/knemo/debian/control index c6c92cded..81781eeb0 100644 --- a/ubuntu/maverick/applications/knemo/debian/control +++ b/ubuntu/maverick/applications/knemo/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: knemo-trinity Architecture: any Depends: kicker-trinity, net-tools, ${shlibs:Depends} -Replaces: knemo-kde3 (<< 4:3.5.13) -Breaks: knemo-kde3 (<< 4:3.5.13) +Replaces: knemo-trinity (<< 4:14.0.0) +Breaks: knemo-trinity (<< 4:14.0.0) Recommends: kcontrol-trinity, wireless-tools Description: network interfaces monitor for the Trinity systray KNemo displays an icon in the systray for every network interface. diff --git a/ubuntu/maverick/applications/knemo/debian/source/format b/ubuntu/maverick/applications/knemo/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/knemo/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/knemo/debian/source/options b/ubuntu/maverick/applications/knemo/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/knemo/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/knetload/debian/control b/ubuntu/maverick/applications/knetload/debian/control index de847a599..b7db52c53 100644 --- a/ubuntu/maverick/applications/knetload/debian/control +++ b/ubuntu/maverick/applications/knetload/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: knetload-trinity Architecture: any Section: kde -Replaces: knetload-kde3 (<< 4:3.5.13) -Breaks: knetload-kde3 (<< 4:3.5.13) +Replaces: knetload-trinity (<< 4:14.0.0) +Breaks: knetload-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends} Conflicts: knetload Suggests: kcpuload-trinity diff --git a/ubuntu/maverick/applications/knetload/debian/source/format b/ubuntu/maverick/applications/knetload/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/knetload/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/knetload/debian/source/options b/ubuntu/maverick/applications/knetload/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/knetload/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/knetstats/debian/control b/ubuntu/maverick/applications/knetstats/debian/control index 5b8d1d972..06d91fef6 100644 --- a/ubuntu/maverick/applications/knetstats/debian/control +++ b/ubuntu/maverick/applications/knetstats/debian/control @@ -9,8 +9,8 @@ Homepage: http://knetstats.sourceforge.net/ Package: knetstats-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: knetstats-kde3 (<< 4:3.5.13) -Breaks: knetstats-kde3 (<< 4:3.5.13) +Replaces: knetstats-trinity (<< 4:14.0.0) +Breaks: knetstats-trinity (<< 4:14.0.0) Description: network interfaces monitor for the Trinity systray A simple KDE network monitor that show rx/tx LEDs of any network interface on a system tray icon diff --git a/ubuntu/maverick/applications/knetstats/debian/source/format b/ubuntu/maverick/applications/knetstats/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/knetstats/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/knetstats/debian/source/options b/ubuntu/maverick/applications/knetstats/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/knetstats/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/knetworkmanager.cmake/debian/control b/ubuntu/maverick/applications/knetworkmanager.cmake/debian/control index 4a5c6e077..649c51085 100644 --- a/ubuntu/maverick/applications/knetworkmanager.cmake/debian/control +++ b/ubuntu/maverick/applications/knetworkmanager.cmake/debian/control @@ -25,8 +25,8 @@ Homepage: http://opensuse.org/Projects/KNetworkManager Package: network-manager-tde Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, network-manager (>= 0.7.0) -Replaces: network-manager-tde (<< 4:3.5.13) -Breaks: network-manager-tde (<< 4:3.5.13) +Replaces: network-manager-kde (<< 4:14.0.0) +Breaks: network-manager-kde (<< 4:14.0.0) Recommends: kwalletmanager-trinity, network-manager-vpnc, network-manager-openvpn, network-manager-strongswan, network-manager-pptp Provides: knetworkmanager-trinity Conflicts: network-manager-kde diff --git a/ubuntu/maverick/applications/knetworkmanager.cmake/debian/source/format b/ubuntu/maverick/applications/knetworkmanager.cmake/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/knetworkmanager.cmake/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/knetworkmanager.cmake/debian/source/options b/ubuntu/maverick/applications/knetworkmanager.cmake/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/knetworkmanager.cmake/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/knetworkmanager8/debian/control b/ubuntu/maverick/applications/knetworkmanager8/debian/control index bae087017..3136bba7f 100644 --- a/ubuntu/maverick/applications/knetworkmanager8/debian/control +++ b/ubuntu/maverick/applications/knetworkmanager8/debian/control @@ -26,8 +26,8 @@ Homepage: http://opensuse.org/Projects/KNetworkManager Package: network-manager-kde-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, network-manager (>= 0.7.0), network-manager (<< 0.8.9) -Replaces: network-manager-kde-kde3 (<< 4:3.5.13) -Breaks: network-manager-kde-kde3 (<< 4:3.5.13) +Replaces: network-manager-kde-trinity (<< 4:14.0.0) +Breaks: network-manager-kde-trinity (<< 4:14.0.0) Recommends: kwalletmanager-trinity, network-manager-vpnc, network-manager-openvpn, network-manager-strongswan, network-manager-pptp Provides: knetworkmanager-trinity Conflicts: network-manager-kde diff --git a/ubuntu/maverick/applications/knetworkmanager8/debian/source/format b/ubuntu/maverick/applications/knetworkmanager8/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/knetworkmanager8/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/knetworkmanager8/debian/source/options b/ubuntu/maverick/applications/knetworkmanager8/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/knetworkmanager8/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/knights/debian/control b/ubuntu/maverick/applications/knights/debian/control index 0e9ef19ce..0e64bc23f 100644 --- a/ubuntu/maverick/applications/knights/debian/control +++ b/ubuntu/maverick/applications/knights/debian/control @@ -11,8 +11,8 @@ Homepage: http://knights.sourceforge.net/ Package: knights-trinity Architecture: any Depends: ${shlibs:Depends}, tdebase-kio-plugins-trinity -Replaces: knights-kde3 (<< 4:3.5.13) -Breaks: knights-kde3 (<< 4:3.5.13) +Replaces: knights-trinity (<< 4:14.0.0) +Breaks: knights-trinity (<< 4:14.0.0) Suggests: gnuchess | crafty | sjeng, knights-themepack-trinity Description: A chess interface for the K Desktop Environment [Trinity] Knights aims to be the ultimate chess resource on your computer. diff --git a/ubuntu/maverick/applications/knights/debian/source/format b/ubuntu/maverick/applications/knights/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/knights/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/knights/debian/source/options b/ubuntu/maverick/applications/knights/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/knights/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/knowit/debian/control b/ubuntu/maverick/applications/knowit/debian/control index 735520a53..8f36965d7 100644 --- a/ubuntu/maverick/applications/knowit/debian/control +++ b/ubuntu/maverick/applications/knowit/debian/control @@ -10,8 +10,8 @@ Homepage: http://knowit.sourceforge.net/ Package: knowit-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: knowit-kde3 (<< 4:3.5.13) -Breaks: knowit-kde3 (<< 4:3.5.13) +Replaces: knowit-trinity (<< 4:14.0.0) +Breaks: knowit-trinity (<< 4:14.0.0) Description: Tool for managing notes [Trinity] KnowIt is a tool for managing notes which are organized in tree-like hierarchy. It is similar to TuxCards, diff --git a/ubuntu/maverick/applications/knowit/debian/source/format b/ubuntu/maverick/applications/knowit/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/knowit/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/knowit/debian/source/options b/ubuntu/maverick/applications/knowit/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/knowit/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/knutclient/debian/control b/ubuntu/maverick/applications/knutclient/debian/control index 5661d50df..57a2f7bf5 100644 --- a/ubuntu/maverick/applications/knutclient/debian/control +++ b/ubuntu/maverick/applications/knutclient/debian/control @@ -10,8 +10,8 @@ Homepage: http://www.knut.noveradsl.cz/knutclient/ Package: knutclient-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: knutclient-kde3 (<< 4:3.5.13) -Breaks: knutclient-kde3 (<< 4:3.5.13) +Replaces: knutclient-trinity (<< 4:14.0.0) +Breaks: knutclient-trinity (<< 4:14.0.0) Description: A KDE GUI that displays UPS statistics from NUT's upsd [Trinity] KNutClient monitors UPS statistics through the NUT (Network UPS Tools, http://www.networkupstools.org/) framework on Linux and other systems. This diff --git a/ubuntu/maverick/applications/knutclient/debian/source/format b/ubuntu/maverick/applications/knutclient/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/knutclient/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/knutclient/debian/source/options b/ubuntu/maverick/applications/knutclient/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/knutclient/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/koffice/debian/control b/ubuntu/maverick/applications/koffice/debian/control index 57911e8ba..4aba97f07 100644 --- a/ubuntu/maverick/applications/koffice/debian/control +++ b/ubuntu/maverick/applications/koffice/debian/control @@ -12,8 +12,8 @@ Homepage: http://www.koffice.org Package: koffice-trinity Architecture: all Section: kde -Replaces: koffice-kde3 (<< 4:3.5.13) -Breaks: koffice-kde3 (<< 4:3.5.13) +Replaces: koffice-trinity (<< 4:14.0.0) +Breaks: koffice-trinity (<< 4:14.0.0) Depends: karbon-trinity (>= ${source:Version}), kchart-trinity (>= ${source:Version}), kexi-trinity (>= ${source:Version}), kformula-trinity (>= ${source:Version}), kivio-trinity (>= ${source:Version}), koshell-trinity (>= ${source:Version}), kplato-trinity (>= ${source:Version}), kpresenter-trinity (>= ${source:Version}), chalk-trinity (>= ${source:Version}), kspread-trinity (>= ${source:Version}), kugar-trinity (>= ${source:Version}), kword-trinity (>= ${source:Version}), kthesaurus-trinity (>= ${source:Version}) Suggests: koffice-i18n-trinity, koffice-trinity-dev (>= ${source:Version}), koffice-trinity-doc (>= ${source:Version}), koffice-trinity-doc-html (= ${source:Version}) Description: KDE Office Suite [Trinity] @@ -26,8 +26,8 @@ Description: KDE Office Suite [Trinity] Package: koffice-trinity-doc Section: doc Architecture: all -Replaces: koffice-kde3-doc (<< 4:3.5.13) -Breaks: koffice-kde3-doc (<< 4:3.5.13) +Replaces: koffice-trinity-doc (<< 4:14.0.0) +Breaks: koffice-trinity-doc (<< 4:14.0.0) Description: developer documentation for the KDE Office Suite [Trinity] This package contains documentation for the KDE Office Suite, of use more for developers creating applications than regular users. @@ -37,8 +37,8 @@ Description: developer documentation for the KDE Office Suite [Trinity] Package: koffice-trinity-doc-html Architecture: all Section: doc -Replaces: koffice-kde3-doc-html (<< 4:3.5.13) -Breaks: koffice-kde3-doc-html (<< 4:3.5.13) +Replaces: koffice-trinity-doc-html (<< 4:14.0.0) +Breaks: koffice-trinity-doc-html (<< 4:14.0.0) Suggests: konqueror-trinity | www-browser, koffice-trinity Description: KDE Office Suite documentation in HTML format [Trinity] KOffice is an integrated office suite for KDE, the K Desktop @@ -59,8 +59,8 @@ Description: KDE Office Suite documentation in HTML format [Trinity] Package: karbon-trinity Architecture: any Section: graphics -Replaces: karbon-kde3 (<< 4:3.5.13) -Breaks: karbon-kde3 (<< 4:3.5.13) +Replaces: karbon-trinity (<< 4:14.0.0) +Breaks: karbon-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, koffice-libs-trinity (<< ${KDE-Next-Version3}) Description: a vector graphics application for the KDE Office Suite Karbon is a vector graphics application. @@ -70,8 +70,8 @@ Description: a vector graphics application for the KDE Office Suite Package: kchart-trinity Architecture: any Section: kde -Replaces: kchart-kde3 (<< 4:3.5.13) -Breaks: kchart-kde3 (<< 4:3.5.13) +Replaces: kchart-trinity (<< 4:14.0.0) +Breaks: kchart-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, koffice-libs-trinity (<< ${KDE-Next-Version3}) Recommends: khelpcenter-trinity | koffice-trinity-doc-html (= ${source:Version}) Description: a chart drawing program for the KDE Office Suite [Trinity] @@ -83,8 +83,8 @@ Description: a chart drawing program for the KDE Office Suite [Trinity] Package: kexi-trinity Architecture: any Section: kde -Replaces: kexi-kde3 (<< 4:3.5.13) -Breaks: kexi-kde3 (<< 4:3.5.13) +Replaces: kexi-trinity (<< 4:14.0.0) +Breaks: kexi-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, koffice-libs-trinity (<< ${KDE-Next-Version3}) Suggests: kexi-mdb-plugin-trinity Description: integrated database environment for the KDE Office Suite [Trinity] @@ -105,8 +105,8 @@ Description: integrated database environment for the KDE Office Suite [Trinity] Package: kformula-trinity Architecture: any Section: kde -Replaces: kformula-kde3 (<< 4:3.5.13) -Breaks: kformula-kde3 (<< 4:3.5.13) +Replaces: kformula-trinity (<< 4:14.0.0) +Breaks: kformula-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, koffice-libs-trinity (<< ${KDE-Next-Version3}) Recommends: khelpcenter-trinity | koffice-trinity-doc-html (= ${source:Version}) Description: a formula editor for the KDE Office Suite [Trinity] @@ -122,8 +122,8 @@ Description: a formula editor for the KDE Office Suite [Trinity] Package: kivio-trinity Architecture: any Section: graphics -Replaces: kivio-kde3 (<< 4:3.5.13) -Breaks: kivio-kde3 (<< 4:3.5.13) +Replaces: kivio-trinity (<< 4:14.0.0) +Breaks: kivio-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, kivio-data-trinity (>> 1:1.4.90.2-1), kivio-data-trinity (>> ${KDE-Version3}), kivio-data-trinity (<< ${KDE-Next-Version3}), koffice-libs-trinity (<< ${KDE-Next-Version3}) Description: a flowcharting program for the KDE Office Suite [Trinity] Kivio is a flowcharting program that offers basic flowcharting abilities, @@ -135,8 +135,8 @@ Description: a flowcharting program for the KDE Office Suite [Trinity] Package: kivio-data-trinity Architecture: all Section: graphics -Replaces: kivio-data-kde3 (<< 4:3.5.13) -Breaks: kivio-data-kde3 (<< 4:3.5.13) +Replaces: kivio-data-trinity (<< 4:14.0.0) +Breaks: kivio-data-trinity (<< 4:14.0.0) Description: data files for Kivio flowcharting program [Trinity] This package contains architecture-independent data files for Kivio, the flowcharting program shipped with the KDE Office Suite. @@ -148,8 +148,8 @@ Description: data files for Kivio flowcharting program [Trinity] Package: koshell-trinity Architecture: any Section: kde -Replaces: koshell-kde3 (<< 4:3.5.13) -Breaks: koshell-kde3 (<< 4:3.5.13) +Replaces: koshell-trinity (<< 4:14.0.0) +Breaks: koshell-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, koffice-libs-trinity (<< ${KDE-Next-Version3}) Recommends: koffice-trinity, khelpcenter-trinity | koffice-trinity-doc-html (= ${source:Version}) Description: the KDE Office Suite workspace [Trinity] @@ -161,8 +161,8 @@ Description: the KDE Office Suite workspace [Trinity] Package: kplato-trinity Architecture: any Section: kde -Replaces: kplato-kde3 (<< 4:3.5.13) -Breaks: kplato-kde3 (<< 4:3.5.13) +Replaces: kplato-trinity (<< 4:14.0.0) +Breaks: kplato-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, koffice-libs-trinity (<< ${KDE-Next-Version3}) Recommends: khelpcenter-trinity | koffice-trinity-doc-html (= ${source:Version}) Description: an integrated project management and planning tool [Trinity] @@ -175,8 +175,8 @@ Description: an integrated project management and planning tool [Trinity] Package: kpresenter-trinity Architecture: any Section: kde -Replaces: kpresenter-kde3 (<< 4:3.5.13) -Breaks: kpresenter-kde3 (<< 4:3.5.13) +Replaces: kpresenter-trinity (<< 4:14.0.0) +Breaks: kpresenter-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, ${perl:Depends}, kpresenter-data-trinity (>> ${KDE-Version3}), kpresenter-data-trinity (<< ${KDE-Next-Version3}), koffice-libs-trinity (<< ${KDE-Next-Version3}) Recommends: khelpcenter-trinity | koffice-trinity-doc-html (= ${source:Version}) Description: a presentation program for the KDE Office Suite [Trinity] @@ -189,8 +189,8 @@ Description: a presentation program for the KDE Office Suite [Trinity] Package: kpresenter-data-trinity Architecture: all Section: kde -Replaces: kpresenter-data-kde3 (<< 4:3.5.13) -Breaks: kpresenter-data-kde3 (<< 4:3.5.13) +Replaces: kpresenter-data-trinity (<< 4:14.0.0) +Breaks: kpresenter-data-trinity (<< 4:14.0.0) Description: data files for KPresenter presentation program [Trinity] This package contains architecture-independent data files for KPresenter, the presentation program shipped with the KDE Office Suite. @@ -202,8 +202,8 @@ Description: data files for KPresenter presentation program [Trinity] Package: chalk-trinity Architecture: any Section: kde -Replaces: chalk-kde3 (<< 4:3.5.13) -Breaks: chalk-kde3 (<< 4:3.5.13) +Replaces: chalk-trinity (<< 4:14.0.0) +Breaks: chalk-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, chalk-data-trinity (>> ${KDE-Version3}), chalk-data-trinity (<< ${KDE-Next-Version3}), koffice-libs-trinity (<< ${KDE-Next-Version3}) Recommends: dcraw, khelpcenter-trinity | koffice-trinity-doc-html (= ${source:Version}) Description: a pixel-based image manipulation program for the KDE Office Suite [Trinity] @@ -215,8 +215,8 @@ Description: a pixel-based image manipulation program for the KDE Office Suite [ Package: chalk-data-trinity Architecture: all Section: kde -Replaces: chalk-data-kde3 (<< 4:3.5.13) -Breaks: chalk-data-kde3 (<< 4:3.5.13) +Replaces: chalk-data-trinity (<< 4:14.0.0) +Breaks: chalk-data-trinity (<< 4:14.0.0) Description: data files for Chalk painting program [Trinity] This package contains architecture-independent data files for Chalk, the painting program shipped with the KDE Office Suite. @@ -228,8 +228,8 @@ Description: data files for Chalk painting program [Trinity] Package: kspread-trinity Architecture: any Section: kde -Replaces: kspread-kde3 (<< 4:3.5.13) -Breaks: kspread-kde3 (<< 4:3.5.13) +Replaces: kspread-trinity (<< 4:14.0.0) +Breaks: kspread-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, koffice-libs-trinity (<< ${KDE-Next-Version3}) Recommends: khelpcenter-trinity | koffice-trinity-doc-html (= ${source:Version}) Description: a spreadsheet for the KDE Office Suite [Trinity] @@ -242,8 +242,8 @@ Description: a spreadsheet for the KDE Office Suite [Trinity] Package: kugar-trinity Architecture: any Section: kde -Replaces: kugar-kde3 (<< 4:3.5.13) -Breaks: kugar-kde3 (<< 4:3.5.13) +Replaces: kugar-trinity (<< 4:14.0.0) +Breaks: kugar-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, koffice-libs-trinity (<< ${KDE-Next-Version3}) Recommends: khelpcenter-trinity | koffice-trinity-doc-html (= ${source:Version}) Description: a business report maker for the KDE Office Suite [Trinity] @@ -258,8 +258,8 @@ Description: a business report maker for the KDE Office Suite [Trinity] Package: kword-trinity Architecture: any Section: kde -Replaces: kword-kde3 (<< 4:3.5.13) -Breaks: kword-kde3 (<< 4:3.5.13) +Replaces: kword-trinity (<< 4:14.0.0) +Breaks: kword-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, kword-data-trinity (>> ${KDE-Version3}), kword-data-trinity (<< ${KDE-Next-Version3}), koffice-libs-trinity (<< ${KDE-Next-Version3}) Recommends: khelpcenter-trinity | koffice-trinity-doc-html (= ${source:Version}) Description: a word processor for the KDE Office Suite [Trinity] @@ -273,8 +273,8 @@ Description: a word processor for the KDE Office Suite [Trinity] Package: kword-data-trinity Architecture: all Section: kde -Replaces: kword-data-kde3 (<< 4:3.5.13) -Breaks: kword-data-kde3 (<< 4:3.5.13) +Replaces: kword-data-trinity (<< 4:14.0.0) +Breaks: kword-data-trinity (<< 4:14.0.0) Description: data files for KWord word processor [Trinity] This package contains architecture-independent data files for KWord, the word processor shipped with the KDE Office Suite. @@ -286,8 +286,8 @@ Description: data files for KWord word processor [Trinity] Package: kthesaurus-trinity Architecture: any Section: kde -Replaces: kthesaurus-kde3 (<< 4:3.5.13) -Breaks: kthesaurus-kde3 (<< 4:3.5.13) +Replaces: kthesaurus-trinity (<< 4:14.0.0) +Breaks: kthesaurus-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, koffice-libs-trinity (<< ${KDE-Next-Version3}) Recommends: khelpcenter-trinity | koffice-trinity-doc-html (= ${source:Version}) Description: thesaurus for the KDE Office Suite [Trinity] @@ -300,8 +300,8 @@ Description: thesaurus for the KDE Office Suite [Trinity] Package: koffice-libs-trinity Architecture: any Section: libs -Replaces: koffice-libs-kde3 (<< 4:3.5.13) -Breaks: koffice-libs-kde3 (<< 4:3.5.13) +Replaces: koffice-libs-trinity (<< 4:14.0.0) +Breaks: koffice-libs-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, koffice-data-trinity (>> ${KDE-Version3}), koffice-data-trinity (<< ${KDE-Next-Version3}) Recommends: latex-xft-fonts, ruby, python Suggests: wordnet, texlive-base @@ -314,8 +314,8 @@ Description: common libraries and binaries for the KDE Office Suite [Trinity] Package: koffice-data-trinity Architecture: all Section: libs -Replaces: koffice-data-kde3 (<< 4:3.5.13) -Breaks: koffice-data-kde3 (<< 4:3.5.13) +Replaces: koffice-data-trinity (<< 4:14.0.0) +Breaks: koffice-data-trinity (<< 4:14.0.0) Recommends: khelpcenter-trinity | koffice-trinity-doc-html Description: common shared data for the KDE Office Suite [Trinity] This package provides the architecture-independent data that is shared @@ -326,8 +326,8 @@ Description: common shared data for the KDE Office Suite [Trinity] Package: koffice-trinity-dev Architecture: any Section: libdevel -Replaces: koffice-kde3-dev (<< 4:3.5.13) -Breaks: koffice-kde3-dev (<< 4:3.5.13) +Replaces: koffice-trinity-dev (<< 4:14.0.0) +Breaks: koffice-trinity-dev (<< 4:14.0.0) Depends: koffice-libs-trinity (= ${binary:Version}), karbon-trinity (= ${binary:Version}), kchart-trinity (= ${binary:Version}), kexi-trinity (= ${binary:Version}), kformula-trinity (= ${binary:Version}), kivio-trinity (= ${binary:Version}), koshell-trinity (= ${binary:Version}), kplato-trinity (= ${binary:Version}), kpresenter-trinity (= ${binary:Version}), chalk-trinity (= ${binary:Version}), kspread-trinity (= ${binary:Version}), kthesaurus-trinity (= ${binary:Version}), kugar-trinity (= ${binary:Version}), kword-trinity (= ${binary:Version}), tdelibs4-trinity-dev Description: common libraries for KOffice (development files) [Trinity] This package provides the development files for the libraries that are @@ -338,8 +338,8 @@ Description: common libraries for KOffice (development files) [Trinity] Package: koffice-trinity-dbg Section: libdevel Architecture: any -Replaces: koffice-kde3-dbg (<< 4:3.5.13) -Breaks: koffice-kde3-dbg (<< 4:3.5.13) +Replaces: koffice-trinity-dbg (<< 4:14.0.0) +Breaks: koffice-trinity-dbg (<< 4:14.0.0) Priority: extra Depends: koffice-libs-trinity (= ${binary:Version}) Description: debugging symbols for koffice [Trinity] diff --git a/ubuntu/maverick/applications/koffice/debian/source/format b/ubuntu/maverick/applications/koffice/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/koffice/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/koffice/debian/source/options b/ubuntu/maverick/applications/koffice/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/koffice/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/konversation/debian/control b/ubuntu/maverick/applications/konversation/debian/control index 37a646f93..5fbefbb2f 100644 --- a/ubuntu/maverick/applications/konversation/debian/control +++ b/ubuntu/maverick/applications/konversation/debian/control @@ -12,8 +12,8 @@ Homepage: http://konversation.kde.org/ Package: konversation-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: konversation-kde3 (<< 4:3.5.13) -Breaks: konversation-kde3 (<< 4:3.5.13) +Replaces: konversation-trinity (<< 4:14.0.0) +Breaks: konversation-trinity (<< 4:14.0.0) Recommends: python, ruby Suggests: libsoap-lite-perl Description: user friendly Internet Relay Chat (IRC) client for KDE [Trinity] @@ -37,8 +37,8 @@ Description: user friendly Internet Relay Chat (IRC) client for KDE [Trinity] Package: konversation-trinity-dbg Architecture: any Priority: extra -Replaces: konversation-kde3-dbg (<< 4:3.5.13) -Breaks: konversation-kde3-dbg (<< 4:3.5.13) +Replaces: konversation-trinity-dbg (<< 4:14.0.0) +Breaks: konversation-trinity-dbg (<< 4:14.0.0) Depends: konversation-trinity (= ${binary:Version}) Recommends: tdelibs-trinity-dbg Description: debugging symbols for konversation diff --git a/ubuntu/maverick/applications/konversation/debian/source/format b/ubuntu/maverick/applications/konversation/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/konversation/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/konversation/debian/source/options b/ubuntu/maverick/applications/konversation/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/konversation/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kopete-otr/debian/control b/ubuntu/maverick/applications/kopete-otr/debian/control index a6fd2d0c7..ba54b5a52 100644 --- a/ubuntu/maverick/applications/kopete-otr/debian/control +++ b/ubuntu/maverick/applications/kopete-otr/debian/control @@ -10,8 +10,8 @@ Homepage: http://kopete-otr.follefuder.org/ Package: kopete-otr-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: kopete-otr-kde3 (<< 4:3.5.13) -Breaks: kopete-otr-kde3 (<< 4:3.5.13) +Replaces: kopete-otr-trinity (<< 4:14.0.0) +Breaks: kopete-otr-trinity (<< 4:14.0.0) Description: Off-The-Record encryption for Kopete [Trinity] This plugin enables Off-The-Record encryption for the KDE instant messenger Kopete. Using this plugin you can encrypt chatsessions to other diff --git a/ubuntu/maverick/applications/kopete-otr/debian/source/format b/ubuntu/maverick/applications/kopete-otr/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kopete-otr/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kopete-otr/debian/source/options b/ubuntu/maverick/applications/kopete-otr/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kopete-otr/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kpicosim/debian/control b/ubuntu/maverick/applications/kpicosim/debian/control index 329129a04..ea7e0db48 100644 --- a/ubuntu/maverick/applications/kpicosim/debian/control +++ b/ubuntu/maverick/applications/kpicosim/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: kpicosim-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: kpicosim-kde3 (<< 4:3.5.13) -Breaks: kpicosim-kde3 (<< 4:3.5.13) +Replaces: kpicosim-trinity (<< 4:14.0.0) +Breaks: kpicosim-trinity (<< 4:14.0.0) Description: IDE and simulator for the Xilinx PicoBlaze-3 [Trinity] kpicosim is a development environment for the Xilinx PicoBlaze-3 soft-core processor for the KDE Desktop (Linux). diff --git a/ubuntu/maverick/applications/kpicosim/debian/source/format b/ubuntu/maverick/applications/kpicosim/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kpicosim/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kpicosim/debian/source/options b/ubuntu/maverick/applications/kpicosim/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kpicosim/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kpilot/debian/control b/ubuntu/maverick/applications/kpilot/debian/control index 44ba65f05..da2241070 100644 --- a/ubuntu/maverick/applications/kpilot/debian/control +++ b/ubuntu/maverick/applications/kpilot/debian/control @@ -12,8 +12,8 @@ Standards-Version: 3.8.4 Package: kpilot-trinity Section: utils Architecture: any -Replaces: kpilot-kde3 (<< 4:3.5.13) -Breaks: kpilot-kde3 (<< 4:3.5.13) +Replaces: kpilot-trinity (<< 4:14.0.0) +Breaks: kpilot-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, ${misc:Depends}, debconf (>= 0.5) | debconf-2.0 Suggests: knotes-trinity, korganizer-trinity Description: TDE Palm Pilot hot-sync tool diff --git a/ubuntu/maverick/applications/kpilot/debian/source/format b/ubuntu/maverick/applications/kpilot/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kpilot/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kpilot/debian/source/options b/ubuntu/maverick/applications/kpilot/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kpilot/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kpowersave.cmake/debian/control b/ubuntu/maverick/applications/kpowersave.cmake/debian/control index 2cab05a96..1ec23555d 100644 --- a/ubuntu/maverick/applications/kpowersave.cmake/debian/control +++ b/ubuntu/maverick/applications/kpowersave.cmake/debian/control @@ -10,8 +10,8 @@ Homepage: http://sourceforge.net/projects/powersave/ Package: kpowersave-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, hal (>= 0.5.8.1) -Replaces: kpowersave-kde3 (<< 4:3.5.13) -Breaks: kpowersave-kde3 (<< 4:3.5.13) +Replaces: kpowersave-trinity (<< 4:14.0.0) +Breaks: kpowersave-trinity (<< 4:14.0.0) Description: HAL based power management applet for Trinity KPowersave is a TDE systray applet which allows to control the power management settings and policies of your computer. diff --git a/ubuntu/maverick/applications/kpowersave.cmake/debian/source/format b/ubuntu/maverick/applications/kpowersave.cmake/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kpowersave.cmake/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kpowersave.cmake/debian/source/options b/ubuntu/maverick/applications/kpowersave.cmake/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kpowersave.cmake/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kpowersave/debian/control b/ubuntu/maverick/applications/kpowersave/debian/control index 886aab9b3..45b18d711 100644 --- a/ubuntu/maverick/applications/kpowersave/debian/control +++ b/ubuntu/maverick/applications/kpowersave/debian/control @@ -11,8 +11,8 @@ Homepage: http://sourceforge.net/projects/powersave/ Package: kpowersave-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, hal (>= 0.5.8.1) -Replaces: kpowersave-kde3 (<< 4:3.5.13) -Breaks: kpowersave-kde3 (<< 4:3.5.13) +Replaces: kpowersave-trinity (<< 4:14.0.0) +Breaks: kpowersave-trinity (<< 4:14.0.0) Description: HAL based power management applet for Trinity KPowersave is a KDE systray applet which allows to control the power management settings and policies of your computer. diff --git a/ubuntu/maverick/applications/kpowersave/debian/source/format b/ubuntu/maverick/applications/kpowersave/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kpowersave/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kpowersave/debian/source/options b/ubuntu/maverick/applications/kpowersave/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kpowersave/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kradio/debian/control b/ubuntu/maverick/applications/kradio/debian/control index cc803208e..3631e61e3 100644 --- a/ubuntu/maverick/applications/kradio/debian/control +++ b/ubuntu/maverick/applications/kradio/debian/control @@ -9,8 +9,8 @@ Homepage: http://kradio.sourceforge.net/ Package: kradio-trinity Architecture: any Depends: ${shlibs:Depends} -Replaces: kradio-kde3 (<< 4:3.5.13) -Breaks: kradio-kde3 (<< 4:3.5.13) +Replaces: kradio-trinity (<< 4:14.0.0) +Breaks: kradio-trinity (<< 4:14.0.0) Description: Comfortable Radio Application for KDE [Trinity] KRadio is a comfortable radio application for KDE 3.x with support for V4L and V4L2 radio cards drivers. diff --git a/ubuntu/maverick/applications/kradio/debian/source/format b/ubuntu/maverick/applications/kradio/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kradio/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kradio/debian/source/options b/ubuntu/maverick/applications/kradio/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kradio/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/krename/debian/control b/ubuntu/maverick/applications/krename/debian/control index 42389bc1a..a9a37b47c 100644 --- a/ubuntu/maverick/applications/krename/debian/control +++ b/ubuntu/maverick/applications/krename/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: krename-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: krename-kde3 (<< 4:3.5.13) -Breaks: krename-kde3 (<< 4:3.5.13) +Replaces: krename-trinity (<< 4:14.0.0) +Breaks: krename-trinity (<< 4:14.0.0) Description: Powerful batch renamer for KDE 3.x [Trinity] This package contains a very powerful batch file renamer for Trinity which can rename a list of files based on a set of expressions. diff --git a/ubuntu/maverick/applications/krename/debian/source/format b/ubuntu/maverick/applications/krename/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/krename/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/krename/debian/source/options b/ubuntu/maverick/applications/krename/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/krename/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/krusader/debian/control b/ubuntu/maverick/applications/krusader/debian/control index cf8f42e14..df68f5511 100644 --- a/ubuntu/maverick/applications/krusader/debian/control +++ b/ubuntu/maverick/applications/krusader/debian/control @@ -10,8 +10,8 @@ Homepage: http://krusader.sourceforge.net Package: krusader-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: krusader-kde3 (<< 4:3.5.13) -Breaks: krusader-kde3 (<< 4:3.5.13) +Replaces: krusader-trinity (<< 4:14.0.0) +Breaks: krusader-trinity (<< 4:14.0.0) Suggests: md5deep | cfv, kedit-trinity, khexedit-trinity, konsole-trinity, kmail-trinity, krename-trinity, kdiff3-trinity | kompare-trinity | xxdiff, ark-trinity, arj, bzip2, cpio, lha, unrar | unrar-free | rar, rpm, unace, unzip, zip, p7zip, tdebase-trinity-bin, @@ -38,8 +38,8 @@ Description: twin-panel (commander-style) file manager for KDE (and other deskto Package: krusader-trinity-dbg Section: devel Architecture: any -Replaces: krusader-kde3-dbg (<< 4:3.5.13) -Breaks: krusader-kde3-dbg (<< 4:3.5.13) +Replaces: krusader-trinity-dbg (<< 4:14.0.0) +Breaks: krusader-trinity-dbg (<< 4:14.0.0) Priority: extra Depends: krusader-trinity (= ${binary:Version}) Description: debugging symbols for krusader-trinity diff --git a/ubuntu/maverick/applications/krusader/debian/source/format b/ubuntu/maverick/applications/krusader/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/krusader/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/krusader/debian/source/options b/ubuntu/maverick/applications/krusader/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/krusader/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/ksplash-engine-moodin/debian/control b/ubuntu/maverick/applications/ksplash-engine-moodin/debian/control index c4a15afc4..25f0639e4 100644 --- a/ubuntu/maverick/applications/ksplash-engine-moodin/debian/control +++ b/ubuntu/maverick/applications/ksplash-engine-moodin/debian/control @@ -10,8 +10,8 @@ Standards-Version: 3.8.4 Package: ksplash-engine-moodin-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: ksplash-engine-moodin-kde3 (<< 4:3.5.13) -Breaks: ksplash-engine-moodin-kde3 (<< 4:3.5.13) +Replaces: ksplash-engine-moodin-trinity (<< 4:14.0.0) +Breaks: ksplash-engine-moodin-trinity (<< 4:14.0.0) Description: fading splash screen engine for Trinity Heavily customizable engine for various types of themes. . diff --git a/ubuntu/maverick/applications/ksplash-engine-moodin/debian/source/format b/ubuntu/maverick/applications/ksplash-engine-moodin/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/ksplash-engine-moodin/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/ksplash-engine-moodin/debian/source/options b/ubuntu/maverick/applications/ksplash-engine-moodin/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/ksplash-engine-moodin/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/ksquirrel/debian/control b/ubuntu/maverick/applications/ksquirrel/debian/control index 147fff2eb..d2c01e591 100644 --- a/ubuntu/maverick/applications/ksquirrel/debian/control +++ b/ubuntu/maverick/applications/ksquirrel/debian/control @@ -16,8 +16,8 @@ Standards-Version: 3.8.4 Package: ksquirrel-trinity Architecture: any Depends: libksquirrel0-trinity, ${shlibs:Depends}, ${misc:Depends} -Replaces: ksquirrel-kde3 (<< 4:3.5.13) -Breaks: ksquirrel-kde3 (<< 4:3.5.13) +Replaces: ksquirrel-trinity (<< 4:14.0.0) +Breaks: ksquirrel-trinity (<< 4:14.0.0) Description: Powerful Trinity image viewer KSquirrel is an image viewer for KDE with disk navigator, file tree, multiple directory view, thumbnails, extended thumbnails, dynamic diff --git a/ubuntu/maverick/applications/ksquirrel/debian/source/format b/ubuntu/maverick/applications/ksquirrel/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/ksquirrel/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/ksquirrel/debian/source/options b/ubuntu/maverick/applications/ksquirrel/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/ksquirrel/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kstreamripper/debian/control b/ubuntu/maverick/applications/kstreamripper/debian/control index 47563dcb8..96ea4651d 100644 --- a/ubuntu/maverick/applications/kstreamripper/debian/control +++ b/ubuntu/maverick/applications/kstreamripper/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: kstreamripper-trinity Architecture: any Depends: ${shlibs:Depends}, streamripper -Replaces: kstreamripper-kde3 (<< 4:3.5.13) -Breaks: kstreamripper-kde3 (<< 4:3.5.13) +Replaces: kstreamripper-trinity (<< 4:14.0.0) +Breaks: kstreamripper-trinity (<< 4:14.0.0) Description: TDE frontend for streamripper KStreamRipper is a small frontend for the streamripper command line utility. Streamripper captures internet shoutcast radio streams diff --git a/ubuntu/maverick/applications/kstreamripper/debian/source/format b/ubuntu/maverick/applications/kstreamripper/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kstreamripper/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kstreamripper/debian/source/options b/ubuntu/maverick/applications/kstreamripper/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kstreamripper/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/ksystemlog/debian/control b/ubuntu/maverick/applications/ksystemlog/debian/control index abeeea972..4dc7c09a5 100644 --- a/ubuntu/maverick/applications/ksystemlog/debian/control +++ b/ubuntu/maverick/applications/ksystemlog/debian/control @@ -10,8 +10,8 @@ Standards-Version: 3.8.4 Package: ksystemlog-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: ksystemlog-kde3 (<< 4:3.5.13) -Breaks: ksystemlog-kde3 (<< 4:3.5.13) +Replaces: ksystemlog-trinity (<< 4:14.0.0) +Breaks: ksystemlog-trinity (<< 4:14.0.0) Description: system log viewer tool for Trinity ksystemlog is a system log viewer tool for Trinity. . diff --git a/ubuntu/maverick/applications/ksystemlog/debian/source/format b/ubuntu/maverick/applications/ksystemlog/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/ksystemlog/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/ksystemlog/debian/source/options b/ubuntu/maverick/applications/ksystemlog/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/ksystemlog/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/ktechlab/debian/control b/ubuntu/maverick/applications/ktechlab/debian/control index a7a59162a..7bc68b3c5 100644 --- a/ubuntu/maverick/applications/ktechlab/debian/control +++ b/ubuntu/maverick/applications/ktechlab/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: ktechlab-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: ktechlab-kde3 (<< 4:3.5.13) -Breaks: ktechlab-kde3 (<< 4:3.5.13) +Replaces: ktechlab-trinity (<< 4:14.0.0) +Breaks: ktechlab-trinity (<< 4:14.0.0) Recommends: gputils Description: circuit simulator for microcontrollers and electronics [Trinity] KTechlab is a circuit simulator with a nice, clickable and discoverable diff --git a/ubuntu/maverick/applications/ktechlab/debian/source/format b/ubuntu/maverick/applications/ktechlab/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/ktechlab/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/ktechlab/debian/source/options b/ubuntu/maverick/applications/ktechlab/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/ktechlab/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/ktorrent/debian/control b/ubuntu/maverick/applications/ktorrent/debian/control index ada1f4cb0..4438d11ce 100644 --- a/ubuntu/maverick/applications/ktorrent/debian/control +++ b/ubuntu/maverick/applications/ktorrent/debian/control @@ -2,14 +2,14 @@ Source: ktorrent-trinity Section: kde Priority: optional Maintainer: Timothy Pearson <[email protected]> -Build-Depends: debhelper (>= 5.0), cdbs, docbook2x, tdelibs4-trinity-dev, libpcre3-dev, libx11-dev, libgmp3-dev, automake, autoconf, libtool, libltdl-dev +Build-Depends: debhelper (>= 5.0), cdbs, docbook2x, tdelibs4-trinity-dev, libpcre3-dev, libx11-dev, libgmp3-dev, libavahi-tqt-dev, automake, autoconf, libtool, libltdl-dev Standards-Version: 3.8.4 Package: ktorrent-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: ktorrent-kde3 (<< 4:3.5.13) -Breaks: ktorrent-kde3 (<< 4:3.5.13) +Replaces: ktorrent-trinity (<< 4:14.0.0) +Breaks: ktorrent-trinity (<< 4:14.0.0) Suggests: php5-cli Recommends: tdebase-kio-plugins-trinity Description: BitTorrent client for Trinity diff --git a/ubuntu/maverick/applications/ktorrent/debian/source/format b/ubuntu/maverick/applications/ktorrent/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/ktorrent/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/ktorrent/debian/source/options b/ubuntu/maverick/applications/ktorrent/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/ktorrent/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kuickshow/debian/control b/ubuntu/maverick/applications/kuickshow/debian/control index 49b582716..3cf2ee2de 100644 --- a/ubuntu/maverick/applications/kuickshow/debian/control +++ b/ubuntu/maverick/applications/kuickshow/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: kuickshow-trinity Section: graphics Architecture: any -Replaces: kuickshow-kde3 (<< 4:3.5.13) -Breaks: kuickshow-kde3 (<< 4:3.5.13) +Replaces: kuickshow-trinity (<< 4:14.0.0) +Breaks: kuickshow-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends} Suggests: khelpcenter-trinity Description: KDE image/slideshow viewer [Trinity] diff --git a/ubuntu/maverick/applications/kuickshow/debian/source/format b/ubuntu/maverick/applications/kuickshow/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kuickshow/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kuickshow/debian/source/options b/ubuntu/maverick/applications/kuickshow/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kuickshow/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kvirc/debian/control b/ubuntu/maverick/applications/kvirc/debian/control index 01e7eb13a..8f5023ee6 100644 --- a/ubuntu/maverick/applications/kvirc/debian/control +++ b/ubuntu/maverick/applications/kvirc/debian/control @@ -11,8 +11,8 @@ Homepage: http://kvirc.net/ Package: kvirc-trinity Architecture: any Depends: kvirc-data-trinity (= ${source:Version}), ${shlibs:Depends} -Replaces: kvirc-kde3 (<< 4:3.5.13) -Breaks: kvirc-kde3 (<< 4:3.5.13) +Replaces: kvirc-trinity (<< 4:14.0.0) +Breaks: kvirc-trinity (<< 4:14.0.0) Description: Trinity based next generation IRC client with module support A highly configurable graphical IRC client with an MDI interface, built-in scripting language, support for IRC DCC, drag & drop file @@ -26,8 +26,8 @@ Description: Trinity based next generation IRC client with module support Package: kvirc-data-trinity Section: net Architecture: all -Replaces: kvirc-data-kde3 (<< 4:3.5.13) -Breaks: kvirc-data-kde3 (<< 4:3.5.13) +Replaces: kvirc-data-trinity (<< 4:14.0.0) +Breaks: kvirc-data-trinity (<< 4:14.0.0) Depends: kvirc-trinity (>= ${source:Version}) Description: Data files for KVIrc This package contains the architecture-independent data needed by KVIrc in @@ -43,8 +43,8 @@ Description: Data files for KVIrc Package: kvirc-trinity-dev Section: devel Architecture: any -Replaces: kvirc-kde3-dev (<< 4:3.5.13) -Breaks: kvirc-kde3-dev (<< 4:3.5.13) +Replaces: kvirc-trinity-dev (<< 4:14.0.0) +Breaks: kvirc-trinity-dev (<< 4:14.0.0) Depends: kvirc-trinity (>= ${source:Version}) Description: Development files for KVIrc This package contains KVIrc libraries and include files you need if you diff --git a/ubuntu/maverick/applications/kvirc/debian/source/format b/ubuntu/maverick/applications/kvirc/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kvirc/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kvirc/debian/source/options b/ubuntu/maverick/applications/kvirc/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kvirc/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kvkbd/debian/control b/ubuntu/maverick/applications/kvkbd/debian/control index f4a40a1e8..e82a50439 100644 --- a/ubuntu/maverick/applications/kvkbd/debian/control +++ b/ubuntu/maverick/applications/kvkbd/debian/control @@ -9,8 +9,8 @@ Homepage: http://pan4os.info/main/index.php Package: kvkbd-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: kvkbd-kde3 (<< 4:3.5.13) -Breaks: kvkbd-kde3 (<< 4:3.5.13) +Replaces: kvkbd-trinity (<< 4:14.0.0) +Breaks: kvkbd-trinity (<< 4:14.0.0) Description: Virtual keyboard for KDE [Trinity] Virtual keyboard for KDE for use with accessibility. Application contains a systray widget as well as a dockwidget. diff --git a/ubuntu/maverick/applications/kvkbd/debian/source/format b/ubuntu/maverick/applications/kvkbd/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kvkbd/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kvkbd/debian/source/options b/ubuntu/maverick/applications/kvkbd/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kvkbd/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kvpnc/debian/README.Debian b/ubuntu/maverick/applications/kvpnc/debian/README.Debian new file mode 100644 index 000000000..a65e1a72c --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/README.Debian @@ -0,0 +1,32 @@ +kvpnc for Debian +---------------- + +kvpnc for Debian uses su-to-root from menu package instead kdesu. + +Howto setup kvpnc for use without root password using sudo: + + * Install sudo + + aptitude install sudo + + * Edit /etc/sudoers + + # Cmnd alias specification + Cmnd_Alias KVPNC = /usr/bin/kvpnc + + # User privilege specification + ALL ALL=NOPASSWD:KVPNC + + * Edit desktop link /usr/share/applications/kde/Internet/kvpnc.desktop + + * replace the folling lines: + + Exec=su-to-root -X -c /usr/bin/kvpnc + X-KDE-SubstituteUID=true + + with: + + Exec=sudo kvpnc + X-KDE-SubstituteUID=false + + -- Fathi Boudra <[email protected]>, Thu, 18 May 2006 15:17:52 +0100 diff --git a/ubuntu/maverick/applications/kvpnc/debian/changelog b/ubuntu/maverick/applications/kvpnc/debian/changelog new file mode 100644 index 000000000..f8be4973c --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/changelog @@ -0,0 +1,6 @@ +kvpnc-trinity (0.9.6a-1) lucid; urgency=low + + * Initial build + + -- Timothy Pearson <[email protected]> Tue, 06 Dec 2011 12:26:00 -0600 + diff --git a/ubuntu/maverick/applications/kdmtheme/debian/compat b/ubuntu/maverick/applications/kvpnc/debian/compat index 7ed6ff82d..7ed6ff82d 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/compat +++ b/ubuntu/maverick/applications/kvpnc/debian/compat diff --git a/ubuntu/maverick/applications/kvpnc/debian/control b/ubuntu/maverick/applications/kvpnc/debian/control new file mode 100644 index 000000000..6a8196662 --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/control @@ -0,0 +1,22 @@ +Source: kvpnc-trinity +Section: kde +Priority: optional +Maintainer: Timothy Pearson <[email protected]> +Uploaders: Fathi Boudra <[email protected]>, Mark Purcell <[email protected]> +Build-Depends: cdbs, debhelper (>= 5), quilt, tdelibs4-trinity-dev, libgcrypt11-dev, automake, autoconf, libtool, libltdl-dev +Standards-Version: 3.8.4 + +Package: kvpnc-trinity +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, menu, net-tools, psmisc, tdebase-trinity-bin | gksu | sux, module-init-tools | modutils +Replaces: kvpnc-trinity (<< 4:14.0.0) +Breaks: kvpnc-trinity (<< 4:14.0.0) +Suggests: iptables, openssl, openvpn, racoon, vpnc, pptp-linux, openswan, xl2tpd, openct, opensc +Description: vpn clients frontend for TDE + KVpnc is a TDE frontend for various vpn clients. + . + It supports : + * Cisco-compatible VPN client (vpnc) + * IPSec (freeswan, openswan, racoon) + * Point-to-Point Tunneling Protocol (PPTP) client (pptp-linux) + * Virtual Private Network daemon (openvpn) diff --git a/ubuntu/maverick/applications/kvpnc/debian/copyright b/ubuntu/maverick/applications/kvpnc/debian/copyright new file mode 100644 index 000000000..d6c60aaf4 --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/copyright @@ -0,0 +1,65 @@ +This package was debianized by Fathi Boudra <[email protected]> on +Thu, 26 Jan 2006 11:49:10 +0100. + +It was downloaded from http://home.gna.org/kvpnc + +Copyright Holder: Christoph Thielecke <[email protected]> + +Copyright for ciscopasswddecoder : + (C) 2005 hal9000 <[email protected]> + (C) 2005 Maurice Massar <[email protected]> + (C) 2005 Christoph Thielecke <[email protected]> + +Copyright for openvpn-kde-dialogs.pl: + Alon Bar-Lev <[email protected]> + +kvpnc contains parts of code from klcc project: + Peter Simonsson <[email protected]> + +Copyright for kfeedback (user feedback form and mailing utilities) and +parts of code from kdirstat project: + Stefan Hundhammer <[email protected]> + +preferencesdialog contains parts of code from konversation project +(konvisettingsdialog.cpp) + (C) 2006 John Tapsell <[email protected]> + (C) 2006 Eike Hein <[email protected]> + +kfeedback 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'. + +kvpnc 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-2'. + diff --git a/ubuntu/maverick/applications/kvpnc/debian/docs b/ubuntu/maverick/applications/kvpnc/debian/docs new file mode 100644 index 000000000..724e08449 --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/docs @@ -0,0 +1,2 @@ +README +TODO diff --git a/ubuntu/maverick/applications/kvpnc/debian/kvpnc-trinity.1 b/ubuntu/maverick/applications/kvpnc/debian/kvpnc-trinity.1 new file mode 100644 index 000000000..4111d5ff4 --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/kvpnc-trinity.1 @@ -0,0 +1,69 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH KVPNC 1 "novembre 16, 2005" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp <n> insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +kvpnc \- vpn clients frontend for KDE +.SH SYNOPSIS +.B kvpnc +.RI [ options ] +.br +.SH DESCRIPTION +.\" TeX users may be more comfortable with the \fB<whatever>\fP and +.\" \fI<whatever>\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBkvpnc\fP is a KDE frontend for various vpn clients. +.br +It supports : +.br + * Cisco-compatible VPN client (vpnc) +.br + * IPSec (freeswan, openswan, racoon) +.br + * Point-to-Point Tunneling Protocol (PPTP) client (pptp-linux) +.br + * Virtual Private Network daemon (openvpn) +.SH OPTIONS +All KDE and Qt programs accept some common command\-line options. +.br +Kvpnc has no application\-specific options. +.PP +.TP +\fB\-\-help\fR +Show help about options +.TP +\fB\-\-help\-qt\fR +Show Qt specific options +.TP +\fB\-\-help\-kde\fR +Show KDE specific options +.TP +\fB\-\-help\-all\fR +Show all options +.TP +\fB\-\-author\fR +Show author information +.TP +\fB\-v\fR, \fB\-\-version\fR +Show version information +.TP +\fB\-\-license\fR +Show license information +.SH AUTHOR +kvpnc was written by Christoph Thielecke <[email protected]>. +.PP +This manual page was written by Fathi Boudra <[email protected]>, +for the Debian project (but may be used by others). diff --git a/ubuntu/maverick/applications/kvpnc/debian/menu b/ubuntu/maverick/applications/kvpnc/debian/menu new file mode 100644 index 000000000..1f3e59d31 --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/menu @@ -0,0 +1,6 @@ +?package(kvpnc):\ + needs="X11"\ + section="Applications/Network/Communication"\ + title="kvpnc"\ + hints="KDE"\ + command="su-to-root -X -c kvpnc" diff --git a/ubuntu/maverick/applications/kvpnc/debian/patches/10_su-to-root_usage.diff b/ubuntu/maverick/applications/kvpnc/debian/patches/10_su-to-root_usage.diff new file mode 100644 index 000000000..9630fd3f8 --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/patches/10_su-to-root_usage.diff @@ -0,0 +1,11 @@ +--- a/src/kvpnc.desktop ++++ b/src/kvpnc.desktop +@@ -18,7 +18,7 @@ + GenericName[xx]=xxVPN Client GUIxx + + Categories=Network;RemoteAccess;KDE;Qt +-Exec=kvpnc ++Exec=su-to-root -X -c /opt/trinity/bin/kvpnc + X-KDE-SubstituteUID=true + Icon=kvpnc + Type=Application diff --git a/ubuntu/maverick/applications/kvpnc/debian/patches/13_add_kuser_issuperuser.diff b/ubuntu/maverick/applications/kvpnc/debian/patches/13_add_kuser_issuperuser.diff new file mode 100644 index 000000000..70fd0192e --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/patches/13_add_kuser_issuperuser.diff @@ -0,0 +1,29 @@ +diff --git a/src/main.cpp b/src/main.cpp +index 7c45fcf..b933832 100644 +--- a/src/main.cpp ++++ b/src/main.cpp +@@ -24,6 +24,7 @@ + #include <kmessagebox.h> + #include <kmainwindow.h> + #include <kapp.h> ++#include <kuser.h> + + #include <klocale.h> + #include <dcopclient.h> +@@ -134,11 +135,11 @@ int main ( int argc, char *argv[] ) + } + else + { +-// if (getenv("USER") != "root") +-// { +-// KMessageBox::error( 0, I18N_NOOP( "Kvpnc must be started as root!" ) ); +-// exit(0); +-// } ++ if (getenv("USER") != "root") ++ { ++ KMessageBox::error( 0, I18N_NOOP( "Kvpnc must be started as root!" ) ); ++ exit(0); ++ } + + KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + diff --git a/ubuntu/maverick/applications/kvpnc/debian/patches/series b/ubuntu/maverick/applications/kvpnc/debian/patches/series new file mode 100644 index 000000000..09040ada9 --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/patches/series @@ -0,0 +1,2 @@ +10_su-to-root_usage.diff +13_add_kuser_issuperuser.diff diff --git a/ubuntu/maverick/applications/kvpnc/debian/rules b/ubuntu/maverick/applications/kvpnc/debian/rules new file mode 100755 index 000000000..8e7f6fc6f --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/rules @@ -0,0 +1,42 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/kde.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include /usr/share/cdbs/1/rules/utils.mk + +DEB_CONFIGURE_SCRIPT_ENV += LDFLAGS="-Wl,--as-needed" +DEB_INSTALL_MANPAGES_kvpnc-trinity := debian/kvpnc-trinity.1 + +DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde +DEB_CONFIGURE_MANDIR := /opt/trinity/share/man +DEB_CONFIGURE_PREFIX := /opt/trinity +DEB_CONFIGURE_INFODIR := /opt/trinity/share/info + +cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/trinity --with-extra-libs=/opt/trinity/lib --with-extra-includes=/opt/trinity/include/kde + +makebuilddir/kvpnc-trinity:: + 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 + +install/kvpnc-trinity:: + # fix script-not-executable + chmod 0755 debian/kvpnc-trinity/opt/trinity/share/apps/kvpnc/ping_check.sh + + # remove uneeded dir + rm -rf debian/kvpnc-trinity/opt/trinity/share/doc/kde/HTML/kvpnc + + # install desktop file in applications + install -D -p -m0644 src/kvpnc.desktop \ + debian/kvpnc-trinity/opt/trinity/share/applications/kde/kvpnc.desktop + +binary-post-install/kvpnc-trinity:: + rm -rf debian/kvpnc-trinity/opt/trinity/share/applnk/ + +clean:: + rm -f config.status config.log + find . -type f -name '*.gmo' | xargs rm -f diff --git a/ubuntu/maverick/applications/kvpnc/debian/source/format b/ubuntu/maverick/applications/kvpnc/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/kvpnc/debian/source/options b/ubuntu/maverick/applications/kvpnc/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/kvpnc/debian/watch b/ubuntu/maverick/applications/kvpnc/debian/watch new file mode 100644 index 000000000..5c0ec1d76 --- /dev/null +++ b/ubuntu/maverick/applications/kvpnc/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://download.gna.org/kvpnc/kvpnc-(0.*)\.tar\.bz2 debian svn-upgrade diff --git a/ubuntu/maverick/applications/piklab/debian/control b/ubuntu/maverick/applications/piklab/debian/control index 1bfd9448a..81db97ac2 100644 --- a/ubuntu/maverick/applications/piklab/debian/control +++ b/ubuntu/maverick/applications/piklab/debian/control @@ -10,8 +10,8 @@ Homepage: http://piklab.sourceforge.net/ Package: piklab-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: piklab-kde3 (<< 4:3.5.13) -Breaks: piklab-kde3 (<< 4:3.5.13) +Replaces: piklab-trinity (<< 4:14.0.0) +Breaks: piklab-trinity (<< 4:14.0.0) Recommends: gputils, libusb-dev Suggests: sdcc (>= 2.5.0), sdcc-libraries Description: IDE for PIC-microcontroller development [Trinity] diff --git a/ubuntu/maverick/applications/piklab/debian/source/format b/ubuntu/maverick/applications/piklab/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/piklab/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/piklab/debian/source/options b/ubuntu/maverick/applications/piklab/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/piklab/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/potracegui/debian/control b/ubuntu/maverick/applications/potracegui/debian/control index c4c1925dc..01aaf4e52 100644 --- a/ubuntu/maverick/applications/potracegui/debian/control +++ b/ubuntu/maverick/applications/potracegui/debian/control @@ -10,8 +10,8 @@ Standards-Version: 3.8.4 Package: potracegui-trinity Architecture: any Depends: ${shlibs:Depends}, potrace -Replaces: potracegui-kde3 (<< 4:3.5.13) -Breaks: potracegui-kde3 (<< 4:3.5.13) +Replaces: potracegui-trinity (<< 4:14.0.0) +Breaks: potracegui-trinity (<< 4:14.0.0) Suggests: autotrace Description: KDE frontend for potrace [Trinity] A KDE interface for the commandline tracing tools potrace and/or autotrace. It diff --git a/ubuntu/maverick/applications/potracegui/debian/source/format b/ubuntu/maverick/applications/potracegui/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/potracegui/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/potracegui/debian/source/options b/ubuntu/maverick/applications/potracegui/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/potracegui/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/rosegarden/debian/cdbs/buildvars.mk b/ubuntu/maverick/applications/rosegarden/debian/cdbs/buildvars.mk new file mode 100644 index 000000000..23d4709dc --- /dev/null +++ b/ubuntu/maverick/applications/rosegarden/debian/cdbs/buildvars.mk @@ -0,0 +1,86 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2002,2003 Colin Walters <[email protected]> +# Description: Defines some useful variables, but no rules +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_buildvars +_cdbs_rules_buildvars = 1 + +CDBS_VERSION = something + +# Common useful variables +DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':')) +DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') +DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) +DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') +DEB_ISNATIVE := $(shell dpkg-parsechangelog | egrep '^Version:' | perl -ne 'print if not /^Version:\s*.*-/;') + +# Split into arch/indep packages +ifneq ($(DEB_INDEP_PACKAGES),cdbs) +DEB_INDEP_PACKAGES := $(filter-out $(DONT_BUILD), $(strip $(shell $(_cdbs_scripts_path)/list-packages indep))) +DEB_ARCH_PACKAGES := $(filter-out $(DONT_BUILD), $(filter-out $(DEB_INDEP_PACKAGES),$(strip $(shell $(_cdbs_scripts_path)/list-packages same)))) +endif +# Split into normal and udeb packages +ifeq ($(DEB_UDEB_PACKAGES),) +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +DEB_UDEB_PACKAGES = $(filter-out $(DONT_BUILD),$(filter %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +else +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES), $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +endif +# Too much bother for now. If someone complains we'll fix it. +#DEB_ARCH_UDEB_PACKAGES = $(filter %-udeb, $(DEB_ARCH_PACKAGES)) +#DEB_INDEP_UDEB_PACKAGES = $(filter %-udeb, $(DEB_INDEP_PACKAGES)) +# A handy list of every package, udeb or not +DEB_ALL_PACKAGES = $(filter-out $(DONT_BUILD),$(DEB_PACKAGES) $(DEB_UDEB_PACKAGES)) +DEB_INDEP_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_INDEP_PACKAGES))) +DEB_ARCH_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_ARCH_PACKAGES))) + +DEB_DBG_PACKAGES = $(filter-out $(DONT_BUILD), $(filter %-dbg, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) + +# Some support for srcdir != builddir builds. +# These are relative to the root of the package +DEB_SRCDIR ?= . +DEB_BUILDDIR ?= $(strip $(DEB_SRCDIR)) + +# Miscellaneous bits +DEB_ARCH = $(shell dpkg --print-architecture) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) +DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) +DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) + +ifeq ($(words $(DEB_ALL_PACKAGES)),1) + DEB_DESTDIR = $(CURDIR)/debian/$(strip $(DEB_ALL_PACKAGES))/ +else + DEB_DESTDIR = $(CURDIR)/debian/tmp/ +endif + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.23-1.1) + +endif diff --git a/ubuntu/maverick/applications/rosegarden/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/rosegarden/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..856fa4932 --- /dev/null +++ b/ubuntu/maverick/applications/rosegarden/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,110 @@ +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_debian-qt-kde +_cdbs_class_debian-qt-kde := 1 + +# Note: This _must_ be included before autotools.mk, or it won't work. +common-configure-arch common-configure-indep:: debian/stamp-cvs-make +debian/stamp-cvs-make: + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) +include debian/cdbs/uploaders.mk + +DEB_PATCHDIRS := debian/patches/common debian/patches + +DEB_KDE_ENABLE_FINAL := yes +DEB_INSTALL_DOCS_ALL := + +DEB_DH_MAKESHLIBS_ARGS_ALL := -V +DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib) + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) + else + cdbs_kde_enable_final = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +common-binary-indep:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_INDEP_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +common-binary-arch:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_ARCH_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +clean:: + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -rf debian/shlibs-check + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + done + +clean:: + rm -f debian/stamp-cvs-make + +endif + +#common-build-indep:: debian/stamp-kde-apidox +#debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) +# touch $@ +# +#common-install-indep:: common-install-kde-apidox +#common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) +# +#clean:: +# rm -f debian/stamp-kde-apidox diff --git a/ubuntu/maverick/applications/rosegarden/debian/cdbs/kde.mk b/ubuntu/maverick/applications/rosegarden/debian/cdbs/kde.mk new file mode 100644 index 000000000..9dbcfbafd --- /dev/null +++ b/ubuntu/maverick/applications/rosegarden/debian/cdbs/kde.mk @@ -0,0 +1,97 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Christopher L Cheney <[email protected]> +# Description: A class for KDE packages; sets KDE environment variables, etc +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_kde +_cdbs_class_kde := 1 + +# for dh_icons +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +# include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) + +export kde_cgidir = \$${libdir}/cgi-bin +export kde_confdir = \$${sysconfdir}/trinity +export kde_htmldir = \$${datadir}/doc/kde/HTML + +ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) +endif + +ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = + cdbs_kde_enable_debug = --enable-debug=yes +else + cdbs_kde_enable_debug = --disable-debug +endif + +ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_debug = --enable-debug=full +endif + +cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/" +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi + +cleanbuilddir:: + -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) + +common-build-arch common-build-indep:: debian/stamp-kde-apidox +debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) + touch $@ + +common-install-prehook-impl:: + mkdir -p po + -XGETTEXT=/usr/bin/kde-xgettext EXTRACTATTR=/opt/trinity/bin/extractattr sh $(DEB_SRCDIR)/admin/cvs.sh extract-messages + -for file in po/*pot; do \ + sed "s/charset=CHARSET/charset=UTF-8/" -i $$file; \ + done + +common-install-arch common-install-indep:: common-install-kde-apidox +common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) + +clean:: + rm -f debian/stamp-kde-apidox + rm -rf po/*.pot + +# This is a convenience target for calling manually. It's not part of +# the build process. +buildprep: clean apply-patches + $(MAKE) -f admin/Makefile.common dist + debian/rules clean + +endif diff --git a/ubuntu/maverick/applications/rosegarden/debian/cdbs/team-members b/ubuntu/maverick/applications/rosegarden/debian/cdbs/team-members new file mode 100644 index 000000000..05761af6e --- /dev/null +++ b/ubuntu/maverick/applications/rosegarden/debian/cdbs/team-members @@ -0,0 +1,16 @@ +Sune Vuorela <[email protected]> +Ana Beatriz Guerrero Lopez <[email protected]> +Fathi Boudra <[email protected]> +Modestas Vainius <[email protected]> +Josh Metzler <[email protected]> +Isaac Clerencia <[email protected]> +Adeodato Simó <[email protected]> +Adeodato Simo <[email protected]> +Christopher Martin <[email protected]> +Daniel Schepler <[email protected]> +Sarah Hobbs <[email protected]> +Nacho Barrientos Arias <[email protected]> +Ricardo Javier Cardenes Medina <[email protected]> +Ricardo Cardenes <[email protected]> +Armin Berres <[email protected]> +Francesco Pedrini <[email protected]> diff --git a/ubuntu/maverick/applications/rosegarden/debian/cdbs/uploaders.mk b/ubuntu/maverick/applications/rosegarden/debian/cdbs/uploaders.mk new file mode 100644 index 000000000..31adfe31e --- /dev/null +++ b/ubuntu/maverick/applications/rosegarden/debian/cdbs/uploaders.mk @@ -0,0 +1,29 @@ + +MAINTAINER=Debian Qt/KDE Maintainers <[email protected]> +UPLOADERS=$(shell grep -e +++ -e "^ -- " debian/changelog | grep -v "[email protected]" | head -13 | /bin/sed 's/^\s*//;s/\s*$$//;s/^+++\? Changes by //;s/^+++\? //;s/-- //;s/:$$//;s/ <.*//' | sort -u | while read line ; do grep "$$line" debian/cdbs/team-members ; done | tr "\n" ", " | sed 's/,/, /g;s/, $$//') + + +debian/control.tmp: + @if [ ! -e debian/control.in ] ; then \ + echo "this package is not yet prepared for using automatic update of uploaders"; \ + echo "Please do so."; \ + exit 1; \ + fi + @sed 's/@@@UPLOADERS@@@/$(UPLOADERS)/;s#@@@MAINTAINER@@@#$(MAINTAINER)#' debian/control.in > debian/control.tmp + +check-uploaders: debian/control.tmp + @if ! diff -q debian/control debian/control.tmp ; then \ + echo "WARNING:: Control file differs from manually generated one" ; \ + echo "WARNING:: Please update it manually and check it afterwards" ; \ + echo "WARNING:: Uploaders are updated by debian/rules update-uploaders" ;\ + echo "WARNING:: If this is a binNMU, NMU or security upload, just ignore" ;\ + fi + + +clean:: + rm -f debian/control.tmp + +update-uploaders: debian/control.tmp + @mv -f debian/control.tmp debian/control + +makebuilddir:: check-uploaders diff --git a/ubuntu/maverick/applications/rosegarden/debian/cdbs/versions.pl b/ubuntu/maverick/applications/rosegarden/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/ubuntu/maverick/applications/rosegarden/debian/cdbs/versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; +my ($version3, $version3_next); +my ($version2, $version2_next); + +($version3 = $version) =~ s/-[^-]+$//; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "KDE-Version3=$version3\n"; +print "KDE-Version2=$version2\n"; +print "KDE-Next-Version3=$version3_next\n"; +print "KDE-Next-Version2=$version2_next\n"; diff --git a/ubuntu/maverick/applications/rosegarden/debian/control b/ubuntu/maverick/applications/rosegarden/debian/control index 639d9bd43..d29778110 100644 --- a/ubuntu/maverick/applications/rosegarden/debian/control +++ b/ubuntu/maverick/applications/rosegarden/debian/control @@ -4,15 +4,15 @@ Priority: optional Maintainer: Timothy Pearson <[email protected]> XSBC-Original-Maintainer: Debian Multimedia Team <[email protected]> Uploaders: Mike O'Connor <[email protected]>, Free Ekanayaka <[email protected]> -Build-Depends: debhelper (>> 5.0.0), cmake, tdelibs4-trinity-dev, libasound2-dev (>= 1.0.0), libjack-dev, ladspa-sdk, liblrdf0-dev, liblircclient-dev, dssi-dev (>= 0.4 ), liblo-dev, libxft-dev, dpatch, libfftw3-dev +Build-Depends: debhelper (>> 5.0.0), cdbs, cmake, tdelibs4-trinity-dev, libasound2-dev (>= 1.0.0), libjack-dev, ladspa-sdk, liblrdf0-dev, liblircclient-dev, dssi-dev (>= 0.4 ), liblo-dev, libxft-dev, dpatch, libfftw3-dev Standards-Version: 3.8.4 Homepage: http://www.rosegardenmusic.com/ Package: rosegarden-trinity Architecture: any Depends: ${shlibs:Depends}, khelpcenter-trinity, rosegarden-data-trinity (= ${source:Version}), libxml-twig-perl, sndfile-programs, xterm, tdebase-trinity-bin, konqueror-trinity | www-browser, flac -Replaces: rosegarden-kde3 (<< 4:3.5.13) -Breaks: rosegarden-kde3 (<< 4:3.5.13) +Replaces: rosegarden-trinity (<< 4:14.0.0) +Breaks: rosegarden-trinity (<< 4:14.0.0) Recommends: jackd, lilypond, swh-plugins | ladspa-plugin Suggests: qjackctl Description: music editor and MIDI/audio sequencer [Trinity] @@ -24,8 +24,8 @@ Description: music editor and MIDI/audio sequencer [Trinity] Package: rosegarden-data-trinity Architecture: all Recommends: rosegarden-trinity -Replaces: rosegarden-data-kde3 (<< 4:3.5.13) -Breaks: rosegarden-data-kde3 (<< 4:3.5.13) +Replaces: rosegarden-data-trinity (<< 4:14.0.0) +Breaks: rosegarden-data-trinity (<< 4:14.0.0) Priority: optional Description: music editor and MIDI/audio sequencer data files [Trinity] Rosegarden is a KDE application which provides a mixed Audio/MIDI diff --git a/ubuntu/maverick/applications/rosegarden/debian/control.in b/ubuntu/maverick/applications/rosegarden/debian/control.in new file mode 100644 index 000000000..157cd071e --- /dev/null +++ b/ubuntu/maverick/applications/rosegarden/debian/control.in @@ -0,0 +1,37 @@ +Source: rosegarden-trinity +Section: sound +Priority: optional +Maintainer: Timothy Pearson <[email protected]> +XSBC-Original-Maintainer: @@@MAINTAINER@@@ +Uploaders: @@@UPLOADERS@@@ +Build-Depends: debhelper (>> 5.0.0), cdbs, cmake, tdelibs4-trinity-dev, libasound2-dev (>= 1.0.0), libjack-dev, ladspa-sdk, liblrdf0-dev, liblircclient-dev, dssi-dev (>= 0.4 ), liblo-dev, libxft-dev, dpatch, libfftw3-dev +Standards-Version: 3.8.4 +Homepage: http://www.rosegardenmusic.com/ + +Package: rosegarden-trinity +Architecture: any +Depends: ${shlibs:Depends}, khelpcenter-trinity, rosegarden-data-trinity (= ${source:Version}), libxml-twig-perl, sndfile-programs, xterm, tdebase-trinity-bin, konqueror-trinity | www-browser, flac +Replaces: rosegarden-kde3 (<< 4:3.5.13) +Breaks: rosegarden-kde3 (<< 4:3.5.13) +Recommends: jackd, lilypond, swh-plugins | ladspa-plugin +Suggests: qjackctl +Description: music editor and MIDI/audio sequencer [Trinity] + Rosegarden is a KDE application which provides a mixed Audio/MIDI + sequencer (for playback and recording), a multi-track editor, music + editing using both piano-roll and score notation, MIDI file IO, + lilypond and Csound files export, etc. + +Package: rosegarden-data-trinity +Architecture: all +Recommends: rosegarden-trinity +Replaces: rosegarden-data-kde3 (<< 4:3.5.13) +Breaks: rosegarden-data-kde3 (<< 4:3.5.13) +Priority: optional +Description: music editor and MIDI/audio sequencer data files [Trinity] + Rosegarden is a KDE application which provides a mixed Audio/MIDI + sequencer (for playback and recording), a multi-track editor, music + editing using both piano-roll and score notation, MIDI file IO, + lilypond and Csound files export, etc. + . + This package provides the data files necessary for running Rosegarden + diff --git a/ubuntu/maverick/applications/rosegarden/debian/rules b/ubuntu/maverick/applications/rosegarden/debian/rules index 34af02e91..4e4718806 100755 --- a/ubuntu/maverick/applications/rosegarden/debian/rules +++ b/ubuntu/maverick/applications/rosegarden/debian/rules @@ -1,75 +1,29 @@ #!/usr/bin/make -f -# Sample debian/rules that uses debhelper. -# GNU copyright 1997 to 1999 by Joey Hess. -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -include /usr/share/dpatch/dpatch.make - -DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde -DEB_CONFIGURE_MANDIR := /opt/trinity/share/man -DEB_CONFIGURE_PREFIX := /opt/trinity -DEB_CONFIGURE_INFODIR := /opt/trinity/share/info - -cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) - -DEB_BUILD_ARCH := $(shell dpkg --print-installation-architecture) -ARCH=$(DEB_BUILD_ARCH) - -ifeq ($(ARCH),alpha) -CXXFLAGS+=-O0 -mieee +# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function +# Also include the main Trinity path +ifeq ("$(LD_LIBRARY_PATH)", "") +LD_LIBRARY_PATH=debian/tmp/opt/trinity/lib else -CXXFLAGS+=-O2 +LD_LIBRARY_PATH += :debian/tmp/opt/trinity/lib endif +export LD_LIBRARY_PATH -# DEBUGGING FLAGS. -# CXXFLAGS+=-g3 -gstabs+ -fexceptions -# DEB_BUILD_OPTIONS+=nostrip -# export CXXFLAGS -# export DEB_BUILD_OPTIONS - -### - -configure: configure-stamp - -configure-stamp: - dh_testdir - env PATH=/opt/trinity/bin:$(PATH) CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde CMAKE_INSTALL_PREFIX=/usr cmake . - touch configure-stamp - -build: build-stamp - -build-stamp: configure-stamp patch-stamp - dh_testdir - env PATH=/opt/trinity/bin:$(PATH) CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde make - touch build-stamp +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk +include debian/cdbs/debian-qt-kde.mk -clean: unpatch - dh_testdir - dh_testroot +DEB_KDE_APIDOX := yes - [ ! -f Makefile ] || make clean - rm -rf RGbuild - rm -rf CMakeCache.txt - rm -rf CMakeFiles - rm -f build-stamp - rm -f configure-stamp - rm -f config.log - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs +CXXFLAGS := -DSMB_CTX_FLAG_USE_KERBEROS -DSMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS -g -Wall $(DEB_OPT_FLAG) - env PATH=/opt/trinity/bin:$(PATH) CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde make install DESTDIR=`pwd`/debian/tmp - find debian/tmp/opt/trinity/share -type f -exec chmod 664 {} \; +DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_INSTALL_PREFIX="/opt/trinity" -DCONFIG_INSTALL_DIR="/etc/trinity" -DSYSCONF_INSTALL_DIR="/etc/trinity" -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/" -DAUTODETECT_QT_DIRS="ON" -DCMAKE_VERBOSE_MAKEFILE="ON" -DBUILD_ALL="ON" -DCMAKE_SKIP_RPATH="OFF" -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. +# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to +# never build in parallel, regardless of DEB_BUILD_OPTIONS. +DEB_BUILD_PARALLEL = true # Build architecture-dependent files here. binary-arch: build install diff --git a/ubuntu/maverick/applications/rosegarden/debian/source/format b/ubuntu/maverick/applications/rosegarden/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/rosegarden/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/rosegarden/debian/source/options b/ubuntu/maverick/applications/rosegarden/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/rosegarden/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/smartcardauth/debian/control b/ubuntu/maverick/applications/smartcardauth/debian/control index aef949062..e264a68e3 100644 --- a/ubuntu/maverick/applications/smartcardauth/debian/control +++ b/ubuntu/maverick/applications/smartcardauth/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: smartcardauth Architecture: any Depends: pcsc-tools, pcscd-nodbus, initramfs-tools, libpcsc-perl, libpcsclite1, libccid, opensc, zenity, gksu -Replaces: smartcardauth (<< 4:3.5.13) -Breaks: smartcardauth (<< 4:3.5.13) +Replaces: smartcardauth (<< 4:14.0.0) +Breaks: smartcardauth (<< 4:14.0.0) Conflicts: openct Description: SmartCard Login and LUKS Decrypt, Setup Utility This utility will allow you to set up your computer to accept a SmartCard as an authentication source for: diff --git a/ubuntu/maverick/applications/smartcardauth/debian/source/format b/ubuntu/maverick/applications/smartcardauth/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/smartcardauth/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/smartcardauth/debian/source/options b/ubuntu/maverick/applications/smartcardauth/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/smartcardauth/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/smb4k/debian/control b/ubuntu/maverick/applications/smb4k/debian/control index c684c3fd1..ba0821187 100644 --- a/ubuntu/maverick/applications/smb4k/debian/control +++ b/ubuntu/maverick/applications/smb4k/debian/control @@ -9,8 +9,8 @@ Homepage: http://smb4k.berlios.de/ Package: smb4k-trinity Architecture: any Depends: ${shlibs:Depends}, samba-common, smbclient, smbfs -Replaces: smb4k-kde3 (<< 4:3.5.13) -Breaks: smb4k-kde3 (<< 4:3.5.13) +Replaces: smb4k-trinity (<< 4:14.0.0) +Breaks: smb4k-trinity (<< 4:14.0.0) Recommends: super | sudo-trinity Description: A Samba (SMB) share advanced browser for Trinity Smb4K is a SMB (Windows) share browser for KDE. It uses the Samba software diff --git a/ubuntu/maverick/applications/smb4k/debian/source/format b/ubuntu/maverick/applications/smb4k/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/smb4k/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/smb4k/debian/source/options b/ubuntu/maverick/applications/smb4k/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/smb4k/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/soundkonverter/debian/control b/ubuntu/maverick/applications/soundkonverter/debian/control index 77c4c1dd7..16ecbcabd 100644 --- a/ubuntu/maverick/applications/soundkonverter/debian/control +++ b/ubuntu/maverick/applications/soundkonverter/debian/control @@ -10,8 +10,8 @@ Homepage: http://www.kde-apps.org/content/show.php?content=29024 Package: soundkonverter-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: soundkonverter-kde3 (<< 4:3.5.13) -Breaks: soundkonverter-kde3 (<< 4:3.5.13) +Replaces: soundkonverter-trinity (<< 4:14.0.0) +Breaks: soundkonverter-trinity (<< 4:14.0.0) Recommends: cdda2wav, cdparanoia, faad, ffmpeg, flac, tdemultimedia-kio-plugins-trinity, mp3gain, mplayer, mppenc, speex, timidity, vorbis-tools, vorbisgain, wavpack Suggests: soundkonverter-amarok-trinity Description: audio converter frontend for Trinity @@ -33,9 +33,9 @@ Description: audio converter frontend for Trinity Package: soundkonverter-amarok-trinity Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, soundkonverter-trinity, amarok-trinity, ruby, libqt0-ruby1.8 -Replaces: soundkonverter-amarok-kde3 (<< 4:3.5.13) -Breaks: soundkonverter-amarok-kde3 (<< 4:3.5.13) +Depends: ${shlibs:Depends}, ${misc:Depends}, soundkonverter-trinity, amarok-trinity, ruby, libqt0-ruby1.8-trinity +Replaces: soundkonverter-amarok-trinity (<< 4:14.0.0) +Breaks: soundkonverter-amarok-trinity (<< 4:14.0.0) Description: audio converter frontend for Trinity (Amarok script) Amarok script for soundKonverter. It allows you to easily transcode files when transferring them to your media device. diff --git a/ubuntu/maverick/applications/soundkonverter/debian/source/format b/ubuntu/maverick/applications/soundkonverter/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/soundkonverter/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/soundkonverter/debian/source/options b/ubuntu/maverick/applications/soundkonverter/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/soundkonverter/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/tde-guidance/debian/changelog b/ubuntu/maverick/applications/tde-guidance/debian/changelog index f73cc1d80..fb3aec362 100644 --- a/ubuntu/maverick/applications/tde-guidance/debian/changelog +++ b/ubuntu/maverick/applications/tde-guidance/debian/changelog @@ -229,7 +229,7 @@ tde-guidance (0.8.0svn20080103-0ubuntu4) hardy; urgency=low tde-guidance (0.8.0svn20080103-0ubuntu3) hardy; urgency=low * Add Add kubuntu_09_mountconfig_no_extensions.patch to remove uneeded call - to pykdeextensions in mountconfig so that pyqt3 no longer needs to be + to pytdeextensions in mountconfig so that pyqt3 no longer needs to be patched to provide -dev files in the regular package (LP: #197867) * Add kubuntu_10_displayconfig_tryagain.patch so that if displayconfig thinks a proprietary driver is installed, but it can't find it, it @@ -618,7 +618,7 @@ tde-guidance (0.7.1~svn20061215-0ubuntu1) feisty; urgency=low tde-guidance (0.7.1~svn20061124-0ubuntu2) feisty; urgency=low - * Rebuilt against new pykde. + * Rebuilt against new pytde. -- Anthony Mercatante <[email protected]> Wed, 06 Dec 2006 23:40:32 +0100 @@ -913,7 +913,7 @@ tde-guidance (0.6.4-0ubuntu1) dapper; urgency=low * The screen images in the dualhead widget make better use of available widget space. * Displayconfig: The 40guidance-displayconfig_restore script which is used by - the Xsession script during login via KDM/xdm, has now been fixed to not stop + the Xsession script during login via TDM/xdm, has now been fixed to not stop the login in case of failure. * BUG: Displayconfig was getting confused by unknown graphics cards and crashing. (Malone bug #32915) @@ -1029,7 +1029,7 @@ tde-guidance (0.6.2-0ubuntu1) dapper; urgency=low tde-guidance (0.6.1-0ubuntu0) dapper; urgency=low * New release, sets a fixed DPI for Xft - * Add run time dependency on pykdeextensions + * Add run time dependency on pytdeextensions * Add kubuntu_03_userconfig_shebang.diff fix extra space * Change init script to run at S35, Malone No. 32268 diff --git a/ubuntu/maverick/applications/tde-guidance/debian/control b/ubuntu/maverick/applications/tde-guidance/debian/control index 8446115c3..1887cb23e 100644 --- a/ubuntu/maverick/applications/tde-guidance/debian/control +++ b/ubuntu/maverick/applications/tde-guidance/debian/control @@ -6,15 +6,15 @@ XSBC-Original-Maintainer: Debian KDE Extras Team <[email protected] Uploaders: Fathi Boudra <[email protected]>, Mark Purcell <[email protected]> Build-Depends: cdbs, debhelper (>= 5), chrpath, tdelibs4-trinity-dev, libpythonize0-trinity-dev, libtool, libxml2-utils, libxss-dev, libxxf86vm-dev, - pykdeextensions-trinity, pyqt-tools, python-qt3 (>= 3.17.2-1ubuntu2), python-trinity-trinity, python-trinity-trinity-dev, python-sip4-dev, - python-support (>= 0.6), python2.6 (>= 2.5), python2.6-dev (>= 2.5), x11proto-scrnsaver-dev, python-qt-dev, hwdata + pytdeextensions-trinity, pytqt-tools, python-tqt, python-trinity-trinity, python-trinity-trinity-dev, python-sip4-dev, + python-support (>= 0.6), python2.6 (>= 2.5), python2.6-dev (>= 2.5), x11proto-scrnsaver-dev, python-tqt-dev, hwdata Standards-Version: 3.8.4 Package: tde-guidance-trinity Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, pykdeextensions-trinity, python-trinity-trinity, sysv-rc, guidance-backends-trinity, hwdata, python (>= 2.5), python-dev (>= 2.5) -Replaces: tde-guidance-kde3 (<< 4:3.5.13) -Breaks: tde-guidance-kde3 (<< 4:3.5.13) +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, pytdeextensions-trinity, python-trinity-trinity, sysv-rc, guidance-backends-trinity, hwdata, python (>= 2.5), python-dev (>= 2.5) +Replaces: kde-guidance-trinity (<< 4:14.0.0) +Breaks: kde-guidance-trinity (<< 4:14.0.0) Conflicts: guidance-power-manager, tde-guidance-powermanager Provides: ${python:Provides} Description: collection of KDE system administration tools for GNU/Linux [Trinity] @@ -34,8 +34,8 @@ Description: collection of KDE system administration tools for GNU/Linux [Trinit Package: guidance-backends-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, hwdata, python (>= 2.5), python-dev (>= 2.5) -Replaces: guidance-backends-kde3 (<< 4:3.5.13) -Breaks: guidance-backends-kde3 (<< 4:3.5.13) +Replaces: guidance-backends-trinity (<< 4:14.0.0) +Breaks: guidance-backends-trinity (<< 4:14.0.0) Conflicts: guidance-power-manager, tde-guidance-powermanager Provides: ${python:Provides} Description: collection of system administration tools for GNU/Linux [Trinity] @@ -47,8 +47,8 @@ Description: collection of system administration tools for GNU/Linux [Trinity] Package: tde-guidance-powermanager-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, tde-guidance-trinity, python-trinity-trinity, python-dbus, hal, python-gobject, python (>= 2.5), python-dev (>= 2.5) -Replaces: tde-guidance-powermanager-kde3 (<< 4:3.5.13) -Breaks: tde-guidance-powermanager-kde3 (<< 4:3.5.13) +Replaces: kde-guidance-powermanager-trinity (<< 4:14.0.0) +Breaks: kde-guidance-powermanager-trinity (<< 4:14.0.0) Conflicts: guidance-power-manager, tde-guidance-powermanager Provides: ${python:Provides} Description: HAL based power manager applet [Trinity] diff --git a/ubuntu/maverick/applications/tde-guidance/debian/rules b/ubuntu/maverick/applications/tde-guidance/debian/rules index 2bb582451..f3f46453f 100755 --- a/ubuntu/maverick/applications/tde-guidance/debian/rules +++ b/ubuntu/maverick/applications/tde-guidance/debian/rules @@ -175,7 +175,7 @@ clean:: fi common-install-prehook-impl:: - # generate form implementation using pykde user interface compiler + # generate form implementation using pytde user interface compiler (cd powermanager; /opt/trinity/bin/kdepyuic --usekdei18n guidance_power_manager_ui.ui) (cd powermanager; /opt/trinity/bin/kdepyuic --usekdei18n tooltip.ui) (cd powermanager; /opt/trinity/bin/kdepyuic --usekdei18n notify.ui) diff --git a/ubuntu/maverick/applications/tde-guidance/debian/source/format b/ubuntu/maverick/applications/tde-guidance/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/tde-guidance/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/tde-guidance/debian/source/options b/ubuntu/maverick/applications/tde-guidance/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/tde-guidance/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/tde-style-lipstik/debian/control b/ubuntu/maverick/applications/tde-style-lipstik/debian/control index 157fb6c46..5b79a0aed 100644 --- a/ubuntu/maverick/applications/tde-style-lipstik/debian/control +++ b/ubuntu/maverick/applications/tde-style-lipstik/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: tde-style-lipstik-trinity Section: kde Architecture: any -Replaces: tde-style-lipstik-kde3 (<< 4:3.5.13) -Breaks: tde-style-lipstik-kde3 (<< 4:3.5.13) +Replaces: kde-style-lipstik-trinity (<< 4:14.0.0) +Breaks: kde-style-lipstik-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, ${misc:Depends} Description: Lipstik style for TDE Based on the plastik style, Lipstik is a purified style with many options to diff --git a/ubuntu/maverick/applications/tde-style-lipstik/debian/source/format b/ubuntu/maverick/applications/tde-style-lipstik/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-lipstik/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/tde-style-lipstik/debian/source/options b/ubuntu/maverick/applications/tde-style-lipstik/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-lipstik/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/buildvars.mk b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/buildvars.mk new file mode 100644 index 000000000..23d4709dc --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/buildvars.mk @@ -0,0 +1,86 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2002,2003 Colin Walters <[email protected]> +# Description: Defines some useful variables, but no rules +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_buildvars +_cdbs_rules_buildvars = 1 + +CDBS_VERSION = something + +# Common useful variables +DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':')) +DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') +DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) +DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') +DEB_ISNATIVE := $(shell dpkg-parsechangelog | egrep '^Version:' | perl -ne 'print if not /^Version:\s*.*-/;') + +# Split into arch/indep packages +ifneq ($(DEB_INDEP_PACKAGES),cdbs) +DEB_INDEP_PACKAGES := $(filter-out $(DONT_BUILD), $(strip $(shell $(_cdbs_scripts_path)/list-packages indep))) +DEB_ARCH_PACKAGES := $(filter-out $(DONT_BUILD), $(filter-out $(DEB_INDEP_PACKAGES),$(strip $(shell $(_cdbs_scripts_path)/list-packages same)))) +endif +# Split into normal and udeb packages +ifeq ($(DEB_UDEB_PACKAGES),) +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +DEB_UDEB_PACKAGES = $(filter-out $(DONT_BUILD),$(filter %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +else +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES), $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +endif +# Too much bother for now. If someone complains we'll fix it. +#DEB_ARCH_UDEB_PACKAGES = $(filter %-udeb, $(DEB_ARCH_PACKAGES)) +#DEB_INDEP_UDEB_PACKAGES = $(filter %-udeb, $(DEB_INDEP_PACKAGES)) +# A handy list of every package, udeb or not +DEB_ALL_PACKAGES = $(filter-out $(DONT_BUILD),$(DEB_PACKAGES) $(DEB_UDEB_PACKAGES)) +DEB_INDEP_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_INDEP_PACKAGES))) +DEB_ARCH_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_ARCH_PACKAGES))) + +DEB_DBG_PACKAGES = $(filter-out $(DONT_BUILD), $(filter %-dbg, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) + +# Some support for srcdir != builddir builds. +# These are relative to the root of the package +DEB_SRCDIR ?= . +DEB_BUILDDIR ?= $(strip $(DEB_SRCDIR)) + +# Miscellaneous bits +DEB_ARCH = $(shell dpkg --print-architecture) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) +DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) +DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) + +ifeq ($(words $(DEB_ALL_PACKAGES)),1) + DEB_DESTDIR = $(CURDIR)/debian/$(strip $(DEB_ALL_PACKAGES))/ +else + DEB_DESTDIR = $(CURDIR)/debian/tmp/ +endif + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.23-1.1) + +endif diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..856fa4932 --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,110 @@ +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_debian-qt-kde +_cdbs_class_debian-qt-kde := 1 + +# Note: This _must_ be included before autotools.mk, or it won't work. +common-configure-arch common-configure-indep:: debian/stamp-cvs-make +debian/stamp-cvs-make: + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) +include debian/cdbs/uploaders.mk + +DEB_PATCHDIRS := debian/patches/common debian/patches + +DEB_KDE_ENABLE_FINAL := yes +DEB_INSTALL_DOCS_ALL := + +DEB_DH_MAKESHLIBS_ARGS_ALL := -V +DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib) + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) + else + cdbs_kde_enable_final = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +common-binary-indep:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_INDEP_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +common-binary-arch:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_ARCH_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +clean:: + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -rf debian/shlibs-check + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + done + +clean:: + rm -f debian/stamp-cvs-make + +endif + +#common-build-indep:: debian/stamp-kde-apidox +#debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) +# touch $@ +# +#common-install-indep:: common-install-kde-apidox +#common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) +# +#clean:: +# rm -f debian/stamp-kde-apidox diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/kde.mk b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/kde.mk new file mode 100644 index 000000000..9dbcfbafd --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/kde.mk @@ -0,0 +1,97 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Christopher L Cheney <[email protected]> +# Description: A class for KDE packages; sets KDE environment variables, etc +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_kde +_cdbs_class_kde := 1 + +# for dh_icons +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +# include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) + +export kde_cgidir = \$${libdir}/cgi-bin +export kde_confdir = \$${sysconfdir}/trinity +export kde_htmldir = \$${datadir}/doc/kde/HTML + +ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) +endif + +ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = + cdbs_kde_enable_debug = --enable-debug=yes +else + cdbs_kde_enable_debug = --disable-debug +endif + +ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_debug = --enable-debug=full +endif + +cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/" +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi + +cleanbuilddir:: + -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) + +common-build-arch common-build-indep:: debian/stamp-kde-apidox +debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) + touch $@ + +common-install-prehook-impl:: + mkdir -p po + -XGETTEXT=/usr/bin/kde-xgettext EXTRACTATTR=/opt/trinity/bin/extractattr sh $(DEB_SRCDIR)/admin/cvs.sh extract-messages + -for file in po/*pot; do \ + sed "s/charset=CHARSET/charset=UTF-8/" -i $$file; \ + done + +common-install-arch common-install-indep:: common-install-kde-apidox +common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) + +clean:: + rm -f debian/stamp-kde-apidox + rm -rf po/*.pot + +# This is a convenience target for calling manually. It's not part of +# the build process. +buildprep: clean apply-patches + $(MAKE) -f admin/Makefile.common dist + debian/rules clean + +endif diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/team-members b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/team-members new file mode 100644 index 000000000..05761af6e --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/team-members @@ -0,0 +1,16 @@ +Sune Vuorela <[email protected]> +Ana Beatriz Guerrero Lopez <[email protected]> +Fathi Boudra <[email protected]> +Modestas Vainius <[email protected]> +Josh Metzler <[email protected]> +Isaac Clerencia <[email protected]> +Adeodato Simó <[email protected]> +Adeodato Simo <[email protected]> +Christopher Martin <[email protected]> +Daniel Schepler <[email protected]> +Sarah Hobbs <[email protected]> +Nacho Barrientos Arias <[email protected]> +Ricardo Javier Cardenes Medina <[email protected]> +Ricardo Cardenes <[email protected]> +Armin Berres <[email protected]> +Francesco Pedrini <[email protected]> diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/uploaders.mk b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/uploaders.mk new file mode 100644 index 000000000..31adfe31e --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/uploaders.mk @@ -0,0 +1,29 @@ + +MAINTAINER=Debian Qt/KDE Maintainers <[email protected]> +UPLOADERS=$(shell grep -e +++ -e "^ -- " debian/changelog | grep -v "[email protected]" | head -13 | /bin/sed 's/^\s*//;s/\s*$$//;s/^+++\? Changes by //;s/^+++\? //;s/-- //;s/:$$//;s/ <.*//' | sort -u | while read line ; do grep "$$line" debian/cdbs/team-members ; done | tr "\n" ", " | sed 's/,/, /g;s/, $$//') + + +debian/control.tmp: + @if [ ! -e debian/control.in ] ; then \ + echo "this package is not yet prepared for using automatic update of uploaders"; \ + echo "Please do so."; \ + exit 1; \ + fi + @sed 's/@@@UPLOADERS@@@/$(UPLOADERS)/;s#@@@MAINTAINER@@@#$(MAINTAINER)#' debian/control.in > debian/control.tmp + +check-uploaders: debian/control.tmp + @if ! diff -q debian/control debian/control.tmp ; then \ + echo "WARNING:: Control file differs from manually generated one" ; \ + echo "WARNING:: Please update it manually and check it afterwards" ; \ + echo "WARNING:: Uploaders are updated by debian/rules update-uploaders" ;\ + echo "WARNING:: If this is a binNMU, NMU or security upload, just ignore" ;\ + fi + + +clean:: + rm -f debian/control.tmp + +update-uploaders: debian/control.tmp + @mv -f debian/control.tmp debian/control + +makebuilddir:: check-uploaders diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/versions.pl b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/cdbs/versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; +my ($version3, $version3_next); +my ($version2, $version2_next); + +($version3 = $version) =~ s/-[^-]+$//; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "KDE-Version3=$version3\n"; +print "KDE-Version2=$version2\n"; +print "KDE-Next-Version3=$version3_next\n"; +print "KDE-Next-Version2=$version2_next\n"; diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/control b/ubuntu/maverick/applications/tde-style-qtcurve/debian/control index 6c7103211..ca85f86b5 100644 --- a/ubuntu/maverick/applications/tde-style-qtcurve/debian/control +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/control @@ -3,14 +3,14 @@ Section: kde Priority: optional Maintainer: Timothy Pearson <[email protected]> XSBC-Original-Maintainer: Bastian Venthur <[email protected]> -Build-Depends: debhelper (>= 5), tdelibs4-trinity-dev, cmake +Build-Depends: debhelper (>= 5), tdelibs4-trinity-dev, cmake, cdbs Standards-Version: 3.8.4 Package: tde-style-qtcurve-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: tde-style-qtcurve-kde3 (<< 4:3.5.13) -Breaks: tde-style-qtcurve-kde3 (<< 4:3.5.13) +Replaces: kde-style-qtcurve-trinity (<< 4:14.0.0) +Breaks: kde-style-qtcurve-trinity (<< 4:14.0.0) Recommends: gtk2-engines-qtcurve Provides: tde-style-qtcurve Description: This is a set of widget styles for Trinity based apps @@ -23,8 +23,8 @@ Description: This is a set of widget styles for Trinity based apps Package: qtcurve-trinity Architecture: any Depends: tde-style-qtcurve-trinity, gtk2-engines-qtcurve -Replaces: qtcurve-kde3 (<< 4:3.5.13) -Breaks: qtcurve-kde3 (<< 4:3.5.13) +Replaces: qtcurve-trinity (<< 4:14.0.0) +Breaks: qtcurve-trinity (<< 4:14.0.0) Description: This is a set of widget styles for Trinity and Gtk2 based apps This is an empty dummy package which will drag the packages tde-style-qtcurve and gtk2-engines-qtcurve in your system. diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/control.in b/ubuntu/maverick/applications/tde-style-qtcurve/debian/control.in new file mode 100644 index 000000000..3e8b07e49 --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/control.in @@ -0,0 +1,32 @@ +Source: tde-style-qtcurve-trinity +Section: kde +Priority: optional +Maintainer: Timothy Pearson <[email protected]> +XSBC-Original-Maintainer: @@@MAINTAINER@@@ +Uploaders: @@@UPLOADERS@@@ +Build-Depends: debhelper (>= 5), tdelibs4-trinity-dev, cmake +Standards-Version: 3.8.4 + +Package: tde-style-qtcurve-trinity +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Replaces: tde-style-qtcurve-kde3 (<< 4:3.5.13) +Breaks: tde-style-qtcurve-kde3 (<< 4:3.5.13) +Recommends: gtk2-engines-qtcurve +Provides: tde-style-qtcurve +Description: This is a set of widget styles for Trinity based apps + This package together with gtk2-engines-qtcurve aim to provide a unified look + and feel on the desktop when using KDE and Gnome applications. + . + This package is most useful when installed together with + gtk2-engines-qtcurve. + +Package: qtcurve-trinity +Architecture: any +Depends: tde-style-qtcurve-trinity, gtk2-engines-qtcurve +Replaces: qtcurve-kde3 (<< 4:3.5.13) +Breaks: qtcurve-kde3 (<< 4:3.5.13) +Description: This is a set of widget styles for Trinity and Gtk2 based apps + This is an empty dummy package which will drag the packages + tde-style-qtcurve and gtk2-engines-qtcurve in your system. + diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/rules b/ubuntu/maverick/applications/tde-style-qtcurve/debian/rules index 3d090390b..8041bcf1e 100755 --- a/ubuntu/maverick/applications/tde-style-qtcurve/debian/rules +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/rules @@ -1,120 +1,26 @@ #!/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/trinity/include/kde -DEB_CONFIGURE_MANDIR := /opt/trinity/share/man -DEB_CONFIGURE_PREFIX := /opt/trinity -DEB_CONFIGURE_INFODIR := /opt/trinity/share/info - -cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) - -# 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) - - -CFLAGS = -Wall -g - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 +# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function +# Also include the main Trinity path +ifeq ("$(LD_LIBRARY_PATH)", "") +LD_LIBRARY_PATH=debian/tmp/opt/trinity/lib else - CFLAGS += -O2 -endif - -config.status: CMakeLists.txt config.h.cmake - dh_testdir - # 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 +LD_LIBRARY_PATH += :debian/tmp/opt/trinity/lib endif - mkdir build - cd build; env PATH=/opt/trinity/bin:$(PATH) CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde cmake -DKDE3PREFIX=/opt/trinity .. - touch config.status - -build: build-stamp - -build-stamp: config.status - dh_testdir - - # Add here commands to compile the package. - cd build; env PATH=/opt/trinity/bin:$(PATH) CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde $(MAKE) - #docbook-to-man debian/tde-style-qtcurve.sgml > tde-style-qtcurve.1 - - touch $@ - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - rm -rf build - rm -f config.sub config.guess - rm -f config.status - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/tde-style-qtcurve-trinity. - cd build; env PATH=/opt/trinity/bin:$(PATH) CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde $(MAKE) DESTDIR=$(CURDIR)/debian/tde-style-qtcurve-trinity install - +export LD_LIBRARY_PATH -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk +include debian/cdbs/debian-qt-kde.mk -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs ChangeLog - dh_installdocs - dh_installexamples -# dh_install -# dh_installmenu -# dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_python -# dh_installinit -# dh_installcron -# dh_installinfo - dh_installman - dh_link - dh_strip - dh_compress - dh_fixperms -# dh_perl -# dh_makeshlibs - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb +DEB_KDE_APIDOX := yes -get-orig-source: - debian/scan-version get-orig-source +CXXFLAGS := -DSMB_CTX_FLAG_USE_KERBEROS -DSMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS -g -Wall $(DEB_OPT_FLAG) +DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_INSTALL_PREFIX="/opt/trinity" -DCONFIG_INSTALL_DIR="/etc/trinity" -DSYSCONF_INSTALL_DIR="/etc/trinity" -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/" -DAUTODETECT_QT_DIRS="ON" -DCMAKE_VERBOSE_MAKEFILE="ON" -DBUILD_ALL="ON" -DCMAKE_SKIP_RPATH="OFF" -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install +# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to +# never build in parallel, regardless of DEB_BUILD_OPTIONS. +DEB_BUILD_PARALLEL = true
\ No newline at end of file diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/source/format b/ubuntu/maverick/applications/tde-style-qtcurve/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/tde-style-qtcurve/debian/source/options b/ubuntu/maverick/applications/tde-style-qtcurve/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/tde-style-qtcurve/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/tde-systemsettings/debian/control b/ubuntu/maverick/applications/tde-systemsettings/debian/control index d0ddb0d48..e6f064f55 100644 --- a/ubuntu/maverick/applications/tde-systemsettings/debian/control +++ b/ubuntu/maverick/applications/tde-systemsettings/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: tde-systemsettings-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, kcontrol-trinity -Replaces: tde-systemsettings-kde3 (<< 4:3.5.13) -Breaks: tde-systemsettings-kde3 (<< 4:3.5.13) +Replaces: kde-systemsettings-trinity (<< 4:14.0.0) +Breaks: kde-systemsettings-trinity (<< 4:14.0.0) Description: easy to use control centre for TDE System preferences is a replacement for the TDE Control Centre with an improved user interface. diff --git a/ubuntu/maverick/applications/tde-systemsettings/debian/source/format b/ubuntu/maverick/applications/tde-systemsettings/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/tde-systemsettings/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/tde-systemsettings/debian/source/options b/ubuntu/maverick/applications/tde-systemsettings/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/tde-systemsettings/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/tdesudo/debian/control b/ubuntu/maverick/applications/tdesudo/debian/control index c541b6b90..67646ec9f 100644 --- a/ubuntu/maverick/applications/tdesudo/debian/control +++ b/ubuntu/maverick/applications/tdesudo/debian/control @@ -8,8 +8,8 @@ Standards-Version: 3.8.4 Package: tdesudo-trinity Architecture: any Depends: ${shlibs:Depends}, sudo -Replaces: tdesudo-kde3 (<< 4:3.5.13) -Breaks: tdesudo-kde3 (<< 4:3.5.13) +Replaces: kdesudo-trinity (<< 4:14.0.0) +Breaks: kdesudo-trinity (<< 4:14.0.0) Description: sudo frontend for Trinity KdeSudo is a graphical frontend for the sudo utility. It allows you to run programs as another user by entering your password. diff --git a/ubuntu/maverick/applications/tdesudo/debian/source/format b/ubuntu/maverick/applications/tdesudo/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/tdesudo/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/tdesudo/debian/source/options b/ubuntu/maverick/applications/tdesudo/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/tdesudo/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/tdesvn/debian/cdbs/buildvars.mk b/ubuntu/maverick/applications/tdesvn/debian/cdbs/buildvars.mk new file mode 100644 index 000000000..23d4709dc --- /dev/null +++ b/ubuntu/maverick/applications/tdesvn/debian/cdbs/buildvars.mk @@ -0,0 +1,86 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2002,2003 Colin Walters <[email protected]> +# Description: Defines some useful variables, but no rules +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_buildvars +_cdbs_rules_buildvars = 1 + +CDBS_VERSION = something + +# Common useful variables +DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':')) +DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') +DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) +DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') +DEB_ISNATIVE := $(shell dpkg-parsechangelog | egrep '^Version:' | perl -ne 'print if not /^Version:\s*.*-/;') + +# Split into arch/indep packages +ifneq ($(DEB_INDEP_PACKAGES),cdbs) +DEB_INDEP_PACKAGES := $(filter-out $(DONT_BUILD), $(strip $(shell $(_cdbs_scripts_path)/list-packages indep))) +DEB_ARCH_PACKAGES := $(filter-out $(DONT_BUILD), $(filter-out $(DEB_INDEP_PACKAGES),$(strip $(shell $(_cdbs_scripts_path)/list-packages same)))) +endif +# Split into normal and udeb packages +ifeq ($(DEB_UDEB_PACKAGES),) +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +DEB_UDEB_PACKAGES = $(filter-out $(DONT_BUILD),$(filter %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +else +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES), $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +endif +# Too much bother for now. If someone complains we'll fix it. +#DEB_ARCH_UDEB_PACKAGES = $(filter %-udeb, $(DEB_ARCH_PACKAGES)) +#DEB_INDEP_UDEB_PACKAGES = $(filter %-udeb, $(DEB_INDEP_PACKAGES)) +# A handy list of every package, udeb or not +DEB_ALL_PACKAGES = $(filter-out $(DONT_BUILD),$(DEB_PACKAGES) $(DEB_UDEB_PACKAGES)) +DEB_INDEP_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_INDEP_PACKAGES))) +DEB_ARCH_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_ARCH_PACKAGES))) + +DEB_DBG_PACKAGES = $(filter-out $(DONT_BUILD), $(filter %-dbg, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) + +# Some support for srcdir != builddir builds. +# These are relative to the root of the package +DEB_SRCDIR ?= . +DEB_BUILDDIR ?= $(strip $(DEB_SRCDIR)) + +# Miscellaneous bits +DEB_ARCH = $(shell dpkg --print-architecture) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) +DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) +DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) + +ifeq ($(words $(DEB_ALL_PACKAGES)),1) + DEB_DESTDIR = $(CURDIR)/debian/$(strip $(DEB_ALL_PACKAGES))/ +else + DEB_DESTDIR = $(CURDIR)/debian/tmp/ +endif + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.23-1.1) + +endif diff --git a/ubuntu/maverick/applications/tdesvn/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/tdesvn/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..856fa4932 --- /dev/null +++ b/ubuntu/maverick/applications/tdesvn/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,110 @@ +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_debian-qt-kde +_cdbs_class_debian-qt-kde := 1 + +# Note: This _must_ be included before autotools.mk, or it won't work. +common-configure-arch common-configure-indep:: debian/stamp-cvs-make +debian/stamp-cvs-make: + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) +include debian/cdbs/uploaders.mk + +DEB_PATCHDIRS := debian/patches/common debian/patches + +DEB_KDE_ENABLE_FINAL := yes +DEB_INSTALL_DOCS_ALL := + +DEB_DH_MAKESHLIBS_ARGS_ALL := -V +DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib) + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) + else + cdbs_kde_enable_final = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +common-binary-indep:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_INDEP_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +common-binary-arch:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_ARCH_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +clean:: + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -rf debian/shlibs-check + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + done + +clean:: + rm -f debian/stamp-cvs-make + +endif + +#common-build-indep:: debian/stamp-kde-apidox +#debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) +# touch $@ +# +#common-install-indep:: common-install-kde-apidox +#common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) +# +#clean:: +# rm -f debian/stamp-kde-apidox diff --git a/ubuntu/maverick/applications/tdesvn/debian/cdbs/kde.mk b/ubuntu/maverick/applications/tdesvn/debian/cdbs/kde.mk new file mode 100644 index 000000000..9dbcfbafd --- /dev/null +++ b/ubuntu/maverick/applications/tdesvn/debian/cdbs/kde.mk @@ -0,0 +1,97 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Christopher L Cheney <[email protected]> +# Description: A class for KDE packages; sets KDE environment variables, etc +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_kde +_cdbs_class_kde := 1 + +# for dh_icons +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +# include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) + +export kde_cgidir = \$${libdir}/cgi-bin +export kde_confdir = \$${sysconfdir}/trinity +export kde_htmldir = \$${datadir}/doc/kde/HTML + +ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) +endif + +ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = + cdbs_kde_enable_debug = --enable-debug=yes +else + cdbs_kde_enable_debug = --disable-debug +endif + +ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_debug = --enable-debug=full +endif + +cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/" +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi + +cleanbuilddir:: + -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) + +common-build-arch common-build-indep:: debian/stamp-kde-apidox +debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) + touch $@ + +common-install-prehook-impl:: + mkdir -p po + -XGETTEXT=/usr/bin/kde-xgettext EXTRACTATTR=/opt/trinity/bin/extractattr sh $(DEB_SRCDIR)/admin/cvs.sh extract-messages + -for file in po/*pot; do \ + sed "s/charset=CHARSET/charset=UTF-8/" -i $$file; \ + done + +common-install-arch common-install-indep:: common-install-kde-apidox +common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) + +clean:: + rm -f debian/stamp-kde-apidox + rm -rf po/*.pot + +# This is a convenience target for calling manually. It's not part of +# the build process. +buildprep: clean apply-patches + $(MAKE) -f admin/Makefile.common dist + debian/rules clean + +endif diff --git a/ubuntu/maverick/applications/tdesvn/debian/cdbs/team-members b/ubuntu/maverick/applications/tdesvn/debian/cdbs/team-members new file mode 100644 index 000000000..05761af6e --- /dev/null +++ b/ubuntu/maverick/applications/tdesvn/debian/cdbs/team-members @@ -0,0 +1,16 @@ +Sune Vuorela <[email protected]> +Ana Beatriz Guerrero Lopez <[email protected]> +Fathi Boudra <[email protected]> +Modestas Vainius <[email protected]> +Josh Metzler <[email protected]> +Isaac Clerencia <[email protected]> +Adeodato Simó <[email protected]> +Adeodato Simo <[email protected]> +Christopher Martin <[email protected]> +Daniel Schepler <[email protected]> +Sarah Hobbs <[email protected]> +Nacho Barrientos Arias <[email protected]> +Ricardo Javier Cardenes Medina <[email protected]> +Ricardo Cardenes <[email protected]> +Armin Berres <[email protected]> +Francesco Pedrini <[email protected]> diff --git a/ubuntu/maverick/applications/tdesvn/debian/cdbs/uploaders.mk b/ubuntu/maverick/applications/tdesvn/debian/cdbs/uploaders.mk new file mode 100644 index 000000000..31adfe31e --- /dev/null +++ b/ubuntu/maverick/applications/tdesvn/debian/cdbs/uploaders.mk @@ -0,0 +1,29 @@ + +MAINTAINER=Debian Qt/KDE Maintainers <[email protected]> +UPLOADERS=$(shell grep -e +++ -e "^ -- " debian/changelog | grep -v "[email protected]" | head -13 | /bin/sed 's/^\s*//;s/\s*$$//;s/^+++\? Changes by //;s/^+++\? //;s/-- //;s/:$$//;s/ <.*//' | sort -u | while read line ; do grep "$$line" debian/cdbs/team-members ; done | tr "\n" ", " | sed 's/,/, /g;s/, $$//') + + +debian/control.tmp: + @if [ ! -e debian/control.in ] ; then \ + echo "this package is not yet prepared for using automatic update of uploaders"; \ + echo "Please do so."; \ + exit 1; \ + fi + @sed 's/@@@UPLOADERS@@@/$(UPLOADERS)/;s#@@@MAINTAINER@@@#$(MAINTAINER)#' debian/control.in > debian/control.tmp + +check-uploaders: debian/control.tmp + @if ! diff -q debian/control debian/control.tmp ; then \ + echo "WARNING:: Control file differs from manually generated one" ; \ + echo "WARNING:: Please update it manually and check it afterwards" ; \ + echo "WARNING:: Uploaders are updated by debian/rules update-uploaders" ;\ + echo "WARNING:: If this is a binNMU, NMU or security upload, just ignore" ;\ + fi + + +clean:: + rm -f debian/control.tmp + +update-uploaders: debian/control.tmp + @mv -f debian/control.tmp debian/control + +makebuilddir:: check-uploaders diff --git a/ubuntu/maverick/applications/tdesvn/debian/cdbs/versions.pl b/ubuntu/maverick/applications/tdesvn/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/ubuntu/maverick/applications/tdesvn/debian/cdbs/versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; +my ($version3, $version3_next); +my ($version2, $version2_next); + +($version3 = $version) =~ s/-[^-]+$//; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "KDE-Version3=$version3\n"; +print "KDE-Version2=$version2\n"; +print "KDE-Next-Version3=$version3_next\n"; +print "KDE-Next-Version2=$version2_next\n"; diff --git a/ubuntu/maverick/applications/tdesvn/debian/control b/ubuntu/maverick/applications/tdesvn/debian/control index e8d828bb8..0c1f99451 100644 --- a/ubuntu/maverick/applications/tdesvn/debian/control +++ b/ubuntu/maverick/applications/tdesvn/debian/control @@ -5,13 +5,12 @@ Maintainer: Timothy Pearson <[email protected]> Uploaders: Michael Biebl <[email protected]> Build-Depends: cdbs (>= 0.4.50), debhelper (>= 5.0.0), cmake (>= 2.4), tdelibs4-trinity-dev (>= 4:3.4.3-2), libsvn-dev (>= 1.2.0), libssl-dev (>= 0.9.8a), libsqlite3-dev, gettext, quilt, libaprutil1-dev Standards-Version: 3.8.4 -Homepage: http://tdesvn.alwins-world.de/ Package: libsvnqt4-trinity Section: libs Architecture: any -Replaces: libsvnqt4-kde3 (<< 4:3.5.13) -Breaks: libsvnqt4-kde3 (<< 4:3.5.13) +Replaces: libsvnqt4-trinity (<< 4:14.0.0) +Breaks: libsvnqt4-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, ${misc:Depends} Description: Qt wrapper library for subversion [Trinity] This package provides svnqt, a Qt wrapper library around the @@ -23,8 +22,8 @@ Description: Qt wrapper library for subversion [Trinity] Package: libsvnqt-trinity-dev Section: libdevel Architecture: any -Replaces: libsvnqt-kde3-dev (<< 4:3.5.13) -Breaks: libsvnqt-kde3-dev (<< 4:3.5.13) +Replaces: libsvnqt-trinity-dev (<< 4:14.0.0) +Breaks: libsvnqt-trinity-dev (<< 4:14.0.0) Depends: libsvnqt4-trinity (= ${binary:Version}), libqt3-mt-dev, libsvn-dev Description: Qt wrapper library for subversion (development files) [Trinity] This package contains the header files and symbolic links that developers @@ -33,8 +32,8 @@ Description: Qt wrapper library for subversion (development files) [Trinity] Package: tdesvn-trinity Section: devel Architecture: any -Replaces: tdesvn-kde3 (<< 4:3.5.13) -Breaks: tdesvn-kde3 (<< 4:3.5.13) +Replaces: kdesvn-trinity (<< 4:14.0.0) +Breaks: kdesvn-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, ${misc:Depends}, tdesvn-kio-plugins-trinity (= ${binary:Version}) Recommends: kompare-trinity, graphviz Suggests: khelpcenter-trinity, kdiff3-trinity @@ -49,8 +48,8 @@ Description: subversion client with tight KDE integration [Trinity] Package: tdesvn-kio-plugins-trinity Section: devel Architecture: any -Replaces: tdesvn-kio-plugins-kde3 (<< 4:3.5.13) -Breaks: tdesvn-kio-plugins-kde3 (<< 4:3.5.13) +Replaces: kdesvn-kio-plugins-trinity (<< 4:14.0.0) +Breaks: kdesvn-kio-plugins-trinity (<< 4:14.0.0) Depends: ${shlibs:Depends}, ${misc:Depends} Conflicts: tdesdk-kio-plugins-trinity Description: subversion I/O slaves for Trinity diff --git a/ubuntu/maverick/applications/tdesvn/debian/control.in b/ubuntu/maverick/applications/tdesvn/debian/control.in new file mode 100644 index 000000000..dc185ccef --- /dev/null +++ b/ubuntu/maverick/applications/tdesvn/debian/control.in @@ -0,0 +1,61 @@ +Source: tdesvn-trinity +Section: devel +Priority: optional +Maintainer: Timothy Pearson <[email protected]> +XSBC-Original-Maintainer: @@@MAINTAINER@@@ +Uploaders: @@@UPLOADERS@@@ +Build-Depends: cdbs (>= 0.4.50), debhelper (>= 5.0.0), cmake (>= 2.4), tdelibs4-trinity-dev (>= 4:3.4.3-2), libsvn-dev (>= 1.2.0), libssl-dev (>= 0.9.8a), libsqlite3-dev, gettext, quilt, libaprutil1-dev +Standards-Version: 3.8.4 + +Package: libsvnqt4-trinity +Section: libs +Architecture: any +Replaces: libsvnqt4-kde3 (<< 4:3.5.13) +Breaks: libsvnqt4-kde3 (<< 4:3.5.13) +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Qt wrapper library for subversion [Trinity] + This package provides svnqt, a Qt wrapper library around the + subversion library. + . + It is based on the RapidSvn SvnCpp library, a subversion client API + written in C++. + +Package: libsvnqt-trinity-dev +Section: libdevel +Architecture: any +Replaces: libsvnqt-kde3-dev (<< 4:3.5.13) +Breaks: libsvnqt-kde3-dev (<< 4:3.5.13) +Depends: libsvnqt4-trinity (= ${binary:Version}), libqt3-mt-dev, libsvn-dev +Description: Qt wrapper library for subversion (development files) [Trinity] + This package contains the header files and symbolic links that developers + using svnqt will need. + +Package: tdesvn-trinity +Section: devel +Architecture: any +Replaces: tdesvn-kde3 (<< 4:3.5.13) +Breaks: tdesvn-kde3 (<< 4:3.5.13) +Depends: ${shlibs:Depends}, ${misc:Depends}, tdesvn-kio-plugins-trinity (= ${binary:Version}) +Recommends: kompare-trinity, graphviz +Suggests: khelpcenter-trinity, kdiff3-trinity +Description: subversion client with tight KDE integration [Trinity] + KDESvn is a graphical client for the subversion revision control + system (svn). + . + Besides offering common and advanced svn operations, it features + a tight integration into KDE and can be embedded into other KDE + applications like konqueror via the KDE component technology KParts. + +Package: tdesvn-kio-plugins-trinity +Section: devel +Architecture: any +Replaces: tdesvn-kio-plugins-kde3 (<< 4:3.5.13) +Breaks: tdesvn-kio-plugins-kde3 (<< 4:3.5.13) +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: tdesdk-kio-plugins-trinity +Description: subversion I/O slaves for Trinity + This packages includes KIO slaves for svn, svn+file, svn+http, + svn+https, svn+ssh. This allows you to access subversion repositories + inside any KIO enabled KDE application. + . + This package is part of tdesvn-trinity. diff --git a/ubuntu/maverick/applications/tdesvn/debian/libsvnqt-trinity-dev.install b/ubuntu/maverick/applications/tdesvn/debian/libsvnqt-trinity-dev.install index 798378e12..fb3c81018 100644 --- a/ubuntu/maverick/applications/tdesvn/debian/libsvnqt-trinity-dev.install +++ b/ubuntu/maverick/applications/tdesvn/debian/libsvnqt-trinity-dev.install @@ -1,2 +1,2 @@ debian/tmp/opt/trinity/lib*/*.so -debian/tmp/opt/trinity/include/kde/svnqt/ +debian/tmp/opt/trinity/include/svnqt/ diff --git a/ubuntu/maverick/applications/tdesvn/debian/rules b/ubuntu/maverick/applications/tdesvn/debian/rules index 6e339cd2e..8041bcf1e 100755 --- a/ubuntu/maverick/applications/tdesvn/debian/rules +++ b/ubuntu/maverick/applications/tdesvn/debian/rules @@ -1,53 +1,26 @@ #!/usr/bin/make -f -PATH := /opt/trinity/bin:$(PATH) - +# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function +# Also include the main Trinity path +ifeq ("$(LD_LIBRARY_PATH)", "") +LD_LIBRARY_PATH=debian/tmp/opt/trinity/lib +else +LD_LIBRARY_PATH += :debian/tmp/opt/trinity/lib +endif +export LD_LIBRARY_PATH + include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/cmake.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk include /usr/share/cdbs/1/rules/utils.mk -include /usr/share/cdbs/1/rules/patchsys-quilt.mk - -DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde -DEB_CONFIGURE_MANDIR := /opt/trinity/share/man -DEB_CONFIGURE_PREFIX := /opt/trinity -DEB_CONFIGURE_INFODIR := /opt/trinity/share/info - -cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) - -DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/kde" -DCMAKE_CXX_FLAGS="-I/opt/trinity/include/kde" -DCMAKE_LDFLAGS="-L/opt/trinity/lib" +include debian/cdbs/debian-qt-kde.mk -DEB_COMPRESS_EXCLUDE := .dcl .docbook -license .tag .sty .el +DEB_KDE_APIDOX := yes -DEB_DH_MAKESHLIBS_ARGS_libsvnqt4 := -V +CXXFLAGS := -DSMB_CTX_FLAG_USE_KERBEROS -DSMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS -g -Wall $(DEB_OPT_FLAG) -# Tell dh_shlibdeps where to find our own libs. -DEB_SHLIBDEPS_INCLUDE := debian/tmp/opt/trinity/lib +DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_INSTALL_PREFIX="/opt/trinity" -DCONFIG_INSTALL_DIR="/etc/trinity" -DSYSCONF_INSTALL_DIR="/etc/trinity" -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/" -DAUTODETECT_QT_DIRS="ON" -DCMAKE_VERBOSE_MAKEFILE="ON" -DBUILD_ALL="ON" -DCMAKE_SKIP_RPATH="OFF" -common-install-impl:: - mkdir -p debian/tmp/opt/trinity - mkdir -p debian/tmp/opt/trinity/include/kde - mkdir -p debian/tmp/usr/lib - mkdir -p debian/tmp/opt/trinity/lib - mkdir -p debian/tmp/usr/lib/trinity - mkdir -p debian/tmp/usr/lib64/trinity - touch debian/tmp/usr/lib/trinity/removeme - touch debian/tmp/usr/lib64/trinity/removeme - mv debian/tmp/usr/lib/trinity/* debian/tmp/usr/lib/ - mv debian/tmp/usr/lib64/trinity/* debian/tmp/usr/lib64/ - rm -rf debian/tmp/usr/lib/trinity - rm -rf debian/tmp/usr/lib64/trinity - cp -Rp debian/tmp/usr/bin debian/tmp/opt/trinity/ - cp -Rp debian/tmp/usr/lib/* debian/tmp/opt/trinity/lib/ - cp -Rp debian/tmp/usr/lib64/* debian/tmp/opt/trinity/lib/ - cp -Rp debian/tmp/usr/share debian/tmp/opt/trinity/ - cp -Rp debian/tmp/usr/include/* debian/tmp/opt/trinity/include/kde/ - rm -rf debian/tmp/usr/bin - rm -rf debian/tmp/usr/lib/trinity - rm -rf debian/tmp/usr/lib64/trinity - rm -rf debian/tmp/usr/share - rm -rf debian/tmp/usr/include - mkdir -p debian/tmp/opt/trinity/lib/trinity - touch debian/tmp/opt/trinity/lib/trinity/removeme - cp -Rp debian/tmp/opt/trinity/lib/trinity/* debian/tmp/opt/trinity/lib/ - rm -rf debian/tmp/opt/trinity/lib/trinity - rm -rf debian/tmp/opt/trinity/lib/removeme +# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to +# never build in parallel, regardless of DEB_BUILD_OPTIONS. +DEB_BUILD_PARALLEL = true
\ No newline at end of file diff --git a/ubuntu/maverick/applications/tdesvn/debian/source/format b/ubuntu/maverick/applications/tdesvn/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/tdesvn/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/tdesvn/debian/source/options b/ubuntu/maverick/applications/tdesvn/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/tdesvn/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/tdesvn/debian/tdesvn-kio-plugins-trinity.install b/ubuntu/maverick/applications/tdesvn/debian/tdesvn-kio-plugins-trinity.install index 32155110b..edba29129 100644 --- a/ubuntu/maverick/applications/tdesvn/debian/tdesvn-kio-plugins-trinity.install +++ b/ubuntu/maverick/applications/tdesvn/debian/tdesvn-kio-plugins-trinity.install @@ -1,4 +1,4 @@ debian/tmp/opt/trinity/share/services/*.protocol -debian/tmp/opt/trinity/lib/kio* -debian/tmp/opt/trinity/lib/kded_tdesvnd.* +debian/tmp/opt/trinity/lib/trinity/kio* +debian/tmp/opt/trinity/lib/trinity/kded_tdesvnd.* debian/tmp/opt/trinity/share/services/kded/ diff --git a/ubuntu/maverick/applications/tdesvn/debian/tdesvn-trinity.install b/ubuntu/maverick/applications/tdesvn/debian/tdesvn-trinity.install index f3c840c12..348be90e8 100644 --- a/ubuntu/maverick/applications/tdesvn/debian/tdesvn-trinity.install +++ b/ubuntu/maverick/applications/tdesvn/debian/tdesvn-trinity.install @@ -1,6 +1,7 @@ debian/icons/tdesvn.xpm /opt/trinity/share/pixmaps/ debian/tmp/opt/trinity/bin/ -debian/tmp/opt/trinity/lib/libtdesvnpart.* +debian/tmp/opt/trinity/lib/*.so* +debian/tmp/opt/trinity/lib/trinity/tdesvnpart* debian/tmp/opt/trinity/share/apps/tdesvn/ debian/tmp/opt/trinity/share/apps/tdesvnpart/ debian/tmp/opt/trinity/share/apps/konqueror/servicemenus/ @@ -9,5 +10,5 @@ debian/tmp/opt/trinity/share/icons/ debian/tmp/opt/trinity/share/locale/*/LC_MESSAGES/*.mo debian/tmp/opt/trinity/share/config.kcfg/ debian/tmp/opt/trinity/share/applications/kde/*.desktop -debian/tmp/opt/trinity/share/doc/HTML/ /opt/trinity/share/doc/kde/ +debian/tmp/opt/trinity/share/doc/kde/ diff --git a/ubuntu/maverick/applications/tdmtheme/debian/README.Debian b/ubuntu/maverick/applications/tdmtheme/debian/README.Debian new file mode 100644 index 000000000..066828faf --- /dev/null +++ b/ubuntu/maverick/applications/tdmtheme/debian/README.Debian @@ -0,0 +1,7 @@ +tdmtheme for Debian +------------------- + +tdmtheme is a KDE Control Module (KCM). To run it, open KDE Control Center and +go to System Administration to find TDM Theme Manager. + + -- Fathi Boudra <[email protected]>, Mon, 31 Jul 2006 18:33:26 +0200 diff --git a/ubuntu/maverick/applications/tdmtheme/debian/cdbs/buildvars.mk b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/buildvars.mk new file mode 100644 index 000000000..23d4709dc --- /dev/null +++ b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/buildvars.mk @@ -0,0 +1,86 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2002,2003 Colin Walters <[email protected]> +# Description: Defines some useful variables, but no rules +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_buildvars +_cdbs_rules_buildvars = 1 + +CDBS_VERSION = something + +# Common useful variables +DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':')) +DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') +DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) +DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') +DEB_ISNATIVE := $(shell dpkg-parsechangelog | egrep '^Version:' | perl -ne 'print if not /^Version:\s*.*-/;') + +# Split into arch/indep packages +ifneq ($(DEB_INDEP_PACKAGES),cdbs) +DEB_INDEP_PACKAGES := $(filter-out $(DONT_BUILD), $(strip $(shell $(_cdbs_scripts_path)/list-packages indep))) +DEB_ARCH_PACKAGES := $(filter-out $(DONT_BUILD), $(filter-out $(DEB_INDEP_PACKAGES),$(strip $(shell $(_cdbs_scripts_path)/list-packages same)))) +endif +# Split into normal and udeb packages +ifeq ($(DEB_UDEB_PACKAGES),) +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +DEB_UDEB_PACKAGES = $(filter-out $(DONT_BUILD),$(filter %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +else +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES), $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +endif +# Too much bother for now. If someone complains we'll fix it. +#DEB_ARCH_UDEB_PACKAGES = $(filter %-udeb, $(DEB_ARCH_PACKAGES)) +#DEB_INDEP_UDEB_PACKAGES = $(filter %-udeb, $(DEB_INDEP_PACKAGES)) +# A handy list of every package, udeb or not +DEB_ALL_PACKAGES = $(filter-out $(DONT_BUILD),$(DEB_PACKAGES) $(DEB_UDEB_PACKAGES)) +DEB_INDEP_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_INDEP_PACKAGES))) +DEB_ARCH_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_ARCH_PACKAGES))) + +DEB_DBG_PACKAGES = $(filter-out $(DONT_BUILD), $(filter %-dbg, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) + +# Some support for srcdir != builddir builds. +# These are relative to the root of the package +DEB_SRCDIR ?= . +DEB_BUILDDIR ?= $(strip $(DEB_SRCDIR)) + +# Miscellaneous bits +DEB_ARCH = $(shell dpkg --print-architecture) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) +DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) +DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) + +ifeq ($(words $(DEB_ALL_PACKAGES)),1) + DEB_DESTDIR = $(CURDIR)/debian/$(strip $(DEB_ALL_PACKAGES))/ +else + DEB_DESTDIR = $(CURDIR)/debian/tmp/ +endif + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.23-1.1) + +endif diff --git a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/debian-qt-kde.mk index 47e83ef4a..47e83ef4a 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/debian-qt-kde.mk +++ b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/debian-qt-kde.mk diff --git a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/kde.mk b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/kde.mk index 5b6508f8c..5b6508f8c 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/cdbs/kde.mk +++ b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/kde.mk diff --git a/ubuntu/maverick/applications/tdmtheme/debian/cdbs/team-members b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/team-members new file mode 100644 index 000000000..05761af6e --- /dev/null +++ b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/team-members @@ -0,0 +1,16 @@ +Sune Vuorela <[email protected]> +Ana Beatriz Guerrero Lopez <[email protected]> +Fathi Boudra <[email protected]> +Modestas Vainius <[email protected]> +Josh Metzler <[email protected]> +Isaac Clerencia <[email protected]> +Adeodato Simó <[email protected]> +Adeodato Simo <[email protected]> +Christopher Martin <[email protected]> +Daniel Schepler <[email protected]> +Sarah Hobbs <[email protected]> +Nacho Barrientos Arias <[email protected]> +Ricardo Javier Cardenes Medina <[email protected]> +Ricardo Cardenes <[email protected]> +Armin Berres <[email protected]> +Francesco Pedrini <[email protected]> diff --git a/ubuntu/maverick/applications/tdmtheme/debian/cdbs/uploaders.mk b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/uploaders.mk new file mode 100644 index 000000000..31adfe31e --- /dev/null +++ b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/uploaders.mk @@ -0,0 +1,29 @@ + +MAINTAINER=Debian Qt/KDE Maintainers <[email protected]> +UPLOADERS=$(shell grep -e +++ -e "^ -- " debian/changelog | grep -v "[email protected]" | head -13 | /bin/sed 's/^\s*//;s/\s*$$//;s/^+++\? Changes by //;s/^+++\? //;s/-- //;s/:$$//;s/ <.*//' | sort -u | while read line ; do grep "$$line" debian/cdbs/team-members ; done | tr "\n" ", " | sed 's/,/, /g;s/, $$//') + + +debian/control.tmp: + @if [ ! -e debian/control.in ] ; then \ + echo "this package is not yet prepared for using automatic update of uploaders"; \ + echo "Please do so."; \ + exit 1; \ + fi + @sed 's/@@@UPLOADERS@@@/$(UPLOADERS)/;s#@@@MAINTAINER@@@#$(MAINTAINER)#' debian/control.in > debian/control.tmp + +check-uploaders: debian/control.tmp + @if ! diff -q debian/control debian/control.tmp ; then \ + echo "WARNING:: Control file differs from manually generated one" ; \ + echo "WARNING:: Please update it manually and check it afterwards" ; \ + echo "WARNING:: Uploaders are updated by debian/rules update-uploaders" ;\ + echo "WARNING:: If this is a binNMU, NMU or security upload, just ignore" ;\ + fi + + +clean:: + rm -f debian/control.tmp + +update-uploaders: debian/control.tmp + @mv -f debian/control.tmp debian/control + +makebuilddir:: check-uploaders diff --git a/ubuntu/maverick/applications/tdmtheme/debian/cdbs/versions.pl b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/ubuntu/maverick/applications/tdmtheme/debian/cdbs/versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; +my ($version3, $version3_next); +my ($version2, $version2_next); + +($version3 = $version) =~ s/-[^-]+$//; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "KDE-Version3=$version3\n"; +print "KDE-Version2=$version2\n"; +print "KDE-Next-Version3=$version3_next\n"; +print "KDE-Next-Version2=$version2_next\n"; diff --git a/ubuntu/maverick/applications/kdmtheme/debian/changelog b/ubuntu/maverick/applications/tdmtheme/debian/changelog index 120d16cf8..4097b1255 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/changelog +++ b/ubuntu/maverick/applications/tdmtheme/debian/changelog @@ -1,17 +1,17 @@ -kdmtheme-trinity (1.2.2-1ubuntu5) karmic; urgency=low +tdmtheme-trinity (1.2.2-1ubuntu5) karmic; urgency=low * Karmic rebuild * Fixed theme switching problem -- Timothy Pearson <[email protected]> Thu, 02 July 2009 16:08:00 -0600 -kdmtheme-trinity (1.2.2-1ubuntu1) intrepid; urgency=low +tdmtheme-trinity (1.2.2-1ubuntu1) intrepid; urgency=low * Added -trinity suffix -- Timothy Pearson <[email protected]> Mon, 27 Apr 2009 19:00:00 -0600 -kdmtheme (1.2.2-1ubuntu1) intrepid; urgency=low +tdmtheme (1.2.2-1ubuntu1) intrepid; urgency=low [ Sergey Rudchenko ] * Merge from debian unstable, remaining changes: @@ -23,7 +23,7 @@ kdmtheme (1.2.2-1ubuntu1) intrepid; urgency=low -- Harald Sitter <[email protected]> Fri, 06 Jun 2008 00:46:45 +0200 -kdmtheme (1.2.2-1) unstable; urgency=low +tdmtheme (1.2.2-1) unstable; urgency=low * New upstream release: * actually saves theme changes (Closes: #447683) @@ -33,7 +33,7 @@ kdmtheme (1.2.2-1) unstable; urgency=low * Use Homepage field. [ Kel Modderman ] - * Refresh debian/patches/10_kdmtheme-override-warning.diff to apply against + * Refresh debian/patches/10_tdmtheme-override-warning.diff to apply against new upstream release. [ Fathi Boudra ] @@ -41,22 +41,22 @@ kdmtheme (1.2.2-1) unstable; urgency=low -- Fathi Boudra <[email protected]> Sat, 22 Dec 2007 15:36:15 +0100 -kdmtheme (1.2.2-0ubuntu2) hardy; urgency=low +tdmtheme (1.2.2-0ubuntu2) hardy; urgency=low * Re-adds kubuntu_02_confchanges.diff. Patch from Stefan Skotte -- Anthony Mercatante <[email protected]> Fri, 15 Feb 2008 10:25:44 +0100 -kdmtheme (1.2.2-0ubuntu1) hardy; urgency=low +tdmtheme (1.2.2-0ubuntu1) hardy; urgency=low * New upstream release. - * Removed 10_kdmtheme-override-warning.diff. + * Removed 10_tdmtheme-override-warning.diff. * Removed kubuntu_02_confchanges.diff. * Updated Standards-Version to 3.7.3 -- Jonathan Patrick Davies <[email protected]> Mon, 22 Dec 2007 11:48:18 +0100 -kdmtheme (1.2.1-0ubuntu1) hardy; urgency=low +tdmtheme (1.2.1-0ubuntu1) hardy; urgency=low * New upstream release. * Merged new Debian changelog and changes to Ubuntu package. @@ -67,10 +67,10 @@ kdmtheme (1.2.1-0ubuntu1) hardy; urgency=low -- Jonathan Patrick Davies <[email protected]> Mon, 22 Oct 2007 21:18:56 +0200 -kdmtheme (1.2-1) unstable; urgency=low +tdmtheme (1.2-1) unstable; urgency=low * New upstream release. - * Update kdmtheme override warning patch. + * Update tdmtheme override warning patch. * Add patch to replace deprecated qlist.h include. * Add Build-Depends: quilt, automake1.7. * Update copyright file. @@ -78,11 +78,11 @@ kdmtheme (1.2-1) unstable; urgency=low -- Fathi Boudra <[email protected]> Wed, 03 Oct 2007 12:17:40 +0200 -kdmtheme (1.2-0ubuntu2) gutsy; urgency=low +tdmtheme (1.2-0ubuntu2) gutsy; urgency=low [ Stefan Skotte ] - * added support for kdm.d with override files. - * various bugfixes for normal kdmrc usage, including save and apply + * added support for tdm.d with override files. + * various bugfixes for normal tdmrc usage, including save and apply not working, themeDir not set correctly etc. [ Sarah Hobbs ] @@ -91,31 +91,31 @@ kdmtheme (1.2-0ubuntu2) gutsy; urgency=low -- Sarah Hobbs <[email protected]> Fri, 05 Oct 2007 19:09:00 +1000 -kdmtheme (1.2-0ubuntu1) gutsy; urgency=low +tdmtheme (1.2-0ubuntu1) gutsy; urgency=low * New upstream release -- Anthony Mercatante <[email protected]> Sat, 29 Sep 2007 11:17:55 +0200 -kdmtheme (1.1.2-2ubuntu1) feisty; urgency=low +tdmtheme (1.1.2-2ubuntu1) feisty; urgency=low * Added kubuntu_01_kcm_systemsettings.diff for tde-systemsettings inclusion in the Appearance section -- Anthony Mercatante <[email protected]> Tue, 13 Feb 2007 06:18:32 +0100 -kdmtheme (1.1.2-2) unstable; urgency=low +tdmtheme (1.1.2-2) unstable; urgency=low [ Mark Purcell ] * Add debian/rules get-orig-source target for http://buildserver.net. [ Fathi Boudra ] - * Add a patch to warn users about kdm override files introduced with + * Add a patch to warn users about tdm override files introduced with desktop-base. Thanks to Sune Vuorela. -- Fathi Boudra <[email protected]> Wed, 31 Jan 2007 21:11:45 +0100 -kdmtheme (1.1.2-1) unstable; urgency=low +tdmtheme (1.1.2-1) unstable; urgency=low * Initial release (Closes: #380661) diff --git a/ubuntu/maverick/applications/tdmtheme/debian/compat b/ubuntu/maverick/applications/tdmtheme/debian/compat new file mode 100644 index 000000000..7ed6ff82d --- /dev/null +++ b/ubuntu/maverick/applications/tdmtheme/debian/compat @@ -0,0 +1 @@ +5 diff --git a/ubuntu/maverick/applications/kdmtheme/debian/control b/ubuntu/maverick/applications/tdmtheme/debian/control index ff09f4750..c615c56fd 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/control +++ b/ubuntu/maverick/applications/tdmtheme/debian/control @@ -1,4 +1,4 @@ -Source: kdmtheme-trinity +Source: tdmtheme-trinity Section: kde Priority: optional Maintainer: Timothy Pearson <[email protected]> @@ -9,11 +9,11 @@ Build-Depends: cdbs, debhelper (>= 5), quilt, tdelibs4-trinity-dev, automake, au Standards-Version: 3.8.4 Homepage: http://beta.smileaf.org/projects -Package: kdmtheme-trinity +Package: tdmtheme-trinity Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, kdm-trinity -Replaces: kdmtheme-kde3 (<< 4:3.5.13) -Breaks: kdmtheme-kde3 (<< 4:3.5.13) -Description: theme manager for KDM [Trinity] - kdmtheme is a theme manager for KDM. It provides a KDE Control Module (KCM) - that allows you to easily install, remove and change your KDM themes. +Depends: ${shlibs:Depends}, ${misc:Depends}, tdm-trinity +Replaces: tdmtheme-trinity (<< 4:14.0.0) +Breaks: tdmtheme-trinity (<< 4:14.0.0) +Description: theme manager for TDM [Trinity] + tdmtheme is a theme manager for TDM. It provides a KDE Control Module (KCM) + that allows you to easily install, remove and change your TDM themes. diff --git a/ubuntu/maverick/applications/kdmtheme/debian/copyright b/ubuntu/maverick/applications/tdmtheme/debian/copyright index 23265e2b6..c8d6d972f 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/copyright +++ b/ubuntu/maverick/applications/tdmtheme/debian/copyright @@ -36,7 +36,7 @@ Public License can be found in `/usr/share/common-licenses/GPL'. The Debian packaging is (C) 2007, Kel Modderman <[email protected]> and is licensed under the GPL, see above. -The documentations provided with kdmtheme is distributed under +The documentations provided with tdmtheme 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). diff --git a/ubuntu/maverick/applications/kdmtheme/debian/docs b/ubuntu/maverick/applications/tdmtheme/debian/docs index e845566c0..e845566c0 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/docs +++ b/ubuntu/maverick/applications/tdmtheme/debian/docs diff --git a/ubuntu/maverick/applications/kdmtheme/debian/patches/.gitignore b/ubuntu/maverick/applications/tdmtheme/debian/patches/.gitignore index e69de29bb..e69de29bb 100644 --- a/ubuntu/maverick/applications/kdmtheme/debian/patches/.gitignore +++ b/ubuntu/maverick/applications/tdmtheme/debian/patches/.gitignore diff --git a/ubuntu/maverick/applications/kdmtheme/debian/rules b/ubuntu/maverick/applications/tdmtheme/debian/rules index 0049d9a98..0eb4fad95 100755 --- a/ubuntu/maverick/applications/kdmtheme/debian/rules +++ b/ubuntu/maverick/applications/tdmtheme/debian/rules @@ -27,9 +27,9 @@ debian/stamp-bootstrap: make -f admin/Makefile.common cvs touch debian/stamp-bootstrap -install/kdmtheme-trinity:: - install -D -p -m644 debian/kdmtheme.lintian-overrides \ - debian/kdmtheme-trinity/usr/share/lintian/overrides/kdmtheme-trinity +install/tdmtheme-trinity:: + install -D -p -m644 debian/tdmtheme.lintian-overrides \ + debian/tdmtheme-trinity/usr/share/lintian/overrides/tdmtheme-trinity get-orig-source: @@dh_testdir diff --git a/ubuntu/maverick/applications/tdmtheme/debian/source/format b/ubuntu/maverick/applications/tdmtheme/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/tdmtheme/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/tdmtheme/debian/source/options b/ubuntu/maverick/applications/tdmtheme/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/tdmtheme/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/tdmtheme/debian/tdmtheme.lintian-overrides b/ubuntu/maverick/applications/tdmtheme/debian/tdmtheme.lintian-overrides new file mode 100644 index 000000000..88969d336 --- /dev/null +++ b/ubuntu/maverick/applications/tdmtheme/debian/tdmtheme.lintian-overrides @@ -0,0 +1,6 @@ +# provided by tdelibs +tdmtheme: desktop-command-not-in-package ./usr/share/applications/kde/tdmtheme.desktop kcmshell +# kcontrol module +tdmtheme: desktop-entry-invalid-category X-KDE-settings-system ./usr/share/applications/kde/tdmtheme.desktop +tdmtheme: desktop-entry-lacks-main-category ./usr/share/applications/kde/tdmtheme.desktop + diff --git a/ubuntu/maverick/applications/tdmtheme/debian/watch b/ubuntu/maverick/applications/tdmtheme/debian/watch new file mode 100644 index 000000000..82cebbd47 --- /dev/null +++ b/ubuntu/maverick/applications/tdmtheme/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://beta.smileaf.org/files/tdmtheme/tdmtheme-(.*)\.tar\.bz2 debian svn-upgrade diff --git a/ubuntu/maverick/applications/tellico/debian/control b/ubuntu/maverick/applications/tellico/debian/control index d1f2283c5..7cf6f01fd 100644 --- a/ubuntu/maverick/applications/tellico/debian/control +++ b/ubuntu/maverick/applications/tellico/debian/control @@ -10,8 +10,8 @@ Homepage: http://periapsis.org/tellico/ Package: tellico-trinity Architecture: any Depends: tellico-data-trinity (= ${source:Version}), tellico-scripts-trinity, ${shlibs:Depends} -Replaces: tellico-kde3 (<< 4:3.5.13) -Breaks: tellico-kde3 (<< 4:3.5.13) +Replaces: tellico-trinity (<< 4:14.0.0) +Breaks: tellico-trinity (<< 4:14.0.0) Description: collection manager for books, videos, music [Trinity] Tellico is a collection manager for KDE. It includes default collections for books, bibliographies, comic books, videos, music, coins, stamps, trading @@ -29,8 +29,8 @@ Description: collection manager for books, videos, music [Trinity] Package: tellico-data-trinity Architecture: all Depends: tdelibs-data-trinity -Replaces: tellico-data-kde3 (<< 4:3.5.13) -Breaks: tellico-data-kde3 (<< 4:3.5.13) +Replaces: tellico-data-trinity (<< 4:14.0.0) +Breaks: tellico-data-trinity (<< 4:14.0.0) Recommends: tellico-trinity Suggests: python Description: collection manager for books, videos, music [data] [Trinity] @@ -53,8 +53,8 @@ Description: collection manager for books, videos, music [data] [Trinity] Package: tellico-scripts-trinity Architecture: all Recommends: tellico-trinity -Replaces: tellico-scripts-kde3 (<< 4:3.5.13) -Breaks: tellico-scripts-kde3 (<< 4:3.5.13) +Replaces: tellico-scripts-trinity (<< 4:14.0.0) +Breaks: tellico-scripts-trinity (<< 4:14.0.0) Suggests: python, ruby Description: collection manager for books, videos, music [scripts] [Trinity] Tellico is a collection manager for KDE. It includes default collections for diff --git a/ubuntu/maverick/applications/tellico/debian/source/format b/ubuntu/maverick/applications/tellico/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/tellico/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/tellico/debian/source/options b/ubuntu/maverick/applications/tellico/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/tellico/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/twin-style-crystal/debian/control b/ubuntu/maverick/applications/twin-style-crystal/debian/control index a22f0413b..9e966189c 100644 --- a/ubuntu/maverick/applications/twin-style-crystal/debian/control +++ b/ubuntu/maverick/applications/twin-style-crystal/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.8.4 Package: twin-style-crystal-trinity Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Replaces: twin-style-crystal-kde3 (<< 4:3.5.13) -Breaks: twin-style-crystal-kde3 (<< 4:3.5.13) +Replaces: kwin-style-crystal-trinity (<< 4:14.0.0) +Breaks: kwin-style-crystal-trinity (<< 4:14.0.0) Description: semi transparant window decoration for Trinity Crystal offers you pseudo transparent titlebar, buttons and borders transparent, so you can see more of your lovely background image diff --git a/ubuntu/maverick/applications/twin-style-crystal/debian/dirs b/ubuntu/maverick/applications/twin-style-crystal/debian/dirs index af39e99b5..93234e6f8 100644 --- a/ubuntu/maverick/applications/twin-style-crystal/debian/dirs +++ b/ubuntu/maverick/applications/twin-style-crystal/debian/dirs @@ -1,2 +1,2 @@ usr/trinity/lib/trinity -usr/share/apps/kwin +usr/share/apps/twin diff --git a/ubuntu/maverick/applications/twin-style-crystal/debian/source/format b/ubuntu/maverick/applications/twin-style-crystal/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/twin-style-crystal/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/twin-style-crystal/debian/source/options b/ubuntu/maverick/applications/twin-style-crystal/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/twin-style-crystal/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/wlassistant/debian/cdbs/buildvars.mk b/ubuntu/maverick/applications/wlassistant/debian/cdbs/buildvars.mk new file mode 100644 index 000000000..23d4709dc --- /dev/null +++ b/ubuntu/maverick/applications/wlassistant/debian/cdbs/buildvars.mk @@ -0,0 +1,86 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2002,2003 Colin Walters <[email protected]> +# Description: Defines some useful variables, but no rules +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_buildvars +_cdbs_rules_buildvars = 1 + +CDBS_VERSION = something + +# Common useful variables +DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':')) +DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') +DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) +DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') +DEB_ISNATIVE := $(shell dpkg-parsechangelog | egrep '^Version:' | perl -ne 'print if not /^Version:\s*.*-/;') + +# Split into arch/indep packages +ifneq ($(DEB_INDEP_PACKAGES),cdbs) +DEB_INDEP_PACKAGES := $(filter-out $(DONT_BUILD), $(strip $(shell $(_cdbs_scripts_path)/list-packages indep))) +DEB_ARCH_PACKAGES := $(filter-out $(DONT_BUILD), $(filter-out $(DEB_INDEP_PACKAGES),$(strip $(shell $(_cdbs_scripts_path)/list-packages same)))) +endif +# Split into normal and udeb packages +ifeq ($(DEB_UDEB_PACKAGES),) +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +DEB_UDEB_PACKAGES = $(filter-out $(DONT_BUILD),$(filter %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +else +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES), $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +endif +# Too much bother for now. If someone complains we'll fix it. +#DEB_ARCH_UDEB_PACKAGES = $(filter %-udeb, $(DEB_ARCH_PACKAGES)) +#DEB_INDEP_UDEB_PACKAGES = $(filter %-udeb, $(DEB_INDEP_PACKAGES)) +# A handy list of every package, udeb or not +DEB_ALL_PACKAGES = $(filter-out $(DONT_BUILD),$(DEB_PACKAGES) $(DEB_UDEB_PACKAGES)) +DEB_INDEP_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_INDEP_PACKAGES))) +DEB_ARCH_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_ARCH_PACKAGES))) + +DEB_DBG_PACKAGES = $(filter-out $(DONT_BUILD), $(filter %-dbg, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) + +# Some support for srcdir != builddir builds. +# These are relative to the root of the package +DEB_SRCDIR ?= . +DEB_BUILDDIR ?= $(strip $(DEB_SRCDIR)) + +# Miscellaneous bits +DEB_ARCH = $(shell dpkg --print-architecture) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) +DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) +DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) + +ifeq ($(words $(DEB_ALL_PACKAGES)),1) + DEB_DESTDIR = $(CURDIR)/debian/$(strip $(DEB_ALL_PACKAGES))/ +else + DEB_DESTDIR = $(CURDIR)/debian/tmp/ +endif + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.23-1.1) + +endif diff --git a/ubuntu/maverick/applications/wlassistant/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/wlassistant/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..856fa4932 --- /dev/null +++ b/ubuntu/maverick/applications/wlassistant/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,110 @@ +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_debian-qt-kde +_cdbs_class_debian-qt-kde := 1 + +# Note: This _must_ be included before autotools.mk, or it won't work. +common-configure-arch common-configure-indep:: debian/stamp-cvs-make +debian/stamp-cvs-make: + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) +include debian/cdbs/uploaders.mk + +DEB_PATCHDIRS := debian/patches/common debian/patches + +DEB_KDE_ENABLE_FINAL := yes +DEB_INSTALL_DOCS_ALL := + +DEB_DH_MAKESHLIBS_ARGS_ALL := -V +DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib) + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) + else + cdbs_kde_enable_final = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +common-binary-indep:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_INDEP_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +common-binary-arch:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_ARCH_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +clean:: + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -rf debian/shlibs-check + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + done + +clean:: + rm -f debian/stamp-cvs-make + +endif + +#common-build-indep:: debian/stamp-kde-apidox +#debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) +# touch $@ +# +#common-install-indep:: common-install-kde-apidox +#common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) +# +#clean:: +# rm -f debian/stamp-kde-apidox diff --git a/ubuntu/maverick/applications/wlassistant/debian/cdbs/kde.mk b/ubuntu/maverick/applications/wlassistant/debian/cdbs/kde.mk new file mode 100644 index 000000000..9dbcfbafd --- /dev/null +++ b/ubuntu/maverick/applications/wlassistant/debian/cdbs/kde.mk @@ -0,0 +1,97 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Christopher L Cheney <[email protected]> +# Description: A class for KDE packages; sets KDE environment variables, etc +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_kde +_cdbs_class_kde := 1 + +# for dh_icons +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +# include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) + +export kde_cgidir = \$${libdir}/cgi-bin +export kde_confdir = \$${sysconfdir}/trinity +export kde_htmldir = \$${datadir}/doc/kde/HTML + +ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) +endif + +ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = + cdbs_kde_enable_debug = --enable-debug=yes +else + cdbs_kde_enable_debug = --disable-debug +endif + +ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_debug = --enable-debug=full +endif + +cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/" +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi + +cleanbuilddir:: + -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) + +common-build-arch common-build-indep:: debian/stamp-kde-apidox +debian/stamp-kde-apidox: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) + touch $@ + +common-install-prehook-impl:: + mkdir -p po + -XGETTEXT=/usr/bin/kde-xgettext EXTRACTATTR=/opt/trinity/bin/extractattr sh $(DEB_SRCDIR)/admin/cvs.sh extract-messages + -for file in po/*pot; do \ + sed "s/charset=CHARSET/charset=UTF-8/" -i $$file; \ + done + +common-install-arch common-install-indep:: common-install-kde-apidox +common-install-kde-apidox:: +# $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) + +clean:: + rm -f debian/stamp-kde-apidox + rm -rf po/*.pot + +# This is a convenience target for calling manually. It's not part of +# the build process. +buildprep: clean apply-patches + $(MAKE) -f admin/Makefile.common dist + debian/rules clean + +endif diff --git a/ubuntu/maverick/applications/wlassistant/debian/cdbs/team-members b/ubuntu/maverick/applications/wlassistant/debian/cdbs/team-members new file mode 100644 index 000000000..05761af6e --- /dev/null +++ b/ubuntu/maverick/applications/wlassistant/debian/cdbs/team-members @@ -0,0 +1,16 @@ +Sune Vuorela <[email protected]> +Ana Beatriz Guerrero Lopez <[email protected]> +Fathi Boudra <[email protected]> +Modestas Vainius <[email protected]> +Josh Metzler <[email protected]> +Isaac Clerencia <[email protected]> +Adeodato Simó <[email protected]> +Adeodato Simo <[email protected]> +Christopher Martin <[email protected]> +Daniel Schepler <[email protected]> +Sarah Hobbs <[email protected]> +Nacho Barrientos Arias <[email protected]> +Ricardo Javier Cardenes Medina <[email protected]> +Ricardo Cardenes <[email protected]> +Armin Berres <[email protected]> +Francesco Pedrini <[email protected]> diff --git a/ubuntu/maverick/applications/wlassistant/debian/cdbs/uploaders.mk b/ubuntu/maverick/applications/wlassistant/debian/cdbs/uploaders.mk new file mode 100644 index 000000000..31adfe31e --- /dev/null +++ b/ubuntu/maverick/applications/wlassistant/debian/cdbs/uploaders.mk @@ -0,0 +1,29 @@ + +MAINTAINER=Debian Qt/KDE Maintainers <[email protected]> +UPLOADERS=$(shell grep -e +++ -e "^ -- " debian/changelog | grep -v "[email protected]" | head -13 | /bin/sed 's/^\s*//;s/\s*$$//;s/^+++\? Changes by //;s/^+++\? //;s/-- //;s/:$$//;s/ <.*//' | sort -u | while read line ; do grep "$$line" debian/cdbs/team-members ; done | tr "\n" ", " | sed 's/,/, /g;s/, $$//') + + +debian/control.tmp: + @if [ ! -e debian/control.in ] ; then \ + echo "this package is not yet prepared for using automatic update of uploaders"; \ + echo "Please do so."; \ + exit 1; \ + fi + @sed 's/@@@UPLOADERS@@@/$(UPLOADERS)/;s#@@@MAINTAINER@@@#$(MAINTAINER)#' debian/control.in > debian/control.tmp + +check-uploaders: debian/control.tmp + @if ! diff -q debian/control debian/control.tmp ; then \ + echo "WARNING:: Control file differs from manually generated one" ; \ + echo "WARNING:: Please update it manually and check it afterwards" ; \ + echo "WARNING:: Uploaders are updated by debian/rules update-uploaders" ;\ + echo "WARNING:: If this is a binNMU, NMU or security upload, just ignore" ;\ + fi + + +clean:: + rm -f debian/control.tmp + +update-uploaders: debian/control.tmp + @mv -f debian/control.tmp debian/control + +makebuilddir:: check-uploaders diff --git a/ubuntu/maverick/applications/wlassistant/debian/cdbs/versions.pl b/ubuntu/maverick/applications/wlassistant/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/ubuntu/maverick/applications/wlassistant/debian/cdbs/versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; +my ($version3, $version3_next); +my ($version2, $version2_next); + +($version3 = $version) =~ s/-[^-]+$//; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "KDE-Version3=$version3\n"; +print "KDE-Version2=$version2\n"; +print "KDE-Next-Version3=$version3_next\n"; +print "KDE-Next-Version2=$version2_next\n"; diff --git a/ubuntu/maverick/applications/wlassistant/debian/control b/ubuntu/maverick/applications/wlassistant/debian/control index 896dcc318..7eff62514 100644 --- a/ubuntu/maverick/applications/wlassistant/debian/control +++ b/ubuntu/maverick/applications/wlassistant/debian/control @@ -3,14 +3,14 @@ Section: kde Priority: optional Maintainer: Timothy Pearson <[email protected]> Uploaders: Achim Bohnet <[email protected]>, Mark Purcell <[email protected]> -Build-Depends: debhelper (>= 4.1.0), scons, cdbs, tdelibs4-trinity-dev, net-tools, wireless-tools, libiw-dev +Build-Depends: debhelper (>= 4.1.0), cmake, cdbs, tdelibs4-trinity-dev, net-tools, wireless-tools, libiw-dev Standards-Version: 3.8.4 Package: wlassistant-trinity Architecture: any Depends: kicker-trinity, net-tools, wireless-tools, menu, ${shlibs:Depends} -Replaces: wlassistant-kde3 (<< 4:3.5.13) -Breaks: wlassistant-kde3 (<< 4:3.5.13) +Replaces: wlassistant-trinity (<< 4:14.0.0) +Breaks: wlassistant-trinity (<< 4:14.0.0) Recommends: dhcp3-client | dhcp-client | dhcpcd Description: User friendly KDE frontend for wireless network connection [Trinity] Wireless Assistant scans for wireless access points and displays link quality, diff --git a/ubuntu/maverick/applications/wlassistant/debian/control.in b/ubuntu/maverick/applications/wlassistant/debian/control.in new file mode 100644 index 000000000..0ed1a07ea --- /dev/null +++ b/ubuntu/maverick/applications/wlassistant/debian/control.in @@ -0,0 +1,23 @@ +Source: wlassistant-trinity +Section: kde +Priority: optional +Maintainer: Timothy Pearson <[email protected]> +XSBC-Original-Maintainer: @@@MAINTAINER@@@ +Uploaders: @@@UPLOADERS@@@ +Build-Depends: debhelper (>= 4.1.0), cmake, cdbs, tdelibs4-trinity-dev, net-tools, wireless-tools, libiw-dev +Standards-Version: 3.8.4 + +Package: wlassistant-trinity +Architecture: any +Depends: kicker-trinity, net-tools, wireless-tools, menu, ${shlibs:Depends} +Replaces: wlassistant-kde3 (<< 4:3.5.13) +Breaks: wlassistant-kde3 (<< 4:3.5.13) +Recommends: dhcp3-client | dhcp-client | dhcpcd +Description: User friendly KDE frontend for wireless network connection [Trinity] + Wireless Assistant scans for wireless access points and displays link quality, + encryption and other useful information. When user wants to connect to a + network, Wireless Assistant opens up its wizards and guides the user through + Wi-Fi settings. After a successful connection is made the settings are + remembered so next time the user won't have to enter them again. + . + Homepage: http://wlassistant.sourceforge.net/ diff --git a/ubuntu/maverick/applications/wlassistant/debian/rules b/ubuntu/maverick/applications/wlassistant/debian/rules index 53862cce6..a73dcca3d 100755 --- a/ubuntu/maverick/applications/wlassistant/debian/rules +++ b/ubuntu/maverick/applications/wlassistant/debian/rules @@ -1,66 +1,26 @@ #!/usr/bin/make -f -FILENAME = $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_VERSION).orig.tar.gz -UPFILENAME = $(DEB_SOURCE_PACKAGE)-$(shell echo $(DEB_UPSTREAM_VERSION) | sed 's/~/-/').tar.bz2 -URL = http://heanet.dl.sourceforge.net/$(DEB_SOURCE_PACKAGE)/$(UPFILENAME) +# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function +# Also include the main Trinity path +ifeq ("$(LD_LIBRARY_PATH)", "") +LD_LIBRARY_PATH=debian/tmp/opt/trinity/lib +else +LD_LIBRARY_PATH += :debian/tmp/opt/trinity/lib +endif +export LD_LIBRARY_PATH include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk +include debian/cdbs/debian-qt-kde.mk -DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde -DEB_CONFIGURE_MANDIR := /opt/trinity/share/man -DEB_CONFIGURE_PREFIX := /opt/trinity -DEB_CONFIGURE_INFODIR := /opt/trinity/share/info +DEB_KDE_APIDOX := yes -cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) +CXXFLAGS := -DSMB_CTX_FLAG_USE_KERBEROS -DSMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS -g -Wall $(DEB_OPT_FLAG) -PATH := /opt/trinity/bin:${PATH} +DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_INSTALL_PREFIX="/opt/trinity" -DCONFIG_INSTALL_DIR="/etc/trinity" -DSYSCONF_INSTALL_DIR="/etc/trinity" -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/" -DAUTODETECT_QT_DIRS="ON" -DCMAKE_VERBOSE_MAKEFILE="ON" -DBUILD_ALL="ON" -DCMAKE_SKIP_RPATH="OFF" -DEB_SCONS_PREFIX=/opt/trinity - -DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/trinity --with-extra-libs=/opt/trinity/lib --with-extra-includes=/opt/trinity/include/kde - -CONFIG_STATUS=$(DEB_BUILDDIR)/config.status -SCONS_CMD=scons - -common-configure-arch common-configure-indep:: common-configure-impl -common-configure-impl:: $(CONFIG_STATUS) -$(CONFIG_STATUS): - $(SCONS_CMD) configure prefix=$(DEB_SCONS_PREFIX) - touch $(CONFIG_STATUS) - -common-build-arch common-build-indep:: common-build-impl -common-build-impl:: - $(SCONS_CMD) - -common-install-arch common-install-indep:: common-install-impl -common-install-impl:: - DESTDIR=$(DEB_DESTDIR) $(SCONS_CMD) install - -install/wlassistant-trinity:: - mv $(CURDIR)/debian/wlassistant-trinity/opt/trinity/share/applnk/Utilities/wlassistant.desktop \ - $(CURDIR)/debian/wlassistant-trinity/opt/trinity/share/applications/kde/ - rmdir $(CURDIR)/debian/wlassistant-trinity/opt/trinity/share/applnk/Utilities - rmdir $(CURDIR)/debian/wlassistant-trinity/opt/trinity/share/applnk - -clean:: - rm -f $(CONFIG_STATUS) - rm -rf cache - rm -rf .sconf_temp - rm -rf admin - rm -rf build/ - rm -f bksys/*.pyc - rm -f generic.cache.py kde.cache.py configure.log - rm -f scons/*.pyc scons/signatures.dblite - -cleanbuilddir common-configure-arch:: - -DEB_INSTALL_MANPAGES_wlassistant-trinity = debian/wlassistant-trinity.manpage - -get-orig-source: - @@dh_testdir - @@[ -d ../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) +# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to +# never build in parallel, regardless of DEB_BUILD_OPTIONS. +DEB_BUILD_PARALLEL = true diff --git a/ubuntu/maverick/applications/wlassistant/debian/source/format b/ubuntu/maverick/applications/wlassistant/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/wlassistant/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/wlassistant/debian/source/options b/ubuntu/maverick/applications/wlassistant/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/wlassistant/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/yakuake/debian/control b/ubuntu/maverick/applications/yakuake/debian/control index 98569dd19..8204e37de 100644 --- a/ubuntu/maverick/applications/yakuake/debian/control +++ b/ubuntu/maverick/applications/yakuake/debian/control @@ -10,8 +10,8 @@ Homepage: http://extragear.kde.org/apps/yakuake/ Package: yakuake-trinity Architecture: any Depends: ${shlibs:Depends}, konsole-trinity -Replaces: yakuake-kde3 (<< 4:3.5.13) -Breaks: yakuake-kde3 (<< 4:3.5.13) +Replaces: yakuake-trinity (<< 4:14.0.0) +Breaks: yakuake-trinity (<< 4:14.0.0) Description: a Quake-style terminal emulator based on KDE Konsole technology [Trinity] YaKuake is inspired from the terminal in the Quake game: when you press a key (by default F12, but that can be changed) a terminal window slides down from diff --git a/ubuntu/maverick/applications/yakuake/debian/source/format b/ubuntu/maverick/applications/yakuake/debian/source/format new file mode 100644 index 000000000..89ae9db8f --- /dev/null +++ b/ubuntu/maverick/applications/yakuake/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/ubuntu/maverick/applications/yakuake/debian/source/options b/ubuntu/maverick/applications/yakuake/debian/source/options new file mode 100644 index 000000000..9d7c8e036 --- /dev/null +++ b/ubuntu/maverick/applications/yakuake/debian/source/options @@ -0,0 +1,6 @@ +# Use bzip2 instead of gzip +compression = "bzip2" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/maverick/applications/yakuake/debian/yakuake.1 b/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.1 index 7b404d01e..7b404d01e 100644 --- a/ubuntu/maverick/applications/yakuake/debian/yakuake.1 +++ b/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.1 diff --git a/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.manpages b/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.manpages index 72280ef49..f9a1365b5 100644 --- a/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.manpages +++ b/ubuntu/maverick/applications/yakuake/debian/yakuake-trinity.manpages @@ -1 +1 @@ -debian/yakuake.1 +debian/yakuake-trinity.1 |