diff options
Diffstat (limited to 'ubuntu/precise/applications/gtk-qt-engine')
18 files changed, 0 insertions, 978 deletions
diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/.gtkrc-2.0-kde-kde4 b/ubuntu/precise/applications/gtk-qt-engine/debian/.gtkrc-2.0-kde-kde4 deleted file mode 100644 index a34c9c81c..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/.gtkrc-2.0-kde-kde4 +++ /dev/null @@ -1,13 +0,0 @@ -# This file was written by KDE -# You can edit it in the KDE control center, under "GTK Styles and Fonts" - -include "/usr/share/themes/Qt/gtk-2.0/gtkrc" - -style "user-font" -{ - font_name="Sans Serif 9" -} -widget_class "*" style "user-font" - -gtk-theme-name="Qt" -gtk-font-name="Sans Serif 9" diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/.gtkrc-2.0-kde4 b/ubuntu/precise/applications/gtk-qt-engine/debian/.gtkrc-2.0-kde4 deleted file mode 100644 index 874f83934..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/.gtkrc-2.0-kde4 +++ /dev/null @@ -1,13 +0,0 @@ -# This file was written by KDE -# You can edit it in the KDE control center, under "GTK Styles and Fonts" - -include "/usr/share/themes/Qt/gtk-2.0/gtkrc" - -style "user-font" -{ - font_name="Tahoma 10" -} -widget_class "*" style "user-font" - -gtk-theme-name="Qt" -gtk-font-name="Tahoma 10" diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/buildvars.mk b/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/buildvars.mk deleted file mode 100644 index 23d4709dc..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/buildvars.mk +++ /dev/null @@ -1,86 +0,0 @@ -# -*- mode: makefile; coding: utf-8 -*- -# Copyright © 2002,2003 Colin Walters <walters@debian.org> -# Description: Defines some useful variables, but no rules -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2, or (at -# your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA -# 02111-1307 USA. - -_cdbs_scripts_path ?= /usr/lib/cdbs -_cdbs_rules_path ?= /usr/share/cdbs/1/rules -_cdbs_class_path ?= /usr/share/cdbs/1/class - -ifndef _cdbs_rules_buildvars -_cdbs_rules_buildvars = 1 - -CDBS_VERSION = something - -# Common useful variables -DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':')) -DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') -DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) -DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') -DEB_ISNATIVE := $(shell dpkg-parsechangelog | egrep '^Version:' | perl -ne 'print if not /^Version:\s*.*-/;') - -# Split into arch/indep packages -ifneq ($(DEB_INDEP_PACKAGES),cdbs) -DEB_INDEP_PACKAGES := $(filter-out $(DONT_BUILD), $(strip $(shell $(_cdbs_scripts_path)/list-packages indep))) -DEB_ARCH_PACKAGES := $(filter-out $(DONT_BUILD), $(filter-out $(DEB_INDEP_PACKAGES),$(strip $(shell $(_cdbs_scripts_path)/list-packages same)))) -endif -# Split into normal and udeb packages -ifeq ($(DEB_UDEB_PACKAGES),) -DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) -DEB_UDEB_PACKAGES = $(filter-out $(DONT_BUILD),$(filter %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) -else -DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES), $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) -endif -# Too much bother for now. If someone complains we'll fix it. -#DEB_ARCH_UDEB_PACKAGES = $(filter %-udeb, $(DEB_ARCH_PACKAGES)) -#DEB_INDEP_UDEB_PACKAGES = $(filter %-udeb, $(DEB_INDEP_PACKAGES)) -# A handy list of every package, udeb or not -DEB_ALL_PACKAGES = $(filter-out $(DONT_BUILD),$(DEB_PACKAGES) $(DEB_UDEB_PACKAGES)) -DEB_INDEP_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_INDEP_PACKAGES))) -DEB_ARCH_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_ARCH_PACKAGES))) - -DEB_DBG_PACKAGES = $(filter-out $(DONT_BUILD), $(filter %-dbg, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) - -# Some support for srcdir != builddir builds. -# These are relative to the root of the package -DEB_SRCDIR ?= . -DEB_BUILDDIR ?= $(strip $(DEB_SRCDIR)) - -# Miscellaneous bits -DEB_ARCH = $(shell dpkg --print-architecture) -DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) -DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) -DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) -DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) -DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) -DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) -DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) -DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM) -DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) -DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) -DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) -DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) - -ifeq ($(words $(DEB_ALL_PACKAGES)),1) - DEB_DESTDIR = $(CURDIR)/debian/$(strip $(DEB_ALL_PACKAGES))/ -else - DEB_DESTDIR = $(CURDIR)/debian/tmp/ -endif - -CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.23-1.1) - -endif diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/debian-qt-kde.mk b/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/debian-qt-kde.mk deleted file mode 100644 index 65f5f6f95..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/debian-qt-kde.mk +++ /dev/null @@ -1,27 +0,0 @@ -ifndef _cdbs_bootstrap -_cdbs_scripts_path ?= /usr/lib/cdbs -_cdbs_rules_path ?= /usr/share/cdbs/1/rules -_cdbs_class_path ?= /usr/share/cdbs/1/class -endif - -ifndef _cdbs_class_debian-qt-kde -_cdbs_class_debian-qt-kde := 1 - -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 - -clean:: - rm -rf debian/man/out - -rmdir debian/man - rm -f debian/stamp-man-pages - -endif diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/kde.mk b/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/kde.mk deleted file mode 100644 index 765560c89..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/kde.mk +++ /dev/null @@ -1,97 +0,0 @@ -# -*- mode: makefile; coding: utf-8 -*- -# Copyright © 2003 Christopher L Cheney <ccheney@debian.org> -# Description: A class for KDE packages; sets KDE environment variables, etc -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2, or (at -# your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA -# 02111-1307 USA. - -_cdbs_scripts_path ?= /usr/lib/cdbs -_cdbs_rules_path ?= /usr/share/cdbs/1/rules -_cdbs_class_path ?= /usr/share/cdbs/1/class - -ifndef _cdbs_class_kde -_cdbs_class_kde := 1 - -# for dh_icons -CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) - -include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) - -ifdef _cdbs_tarball_dir -DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) -else -DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) -endif - -include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) - -export kde_cgidir = \$${libdir}/cgi-bin -export kde_confdir = \$${sysconfdir}/trinity -export kde_htmldir = \$${datadir}/doc/tde/HTML - -ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) - cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) -endif - -ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) - cdbs_kde_enable_final = - cdbs_kde_enable_debug = --enable-debug=yes -else - cdbs_kde_enable_debug = --disable-debug -endif - -ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) - cdbs_kde_enable_debug = --enable-debug=full -endif - -cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) - -DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin -DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/tde" -DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el - -$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: - if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi - -cleanbuilddir:: - -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) - -common-build-arch common-build-indep:: debian/stamp-kde-apidox -debian/stamp-kde-apidox: - $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) - touch $@ - -common-install-prehook-impl:: - mkdir -p po - -XGETTEXT=/usr/bin/kde-xgettext EXTRACTATTR=/opt/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/precise/applications/gtk-qt-engine/debian/cdbs/team-members b/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/team-members deleted file mode 100644 index 815b2c16f..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/team-members +++ /dev/null @@ -1,17 +0,0 @@ -Sune Vuorela <debian@pusling.com> -Ana Beatriz Guerrero Lopez <ana@debian.org> -Fathi Boudra <fabo@debian.org> -Modestas Vainius <modestas@vainius.eu> -Josh Metzler <joshdeb@metzlers.org> -Isaac Clerencia <isaac@debian.org> -Adeodato Simó <dato@net.com.org.es> -Adeodato Simo <dato@net.com.org.es> -Daniel Schepler <schepler@debian.org> -Sarah Hobbs <hobbsee@ubuntu.com> -Nacho Barrientos Arias <nacho@debian.org> -Ricardo Javier Cardenes Medina <rcardenes@debian.org> -Ricardo Cardenes <rcardenes@debian.org> -Armin Berres <trigger+debian@space-based.de> -Francesco Pedrini <francesco.pedrini@gmail.com> -Raúl Sánchez Siles <rasasi78@gmail.com> -Pino Toscano <pino@kde.org> diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/uploaders.mk b/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/uploaders.mk deleted file mode 100644 index 31adfe31e..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/uploaders.mk +++ /dev/null @@ -1,29 +0,0 @@ - -MAINTAINER=Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> -UPLOADERS=$(shell grep -e +++ -e "^ -- " debian/changelog | grep -v "debian-qt-kde@lists.debian.org" | head -13 | /bin/sed 's/^\s*//;s/\s*$$//;s/^+++\? Changes by //;s/^+++\? //;s/-- //;s/:$$//;s/ <.*//' | sort -u | while read line ; do grep "$$line" debian/cdbs/team-members ; done | tr "\n" ", " | sed 's/,/, /g;s/, $$//') - - -debian/control.tmp: - @if [ ! -e debian/control.in ] ; then \ - echo "this package is not yet prepared for using automatic update of uploaders"; \ - echo "Please do so."; \ - exit 1; \ - fi - @sed 's/@@@UPLOADERS@@@/$(UPLOADERS)/;s#@@@MAINTAINER@@@#$(MAINTAINER)#' debian/control.in > debian/control.tmp - -check-uploaders: debian/control.tmp - @if ! diff -q debian/control debian/control.tmp ; then \ - echo "WARNING:: Control file differs from manually generated one" ; \ - echo "WARNING:: Please update it manually and check it afterwards" ; \ - echo "WARNING:: Uploaders are updated by debian/rules update-uploaders" ;\ - echo "WARNING:: If this is a binNMU, NMU or security upload, just ignore" ;\ - fi - - -clean:: - rm -f debian/control.tmp - -update-uploaders: debian/control.tmp - @mv -f debian/control.tmp debian/control - -makebuilddir:: check-uploaders diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/versions.pl b/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/versions.pl deleted file mode 100644 index 75c9add4b..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/cdbs/versions.pl +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; - -my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; -my ($version3, $version3_next); -my ($version2, $version2_next); - -($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/; -($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/precise/applications/gtk-qt-engine/debian/changelog b/ubuntu/precise/applications/gtk-qt-engine/debian/changelog deleted file mode 100644 index 477da1594..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/changelog +++ /dev/null @@ -1,579 +0,0 @@ -gtk-qt-engine-trinity (1:0.8-1ubuntu3) karmic; urgency=low - - * Karmic rebuild - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600 - -gtk-qt-engine-trinity (1:0.8-1ubuntu2) intrepid; urgency=low - - * Moved Trinity to /opt/trinity - * Integrated properly with KDE4.2+ - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 01 March 2009 23:14:00 -0600 - -gtk-qt-engine-trinity (1:0.8-1ubuntu1) intrepid; urgency=low - - * Added -trinity suffix - - -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 04 Dec 2008 15:18:00 -0600 - -gtk-qt-engine (1:0.8-1ubuntu2) hardy; urgency=low - - * Added kubuntu_03_xembed_fix_flashplayer.diff: - - Part of the global fix to make konqueror work with - latest flashplayer - - -- Anthony Mercatante <tonio@ubuntu.com> Tue, 29 Jan 2008 11:54:58 +0100 - -gtk-qt-engine (1:0.8-1ubuntu1) hardy; urgency=low - - * Merge from debian unstable, remaining changes: - - Install files in /usr/share instead of /usr/local/share directory. - - Switched back to cdbs packaging for simple-patchsys - - Included kubuntu_02_clean_kmenu_systemsettings_inclusion.diff - - Included kubuntu_01_background_fix.diff - - Added gtk2-engines-gtk-qt back in - we need this to do the LTS-->LTS - transition - - Modify Maintainer value to match Debian-Maintainer-Field Spec - - -- Sarah Hobbs <hobbsee@ubuntu.com> Sun, 11 Nov 2007 23:11:32 +1100 - -gtk-qt-engine (1:0.8-1) unstable; urgency=low - - * New Upstream release, changes since the last SVN snapshot are: - - Fix corrupt scrollbar ends on Firefox and Eclipse in the Domino style - - Make buttons, checkboxes and radio buttons indicate keyboard focus - - Fix icon loading code when dealing with multiple inheritance - - Map more GTK icons - - Setting a font with bold or italic options now works correctly - - Fix a bug where menu checkmarks would be displayed as a series of - horizontal lines - - -- Bastian Venthur <venthur@debian.org> Tue, 30 Oct 2007 20:32:01 +0100 - -gtk-qt-engine (1:0.8~svn-rev36-2ubuntu2) gutsy; urgency=low - - * Added gtk2-engines-gtk-qt back in - we need this to do the LTS-->LTS - transition - - -- Sarah Hobbs <hobbsee@ubuntu.com> Thu, 31 May 2007 00:24:53 -0500 - -gtk-qt-engine (1:0.8~svn-rev36-2ubuntu1) gutsy; urgency=low - - * Merge from debian unstable, remaining changes: - - Install files in /usr/share instead of /usr/local/share directory. - - Switched back to cdbs packaging for simple-patchsys - - Included kubuntu_02_clean_kmenu_systemsettings_inclusion.diff - - Included kubuntu_01_background_fix.diff - * Modify Maintainer value to match Debian-Maintainer-Field Spec - - -- Sarah Hobbs <hobbsee@ubuntu.com> Fri, 18 May 2007 21:31:28 +1000 - -gtk-qt-engine (1:0.8~svn-rev36-2) unstable; urgency=low - - * Added dh_gtkmodules call to debian/rules (Closes: #419306) - - -- Bastian Venthur <venthur@debian.org> Tue, 17 Apr 2007 09:37:50 +0200 - -gtk-qt-engine (1:0.8~svn-rev36-1) unstable; urgency=low - - * New SVN snapshot - - Added Turkish translation - - Added Bulgarian translation - - Added Russian translation - - Fix compilation on GCC 4.3 (Closes: #417219), thanks again Martin! - * Dropped transitional package gtk2-engines-gtk-qt - * Don't ship files in /usr/lib64 on such archs anymore (Closes: #417044) - * Bumped gtk dependency (Closes: #419306) - - -- Bastian Venthur <venthur@debian.org> Sun, 15 Apr 2007 17:06:25 +0200 - -gtk-qt-engine (1:0.8~svn-rev31-3) unstable; urgency=low - - * Upload to unstable - - (Closes: #412279) "unusable with GTK+ 2.10" and many other bugs, - already fixed in experimental. - - -- Bastian Venthur <venthur@debian.org> Tue, 27 Feb 2007 13:17:34 +0100 - -gtk-qt-engine (1:0.8~svn-rev31-2) experimental; urgency=low - - * Added --as-needed CFLAG in order to reduce the dependencies - - -- Bastian Venthur <venthur@debian.org> Tue, 27 Feb 2007 12:09:36 +0100 - -gtk-qt-engine (1:0.8~svn-rev31-1) experimental; urgency=low - - * New SVN snapshot - - Added Italian translation - - Fix button appearance in the Motif Plus style - - -- Bastian Venthur <venthur@debian.org> Fri, 9 Feb 2007 13:17:22 +0100 - -gtk-qt-engine (1:0.8~svn-rev29-1) experimental; urgency=low - - * New SVN snapshot - - Merged gtk-qt-engine-small-pixmaps.patch from SuSe. - - Highlighted menu item are now always white. - - -- Bastian Venthur <venthur@debian.org> Mon, 15 Jan 2007 15:13:01 +0100 - -gtk-qt-engine (1:0.8~svn-rev27-1) experimental; urgency=low - - * New SVN snapshot - - Merged fix-iconpaths.patch from suse. This fixes icon loading issues - wit inherited icon themes. - - * Since gtk-qt-engine 0.8 will use cmake im closing libtoolbug. - (Closes: #342914) - - -- Bastian Venthur <venthur@debian.org> Thu, 4 Jan 2007 13:29:13 +0100 - -gtk-qt-engine (1:0.8~svn-rev26-1) experimental; urgency=low - - * New upstream SVN snapshot - - My toolbarfix.patch is now officially included, so removing it from - debian/patches. - - -- Bastian Venthur <venthur@debian.org> Fri, 8 Dec 2006 11:11:39 +0100 - -gtk-qt-engine (1:0.8~svn-rev25-2) experimental; urgency=low - - * Applied toolbarfix.patch in order to respect KDE's toolbar settings. - - -- Bastian Venthur <venthur@debian.org> Thu, 7 Dec 2006 12:44:35 +0100 - -gtk-qt-engine (1:0.8~svn-rev25-1) experimental; urgency=low - - * Snapshot from upstreams SVN, fixes many bugs including: - - Switch the buildsystem from autotools to CMake. CMake 2.4 is now - required to build the project. - - Fix scrollbar sliders in the Domino widget style - - Fix a bug that caused Qt colours not to be applied to GTK applications. - This fixes several graphical problems when using dark colour schemes. - (Closes: #395127) - - Fix a bug that would disable Bonobo support even when the correct - packages were installed - - The control center module will now write a configuration file that will - only affect applications inside KDE. Applications running in GNOME can - be themed separately using the GNOME tools. (Closes: #296657) - - Add a setting for emacs keyboard shortcuts - - Draw default buttons properly. - - Provide a fallback icon even when one of the right size doesn't exist - - Fix invalid CSS comments. - - When the Qt theme can't be found, display a dialog allowing the user to - modify the search paths. - - Respect KDE's "Show icons on buttons" setting - - * Re-enabled .desktop file (Closes: #398941) - - -- Bastian Venthur <venthur@debian.org> Wed, 6 Dec 2006 12:07:45 +0100 - -gtk-qt-engine (1:0.7-4) unstable; urgency=low - - * Removed debian/gtk-qt-engine.dirs since it's not needed anymore - - -- Bastian Venthur <venthur@debian.org> Thu, 30 Nov 2006 09:08:59 +0100 - -gtk-qt-engine (1:0.7-3) unstable; urgency=low - - * Added Debian revision to conflics- and replaces-line in order to resolve - File conflict (Closes: #397993). Many thanks to Stephen Gran. - - * Updated upstreams hompage URL - - -- Bastian Venthur <venthur@debian.org> Sun, 12 Nov 2006 12:30:26 +0100 - -gtk-qt-engine (1:0.7-2) unstable; urgency=low - - * The please don't kill me release - * Renamed the package to gtk-qt-engine - - * Updated maintainer field - - -- Bastian Venthur <venthur@debian.org> Wed, 18 Oct 2006 19:45:28 +0200 - -gtk-qt-engine (1:0.7-1) unstable; urgency=low - - * New upstream release (Closes: #378892), most important changes: - - Fix toolbar borders in styles other than Keramik - - Allow for inverted sliders - - Fix menu backgrounds with Baghira - - Control Module: i18n support - - Fix bug where bottoms of scrollbars wouldn't be displayed - (Closes: #315119) - - Fix appearance of progress bars in Firefox when using the Alloy style - - Fix bug in Firefox where progress bars would "leak" outside their box - - Control Module: add utility to fix Firefox scrollbar buttons - - Fix bug that would make XFCE 4.2's settings application fail to start - - Fix crash bug in gaim's file transfer window - - Support coloured buttons - - Only respond to KIPC StyleChanged messages - - Cache pixmaps created in setColors() and setMenuBackground(). This fixes - a large memory leak, and improves app startup speeds and responsiveness. - (Closes: #300261) - - Ensure tooltip text is always black - - The theme no longer tries to override widget-specific colours set by - applications or user RC files - - Control Module: fix blank entry in style list - - Add a workaround for a bug in OpenOffice where menus and toolbars were - drawn incorrectly. - - - Other bugs dissapeared in the new version: - workrave does not crash anymore on micro-breaks (Closes: 354299) - GTK apps don't crash anymore on font change (Closes: #295929) - - * New Maintainer (Closes: #379956) - - introduced epoch to reflect upstreams versioning scheme correctly - - switched away from cdbs - - bumped standards version - - removed superfluous build-depends - - -- Bastian Venthur <mail@venthur.de> Thu, 27 Jul 2006 18:39:40 +0200 - -gtk-qt-engine (0.71~svn20070224-0ubuntu3) feisty; urgency=low - - * Install files in /usr/share instead of /usr/local/share directory. - Closes LP: #94353 - - -- Luka Renko <lure@ubuntu.com> Fri, 30 Mar 2007 22:17:03 +0200 - -gtk-qt-engine (0.71~svn20070224-0ubuntu2) feisty; urgency=low - - * Fixed kubuntu_03_clean_kmenu.diff for systemsettings inclusion - Desktop file goes in subdirectory "appearance"instead of the standard - "look and feel" directory - - -- Anthony Mercatante <tonio@ubuntu.com> Fri, 23 Feb 2007 23:58:21 +0100 - -gtk-qt-engine (0.71~svn20070224-0ubuntu1) feisty; urgency=low - - * New SVN snapshot. Closes Malone #36256 - * Removed obsolete kubuntu_02_icon_theme.diff - * Fixed kubuntu_03_clean_kmenu.diff for systemsettings inclusion - and renamed to kubuntu_02_clean_kmenu_systemsettings_inclusion.diff - - -- Anthony Mercatante <tonio@ubuntu.com> Fri, 23 Feb 2007 11:49:01 +0100 - -gtk-qt-engine (0.70-4ubuntu3) feisty; urgency=low - - * Inclue kubuntu_03_clean_kmenu.diff to hide the kcm entry in K menu - * Switched back to cdbs packaging for simple-patchsys - - -- Anthony Mercatante <tonio@ubuntu.com> Fri, 06 Jan 2007 02:16:07 +0100 - -gtk-qt-engine (0.70-4ubuntu2) feisty; urgency=low - - * Include Debian entries in changelog - * Remove shlib from depends, to stop it bringing in gtk depends to Debian - - -- Jonathan Riddell <jriddell@ubuntu.com> Thu, 4 Jan 2007 14:29:07 +0000 - -gtk-qt-engine (0.70-4ubuntu1) feisty; urgency=low - - * Merge packaging with debian - - -- Anthony Mercatante <tonio@ubuntu.com> Fri, 14 Dec 2006 13:51:06 +0100 - -gtk-qt-engine (1:0.7-4) unstable; urgency=low - - * Removed debian/gtk-qt-engine.dirs since it's not needed anymore - - -- Bastian Venthur <venthur@debian.org> Thu, 30 Nov 2006 09:08:59 +0100 - -gtk-qt-engine (1:0.7-3) unstable; urgency=low - - * Added Debian revision to conflics- and replaces-line in order to resolve - File conflict (Closes: #397993). Many thanks to Stephen Gran. - - * Updated upstreams hompage URL - - -- Bastian Venthur <venthur@debian.org> Sun, 12 Nov 2006 12:30:26 +0100 - -gtk-qt-engine (1:0.7-2) unstable; urgency=low - - * The please don't kill me release - * Renamed the package to gtk-qt-engine - - * Updated maintainer field - - -- Bastian Venthur <venthur@debian.org> Wed, 18 Oct 2006 19:45:28 +0200 - -gtk-qt-engine (1:0.7-1) unstable; urgency=low - - * New upstream release (Closes: #378892), most important changes: - - Fix toolbar borders in styles other than Keramik - - Allow for inverted sliders - - Fix menu backgrounds with Baghira - - Control Module: i18n support - - Fix bug where bottoms of scrollbars wouldn't be displayed - (Closes: #315119) - - Fix appearance of progress bars in Firefox when using the Alloy style - - Fix bug in Firefox where progress bars would "leak" outside their box - - Control Module: add utility to fix Firefox scrollbar buttons - - Fix bug that would make XFCE 4.2's settings application fail to start - - Fix crash bug in gaim's file transfer window - - Support coloured buttons - - Only respond to KIPC StyleChanged messages - - Cache pixmaps created in setColors() and setMenuBackground(). This fixes - a large memory leak, and improves app startup speeds and responsiveness. - (Closes: #300261) - - Ensure tooltip text is always black - - The theme no longer tries to override widget-specific colours set by - applications or user RC files - - Control Module: fix blank entry in style list - - Add a workaround for a bug in OpenOffice where menus and toolbars were - drawn incorrectly. - - - Other bugs dissapeared in the new version: - workrave does not crash anymore on micro-breaks (Closes: 354299) - GTK apps don't crash anymore on font change (Closes: #295929) - - * New Maintainer (Closes: #379956) - - introduced epoch to reflect upstreams versioning scheme correctly - - switched away from cdbs - - bumped standards version - - removed superfluous build-depends - - -- Bastian Venthur <mail@venthur.de> Thu, 27 Jul 2006 18:39:40 +0200 - -gtk-qt-engine (0.70-0ubuntu1) edgy; urgency=low - - * New upstream release - * Switched to debhelper 5 - * Removed obsolete patches kubuntu_01_colourmapless_pixmap.diff, - kubuntu_02_xdg_menu.diff, kubuntu_04_menubg_colormap_fix.diff, - kubuntu_06_fix_slider.diff and kubuntu_07_scrollbars.diff - - -- Anthony Mercatante <tonio@ubuntu.com> Fri, 7 Jul 2006 19:02:06 +0200 - -gtk-qt-engine (0.60-3) unstable; urgency=low - - * Orphaning this package, changed maintainer to QA Group. - * Thanks to Luk Claes for the NMU and FTBFS patch. - * Fixed missing commas in RC file (closes: #266521). - - Thanks to Jan De Luyck for the patch. - * Bumped Standards-Version to 3.6.2 (no changes). - - -- Christoffer Sawicki <qerub@home.se> Thu, 20 Apr 2006 17:19:00 +0200 - -gtk-qt-engine (0.60-2.1ubuntu1) edgy; urgency=low - - * Merge with Debian - - -- Jonathan Riddell <jriddell@ubuntu.com> Fri, 7 Jul 2006 10:44:08 +0000 - -gtk-qt-engine (0.60-2.1) unstable; urgency=high - - * Non-maintainer upload. - * Fix FTBFS by touching configure in clean target (Closes: #350141). - - -- Luk Claes <luk@debian.org> Wed, 1 Mar 2006 09:00:23 +0100 - -gtk-qt-engine (0.60-2) unstable; urgency=low - - * Thanks to Adeodato for the NMU. - * Fix black menu backgrounds (closes: #343658). - * Updated FSF's address in debian/copyright. - * Updated libtool (closes: #342914). - - Added KDE core and Qt to kcm_kcmgtk_la_LIBADD. - * Added libqt3-mt-dev to Build-Depends. - * Thanks to Kurt Roeckx for helping me out. - - -- Christoffer Sawicki <qerub@home.se> Mon, 26 Dec 2005 01:01:37 +0100 - -gtk-qt-engine (0.60-1.1ubuntu7) dapper; urgency=low - - * Don't depend on a hardcoded libc6, since that makes us uninstallable - on ia64, and we already depend on other libraries that depend on libc - correctly. This is all just a really hideous hack and should be - re-though after the dapper release is safely out the door. - - -- Adam Conrad <adconrad@ubuntu.com> Mon, 29 May 2006 00:43:06 +1000 - -gtk-qt-engine (0.60-1.1ubuntu6) dapper; urgency=low - - * Don't use shlib depends, stop requiring gtk - - -- Jonathan Riddell <jriddell@ubuntu.com> Tue, 25 Apr 2006 21:47:25 +0100 - -gtk-qt-engine (0.60-1.1ubuntu5) dapper; urgency=low - - * Add kubuntu_06_fix_slider.diff from SuSE - * Add kubuntu_07_scrollbars.diff closes Malone #38872 - - -- Jonathan Riddell <jriddell@ubuntu.com> Mon, 24 Apr 2006 17:57:41 +0100 - -gtk-qt-engine (0.60-1.1ubuntu4) dapper; urgency=low - - * Add kubuntu_05_icon_theme.patch fix KDE icon loading - * Patch by Anthony Mercatante <tonio@ubuntu.com> - - -- Jonathan Riddell <jriddell@ubuntu.com> Mon, 27 Feb 2006 15:15:06 +0000 - -gtk-qt-engine (0.60-1.1ubuntu3) dapper; urgency=low - - * Rebuild because libXft.la is gone - - -- Stephan Hermann <sh@sourcecode.de> Sat, 14 Jan 2006 18:00:57 +0100 - -gtk-qt-engine (0.60-1.1ubuntu2) dapper; urgency=low - - * Rebuild for latest Qt - - -- Jonathan Riddell <jriddell@ubuntu.com> Sun, 18 Dec 2005 22:45:42 +0000 - -gtk-qt-engine (0.60-1.1ubuntu1) dapper; urgency=low - - * resyncronize with debian - * ubuntu_03_background_fix.patch (from upstream #4082) - * ubuntu_04_menubg_colormap_fix.patch (from upstream #4276) - - -- Oliver Grawert <ogra@ubuntu.com> Wed, 30 Nov 2005 21:00:39 +0100 - -gtk-qt-engine (0.60-1.1) unstable; urgency=low - - * NMU at maintainer's request. - * Rebuild against C++ transitioned tdelibs; no source changes needed. - - -- Adeodato Simó <asp16@alu.ua.es> Wed, 07 Sep 2005 16:45:32 +0200 - -gtk-qt-engine (0.60-1ubuntu5) breezy; urgency=low - - * Edit rules to use XDG menu instead of applnk menu - * Add kubuntu_02_xdg_menu.diff to fix the XDG .desktop file - - -- Jonathan Riddell <jriddell@ubuntu.com> Sat, 24 Sep 2005 19:00:39 +0100 - -gtk-qt-engine (0.60-1ubuntu4) breezy; urgency=low - - * Add kubuntu_01_colourmapless_pixmap.diff fix GTK cairo crashes - * Alter debian/rules to use debian/patches - - -- Jonathan Riddell <jriddell@ubuntu.com> Fri, 9 Sep 2005 23:59:55 +0100 - -gtk-qt-engine (0.60-1ubuntu3) breezy; urgency=low - - * Use explicit depends instead of shlibs. Remove gtk dependency. - - -- Jonathan Riddell <jriddell@ubuntu.com> Wed, 6 Jul 2005 17:33:55 +0000 - -gtk-qt-engine (0.60-1ubuntu2) breezy; urgency=low - - * Rebuild for new C++ ABI - - -- Matthias Klose <doko@ubuntu.com> Mon, 6 Jun 2005 16:34:57 +0000 - -gtk-qt-engine (0.60-1ubuntu1) hoary; urgency=low - - * New upstream release - - -- Andreas Mueller <amu@ubuntu.com> Thu, 10 Mar 2005 10:14:37 +0100 - -gtk-qt-engine (0.60-1.1) unstable; urgency=low - - * NMU at maintainer's request. - * Rebuild against C++ transitioned tdelibs; no source changes needed. - - -- Adeodato Simó <asp16@alu.ua.es> Wed, 07 Sep 2005 16:45:32 +0200 - -gtk-qt-engine (0.60-1) unstable; urgency=low - - * New upstream release. - - Removes crashes with certain apps (closes: #286436). - * Clarified some changelog entries. - * Versioned debhelper Build-Depend - - -- Christoffer Sawicki <qerub@home.se> Sun, 2 Jan 2005 22:24:09 +0100 - -gtk-qt-engine (0.50+cvs20041221-1) staging; urgency=low - - * Checkout from CVS. - * Removed parts of the diff, now upstream. - - -- Christoffer Sawicki <qerub@home.se> Tue, 21 Dec 2004 23:42:01 +0100 - -gtk-qt-engine (0.50-3) staging; urgency=low - - * Upload to new Kalyxo archive. - - -- Christoffer Sawicki <qerub@home.se> Mon, 6 Dec 2004 14:58:13 +0100 - -gtk-qt-engine (0.50-2) unstable; urgency=low - - * Ran src/gtkrc through dos2unix. - * Minor grammatical changes to debian/changelog. - * Remove kcmgtk-xdg.desktop from package. - * Added note about the KDE dependency to package description. - * Cleaned up kcmgtk.desktop. - - -- Christoffer Sawicki <qerub@home.se> Tue, 17 Aug 2004 21:03:03 +0200 - -gtk-qt-engine (0.50-1) unstable; urgency=low - - * Added some spaces in the description. - * New upstream version. - - -- Christoffer Sawicki <qerub@home.se> Mon, 2 Aug 2004 17:05:17 +0200 - -gtk-qt-engine (0.41-3) unstable; urgency=low - - * Improved description. - * Removed README.Debian, not needed anymore. - * Don't install empty files to /usr/share/doc. - * Changed section from x11 to kde. - - -- Christoffer Sawicki <qerub@home.se> Sat, 19 Jun 2004 22:03:50 +0200 - -gtk-qt-engine (0.41-2) unstable; urgency=low - - * Rebuilt for unstable. Excuse me. - * Added tdelibs4-dev to Build-Depends. - - -- Christoffer Sawicki <qerub@home.se> Wed, 16 Jun 2004 20:51:15 +0200 - -gtk-qt-engine (0.41-1) unstable; urgency=low - - * New upstream release. - - -- Christoffer Sawicki <qerub@home.se> Wed, 16 Jun 2004 17:45:16 +0200 - -gtk-qt-engine (0.3-1) unstable; urgency=low - - * New versioning policy. - * Upload to the new archive. - - -- Christoffer Sawicki <qerub@home.se> Mon, 26 Apr 2004 19:20:52 +0200 - -gtk-qt-engine (0.3-0qerub3) workstation-unstable; urgency=low - - * Small cleanups in debian/ files. - - -- Christoffer Sawicki <qerub@home.se> Wed, 18 Feb 2004 12:30:59 +0100 - -gtk-qt-engine (0.3-0qerub2) workstation-unstable; urgency=low - - * Added an extra note to README.Debian about segfaulting. - * Changed URL in debian/copyright. - - -- Christoffer Sawicki <qerub@home.se> Wed, 18 Feb 2004 11:38:45 +0100 - -gtk-qt-engine (0.3-0qerub1) workstation-unstable; urgency=low - - * New upstream release! - * Added Build-Depends. - - -- Christoffer Sawicki <qerub@home.se> Mon, 16 Feb 2004 19:29:20 +0100 - -gtk-qt-engine (0.2-0qerub2) workstation-unstable; urgency=low - - * Changed target to workstation-unstable (for upload to kde-debian.org). - - -- Christoffer Sawicki <qerub@home.se> Tue, 27 Jan 2004 21:50:25 +0100 - -gtk-qt-engine (0.2-0qerub1) unstable; urgency=low - - * Initial release. - - -- Christoffer Sawicki <qerub@home.se> Wed, 7 Jan 2004 16:28:00 +0100 - diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/compat b/ubuntu/precise/applications/gtk-qt-engine/debian/compat deleted file mode 100644 index 7ed6ff82d..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/control b/ubuntu/precise/applications/gtk-qt-engine/debian/control deleted file mode 100644 index a1529b6d8..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/control +++ /dev/null @@ -1,23 +0,0 @@ -Source: gtk-qt-engine-trinity -Section: tde -Priority: optional -Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> -XSBC-Original-Maintainer: Bastian Venthur <venthur@debian.org> -Build-Depends: debhelper (>= 5.0), quilt, cdbs, tdelibs14-trinity-dev, libgtk2.0-dev, cmake, libgtk2.0-dev (>= 2.10.1) -Standards-Version: 3.8.4 - -Package: gtk-qt-engine-trinity -Architecture: any -Provides: gtk2-engines-gtk-qt-trinity -Replaces: gtk-qt-engine-kde3 (<< 4:14.0.0~), gtk-qt-engine-trinity (<< 4:14.0.0~) -Breaks: gtk-qt-engine-kde3 (<< 4:14.0.0~), gtk-qt-engine-trinity (<< 4:14.0.0~) -Depends: ${shlibs:Depends}, ${misc:Depends} -Recommends: gtk3-tqt-engine -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 - that calls Qt to do the actual drawing. This makes your GTK 2 applications - look almost like real Qt applications and gives you a more unified desktop - experience. - . - Please note that this package is targeted at Trinity users and therefore provides - a way to configure it from within KControl. diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/copyright b/ubuntu/precise/applications/gtk-qt-engine/debian/copyright deleted file mode 100644 index aa4e449ee..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/copyright +++ /dev/null @@ -1,23 +0,0 @@ -This package was debianized by Christoffer Sawicki <qerub@home.se> on -Wed, 7 Jan 2004 16:46:04 +0100. - -Homepage: http://gtk-qt.ecs.soton.ac.uk/ - -Upstream author: David Sansome <me@davidsansome.com> - -Copyright: - This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. - - This package is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-2'. diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/gtk-qt-engine-trinity.docs b/ubuntu/precise/applications/gtk-qt-engine/debian/gtk-qt-engine-trinity.docs deleted file mode 100644 index 5502ed8f4..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/gtk-qt-engine-trinity.docs +++ /dev/null @@ -1,3 +0,0 @@ -NEWS -README -TODO diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/gtk-qt-engine.rc.sh b/ubuntu/precise/applications/gtk-qt-engine/debian/gtk-qt-engine.rc.sh deleted file mode 100644 index b477f5ce2..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/gtk-qt-engine.rc.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -# Make sure our customised gtkrc file is loaded. -export GTK2_RC_FILES=$HOME/.gtkrc-2.0-kde4 diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/patches/series b/ubuntu/precise/applications/gtk-qt-engine/debian/patches/series deleted file mode 100644 index e69de29bb..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/patches/series +++ /dev/null diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/rules b/ubuntu/precise/applications/gtk-qt-engine/debian/rules deleted file mode 100755 index 0aa6ab9a6..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/rules +++ /dev/null @@ -1,37 +0,0 @@ -#!/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=/opt/trinity/lib:debian/tmp/opt/trinity/lib -else -LD_LIBRARY_PATH += :/opt/trinity/lib: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/patchsys-quilt.mk -include /usr/share/cdbs/1/rules/utils.mk -include debian/cdbs/debian-qt-kde.mk - -DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/tde -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 - -DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_INSTALL_PREFIX="/opt/trinity" -DCONFIG_INSTALL_DIR="/etc/trinity" -DSYSCONF_INSTALL_DIR="/etc/trinity" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/tde" -DAUTODETECT_QT_DIRS="ON" -DCMAKE_VERBOSE_MAKEFILE="ON" -DBUILD_ALL="ON" -DCMAKE_SKIP_RPATH="OFF" \ --DCMAKE_BUILD_TYPE=RelWithDebInfo - -DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ - && echo xz || echo bzip2) - -binary-install/gtk-qt-engine-trinity:: - mkdir -p $(CURDIR)/debian/gtk-qt-engine-trinity/opt/trinity/share/kgtk/ - cp -Rp $(CURDIR)/debian/.gtkrc-2.0-kde4 $(CURDIR)/debian/gtk-qt-engine-trinity/opt/trinity/share/kgtk/ - cp -Rp $(CURDIR)/debian/.gtkrc-2.0-kde-kde4 $(CURDIR)/debian/gtk-qt-engine-trinity/opt/trinity/share/kgtk/ - cp -Rp $(CURDIR)/debian/gtk-qt-engine.rc.sh $(CURDIR)/debian/gtk-qt-engine-trinity/opt/trinity/share/kgtk/ diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/source/format b/ubuntu/precise/applications/gtk-qt-engine/debian/source/format deleted file mode 100644 index 163aaf8d8..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (quilt) diff --git a/ubuntu/precise/applications/gtk-qt-engine/debian/source/options b/ubuntu/precise/applications/gtk-qt-engine/debian/source/options deleted file mode 100644 index 72f1f5450..000000000 --- a/ubuntu/precise/applications/gtk-qt-engine/debian/source/options +++ /dev/null @@ -1,6 +0,0 @@ -# Use xz instead of gzip -compression = "xz" -compression-level = 9 - -# Don't run differences -diff-ignore = .* |