summaryrefslogtreecommitdiffstats
path: root/ubuntu/_base/applications/graphics/gwenview
diff options
context:
space:
mode:
Diffstat (limited to 'ubuntu/_base/applications/graphics/gwenview')
-rw-r--r--ubuntu/_base/applications/graphics/gwenview/debian/cdbs/debian-tde.mk251
-rw-r--r--ubuntu/_base/applications/graphics/gwenview/debian/cdbs/versions.pl19
-rw-r--r--ubuntu/_base/applications/graphics/gwenview/debian/changelog367
-rw-r--r--ubuntu/_base/applications/graphics/gwenview/debian/compat1
-rw-r--r--ubuntu/_base/applications/graphics/gwenview/debian/control33
-rw-r--r--ubuntu/_base/applications/graphics/gwenview/debian/copyright87
-rw-r--r--ubuntu/_base/applications/graphics/gwenview/debian/menu7
-rw-r--r--ubuntu/_base/applications/graphics/gwenview/debian/patches/series0
-rwxr-xr-xubuntu/_base/applications/graphics/gwenview/debian/rules19
-rw-r--r--ubuntu/_base/applications/graphics/gwenview/debian/source/format1
-rw-r--r--ubuntu/_base/applications/graphics/gwenview/debian/source/options6
11 files changed, 791 insertions, 0 deletions
diff --git a/ubuntu/_base/applications/graphics/gwenview/debian/cdbs/debian-tde.mk b/ubuntu/_base/applications/graphics/gwenview/debian/cdbs/debian-tde.mk
new file mode 100644
index 000000000..aba508624
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/cdbs/debian-tde.mk
@@ -0,0 +1,251 @@
+# -*- mode: makefile; coding: utf-8 -*-
+# Copyright © 2003 Christopher L Cheney <ccheney@debian.org>
+# Copyright © 2019 TDE Team
+# Description: A class for TDE packages; sets TDE 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.
+
+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
+
+# for dh_icons
+CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4)
+
+# Note: This _must_ be included before autotools.mk, or it won't work.
+common-configure-arch common-configure-indep:: debian/stamp-cvs-make
+debian/stamp-cvs-make:
+ifndef _cdbs_class_cmake
+ cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
+ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" ""
+ cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
+endif
+ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" ""
+ cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh
+endif
+ $(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist;
+endif
+ touch debian/stamp-cvs-make
+
+include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
+
+ifdef _cdbs_tarball_dir
+DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE)
+else
+DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE)
+endif
+
+ifndef _cdbs_class_cmake
+include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix)
+endif
+
+ifdef _cdbs_class_cmake
+ifneq "$(wildcard /usr/bin/ninja)" ""
+MAKE = ninja -v
+DEB_MAKE_ENVVARS += DESTDIR=$(DEB_DESTDIR)
+DEB_MAKE_INSTALL_TARGET = install
+DEB_CMAKE_NORMAL_ARGS += -GNinja
+endif
+endif
+
+ifndef _cdbs_rules_patchsys_quilt
+DEB_PATCHDIRS := debian/patches/common debian/patches
+endif
+
+export kde_cgidir = \$${libdir}/cgi-bin
+export kde_confdir = \$${sysconfdir}/trinity
+export kde_htmldir = \$${datadir}/doc/tde/HTML
+
+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)
+
+DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin
+DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include"
+DEB_COMPRESS_EXCLUDE_ALL += .dcl .docbook -license .tag .sty .el
+
+# The default gzip compressor has been changed in dpkg >= 1.17.0.
+deb_default_compress = $(shell LANG=C dpkg-deb --version | head -n1 | \
+ sed -e "s|.*version ||" -e "s| .*||" | \
+ xargs -r dpkg --compare-versions 1.17.0 lt \
+ && echo xz || echo gzip)
+ifeq ($(deb_default_compress),gzip)
+DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
+ && echo xz || echo bzip2)
+endif
+
+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
+
+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
+
+DEB_BUILD_PARALLEL ?= true
+
+cdbs_configure_flags += \
+ --with-qt-dir=/usr/share/qt3 \
+ --disable-rpath \
+ --with-xinerama \
+ $(cdbs_kde_enable_final) \
+ $(cdbs_kde_enable_debug)
+
+
+# This is a convenience target for calling manually.
+# It's not part of the build process.
+buildprep: clean apply-patches
+ifndef _cdbs_class_cmake
+ $(MAKE) -f admin/Makefile.common dist
+endif
+ debian/rules clean
+
+.tdepkginfo:
+ echo "# TDE package information" >.tdepkginfo
+ dpkg-parsechangelog | sed -n "s|^Source: |Name: |p" >>.tdepkginfo
+ dpkg-parsechangelog | sed -n "s|^Version: |Version: |p" >>.tdepkginfo
+ date +"DateTime: %m/%d/%Y %H:%M" -u -d "$$(dpkg-parsechangelog | sed -n 's|^Date: ||p')" >>.tdepkginfo
+
+post-patches:: .tdepkginfo
+
+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 )
+ # update multi-arch path in install files
+ ls -d debian/* | \
+ grep -E "(install|links)$$" | \
+ while read a; do \
+ [ -d $$a ] || [ -f $$a.arch ] || \
+ ! grep -q "\$$(DEB_HOST_MULTIARCH)" $$a || \
+ sed -i.arch "s|\$$(DEB_HOST_MULTIARCH)|$(DEB_HOST_MULTIARCH)|g" $$a; \
+ done
+
+clean::
+ rm -rf debian/man/out
+ -rmdir debian/man
+ rm -f debian/stamp-man-pages
+ rm -rf debian/shlibs-check
+ # revert multi-arch path in install files
+ ls -d debian/* | \
+ grep -E "(install|links)$$" | \
+ while read a; do \
+ [ ! -f $$a.arch ] || \
+ mv $$a.arch $$a; \
+ done
+
+$(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
+ 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
+ if test -d debian/$(cdbs_curpkg)/opt/trinity/lib && \
+ test $$(find debian/$(cdbs_curpkg)/opt/trinity/lib -name "*.so" | wc -l) -gt 0; then \
+ echo "# Triggers added by cdbs/debian-tde.mk" >> debian/.debhelper/generated/$(cdbs_curpkg)/triggers; \
+ echo "activate-noawait ldconfig" >> debian/.debhelper/generated/$(cdbs_curpkg)/triggers; \
+ fi
+
+binary-install/$(DEB_SOURCE_PACKAGE)-doc-html::
+ set -e; \
+ for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en; find . -name index.docbook`; do \
+ pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \
+ echo Building $$pkg HTML docs...; \
+ mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
+ cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
+ /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en/$$pkg/index.docbook; \
+ done
+ for pkg in $(DOC_HTML_PRUNE) ; do \
+ rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
+ done
+
+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),+DESTDIR=$(DEB_DESTDIR) $(DEB_MAKE_INVOKE) install-apidox)
+
+cleanbuilddir::
+ -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR))
+
+clean::
+ifndef _cdbs_class_cmake
+ if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \
+ cd $(DEB_SRCDIR); \
+ find . -name Makefile.in -print | \
+ xargs --no-run-if-empty rm -f; \
+ rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \
+ configure configure.files configure.in stamp-h.in \
+ subdirs; \
+ fi
+endif
+ rm -f .tdepkginfo
+ rm -f debian/stamp-kde-apidox
+ rm -f debian/stamp-cvs-make
+
+endif
diff --git a/ubuntu/_base/applications/graphics/gwenview/debian/cdbs/versions.pl b/ubuntu/_base/applications/graphics/gwenview/debian/cdbs/versions.pl
new file mode 100644
index 000000000..1b110f7af
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/cdbs/versions.pl
@@ -0,0 +1,19 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+
+my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`;
+my ($version3, $version3_next);
+my ($version2, $version2_next);
+
+($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/;
+($version2 = $version3) =~ s/\.[^.]+$//;
+
+($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e;
+($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e;
+
+print "TDE-Version3=$version3\n";
+print "TDE-Version2=$version2\n";
+print "TDE-Next-Version3=$version3_next\n";
+print "TDE-Next-Version2=$version2_next\n";
diff --git a/ubuntu/_base/applications/graphics/gwenview/debian/changelog b/ubuntu/_base/applications/graphics/gwenview/debian/changelog
new file mode 100644
index 000000000..8b14ebe9b
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/changelog
@@ -0,0 +1,367 @@
+gwenview-trinity (4:1.4.2-8) karmic; urgency=low
+
+ * Karmic rebuild
+
+ -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 Jul 2009 16:08:00 -0600
+
+gwenview-trinity (4:1.4.2-6) jaunty; urgency=low
+
+ * Jaunty rebuild
+
+ -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 28 April 2009 20:25:00 -0600
+
+gwenview-trinity (4:1.4.2-5) intrepid; urgency=low
+
+ * Moved Trinity to /opt/trinity
+ * Integrated properly with KDE4.2+
+
+ -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 05 March 2009 01:11:00 -0600
+
+gwenview-trinity (4:1.4.2-4) intrepid; urgency=low
+
+ * Added -trinity suffix
+
+ -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 04 Nov 2008 06:06:15 -0600
+
+gwenview (1.4.2-4) unstable; urgency=low
+
+ * Include patch (not yet committed upstream) that fixes crashes on images
+ with incorrect EXIF information (see http://bugs.kde.org/159522). Thanks
+ to Achim Bohnet for the tip. (Closes: #471742, #471847)
+ * Include further post-release commits to Gwenview's KDE 3 branch:
+ + Fix the loading of 1bpp images, like some BMPs.
+ * Update doc-base file to fix encoding and section.
+
+ -- Christopher Martin <chrsmrtn@debian.org> Fri, 21 Mar 2008 11:54:45 -0400
+
+gwenview (1.4.2-3) unstable; urgency=low
+
+ * Update to Debian Policy 3.7.3. Move Homepage from the package
+ description to a regular debian/control field.
+ * Update debhelper compatibility level to 6. No changes.
+ * Convert debian/copyright to UTF-8.
+
+ * Include post-release commits to Gwenview's KDE 3 branch:
+ + Fix GIMP startup from the External Tools menu (to get this to take
+ effect, users may have delete $HOME/.kde/share/apps/gwenview/tools).
+ + Fix the slideshow icon in the configuration window.
+
+ -- Christopher Martin <chrsmrtn@debian.org> Sun, 13 Jan 2008 14:32:26 -0500
+
+gwenview (1.4.2-2) unstable; urgency=low
+
+ * Remove some unnecessary lintian overrides, now that lintian has been fixed
+ with respect to KDE .desktop files.
+
+ -- Christopher Martin <chrsmrtn@debian.org> Sun, 28 Oct 2007 00:13:27 -0400
+
+gwenview (1.4.2-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Christopher Martin <chrsmrtn@debian.org> Mon, 17 Sep 2007 19:31:17 -0400
+
+gwenview (1.4.1-1) unstable; urgency=low
+
+ * New upstream release, uploaded to unstable.
+
+ -- Christopher Martin <chrsmrtn@debian.org> Sun, 26 Nov 2006 18:41:39 -0500
+
+gwenview (1.4.0-1) experimental; urgency=low
+
+ * Translations are now split-out into gwenview-i18n. Be sure to install that
+ package if you use a non-en_US desktop.
+
+ -- Christopher Martin <chrsmrtn@debian.org> Sat, 21 Oct 2006 14:01:46 -0400
+
+gwenview (1.4.0~debian.1-1) unstable; urgency=low
+
+ * New upstream release.
+ + Upstream now splits the translations out into their own tarball.
+ This is by no means a bad thing, but to avoid having a package stuck
+ in NEW this close to a release, I'm gluing them back in for the
+ moment. Once a releasable package is in Etch, I'll adopt upstream's
+ practices. Hence the wacky package version.
+ + Fixes focus switching. (Closes: #301812)
+
+ * Clarify the package description, as displaying EXIF tags don't require
+ kdegaphics-kfile-plugins (but other features still do). (Closes: #368809)
+
+ * This rebuild eliminates all references to obsolete libX*.la files.
+ (Closes: #381323)
+
+ -- Christopher Martin <chrsmrtn@debian.org> Mon, 18 Sep 2006 22:02:27 -0400
+
+gwenview (1.3.1-3) unstable; urgency=low
+
+ * Clarify the package description, as merely editing EXIF comments doesn't
+ strictly require tdegraphics-tdefile-plugins. (Closes: #368809)
+
+ -- Christopher Martin <chrsmrtn@debian.org> Sun, 28 May 2006 11:37:27 -0400
+
+gwenview (1.3.1-2) unstable; urgency=low
+
+ * Add a patch that should fix a build failure on ARM, due
+ to a quirk of its assembler spec.
+
+ -- Christopher Martin <chrsmrtn@debian.org> Wed, 7 Dec 2005 08:41:11 -0500
+
+gwenview (1.3.1-1) unstable; urgency=low
+
+ * Minor upstream update.
+ * Rebuild against tdelibs4c2a.
+ * Bump DH_COMPAT to 5. No changes required.
+
+ -- Christopher Martin <chrsmrtn@debian.org> Mon, 5 Dec 2005 07:46:53 -0500
+
+gwenview (1.3.0-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Christopher Martin <chrsmrtn@debian.org> Thu, 13 Oct 2005 15:49:58 -0400
+
+gwenview (1.2.0-2) unstable; urgency=low
+
+ * Re-package using CDBS.
+ * Re-build for the gcc 4.0 C++ ABI transition.
+ * Rebuild against KDE 3.4. The new trash system is now supported.
+ (Closes: #318477)
+ * Sync with the 1.2 branch, pulling in a number of minor fixes.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Wed, 31 Aug 2005 13:20:56 -0400
+
+gwenview (1.2.0-1) unstable; urgency=low
+
+ * New upstream release.
+ + Fixes crashes when using "Back" to navigate. (Closes: #301811)
+ * Enable KIPI support.
+ * Add a doc-base file for the handbook.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Wed, 6 Apr 2005 11:33:06 -0400
+
+gwenview (1.1.8+1.2.0pre4-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Sat, 19 Mar 2005 14:37:14 -0500
+
+gwenview (1.1.8+1.2.0pre2-1) unstable; urgency=low
+
+ * New upstream release.
+ + New Gwenview handbook.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Sun, 13 Feb 2005 20:51:25 -0500
+
+gwenview (1.1.8+1.2.0pre1-1) unstable; urgency=low
+
+ * New upstream release.
+ + Fixes crash when double-clicking on an image using the konqueror kpart.
+ (Closes: #290097)
+ + Gwenview is now a tdeinit module - added appropriate lintian override.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Wed, 26 Jan 2005 09:45:17 -0500
+
+gwenview (1.1.8-1) unstable; urgency=low
+
+ * New upstream release.
+ * Minor packaging updates and cleanups to debian/rules.
+ * Fix debian/copyright GPL address: point to GPL-2, not the symlink
+ to the latest GPL version.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Mon, 10 Jan 2005 15:51:46 -0500
+
+gwenview (1.1.7-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Mon, 20 Dec 2004 16:16:45 -0500
+
+gwenview (1.1.6-1) unstable; urgency=low
+
+ * New upstream release.
+ + Fixes frequent crashes when altering images. (Closes: #266302)
+ + libjpeg-progs is no longer required for lossless JPEG transforms, as this
+ functionality is now built-in.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Thu, 28 Oct 2004 17:39:51 -0400
+
+gwenview (1.1.5-1) unstable; urgency=low
+
+ * New upstream release.
+ + Rewrote the manpage from scratch; included by upstream. It now replaces
+ the README.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Wed, 22 Sep 2004 08:41:44 -0400
+
+gwenview (1.1.4-1) unstable; urgency=low
+
+ * New upstream release.
+ * Rebuild against Qt 3.3, fixing the failure to exit properly from
+ fullscreen mode.
+ * Added a recommends on tdegraphics-tdefile-plugins, which enables the use of
+ EXIF comments.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Tue, 10 Aug 2004 18:37:33 -0400
+
+gwenview (1.1.3-3) unstable; urgency=medium
+
+ * Applied a fix that disables input while jpegtran is running, preventing
+ premature saves from corrupting images. Lossless transforms are back.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Thu, 8 Jul 2004 17:39:32 -0400
+
+gwenview (1.1.3-2) unstable; urgency=medium
+
+ * Hackishly disabled lossless JPEG transforms, as a temporary measure
+ pending an upstream fix (Closes: #257956). This is a picture munching bug,
+ hence the need to eliminate the risk to users, even if inconvenient. JPEG
+ transforms are now lossy - adjust your "What to do when leaving a modified
+ image" setting in the Misc settings tab accordingly.
+ * As per policy, the NEWS file has been renamed changelog to reflect its
+ contents.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Thu, 8 Jul 2004 12:01:21 -0400
+
+gwenview (1.1.3-1) unstable; urgency=low
+
+ * New upstream release. Translations now included.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Sun, 13 Jun 2004 18:55:04 -0400
+
+gwenview (1.1.2-1) unstable; urgency=low
+
+ * New maintainer.
+ * New upstream release. (Closes: #198674)
+ * Updated the Debian menu entry, and added an icon.
+ * Added a Recommends on libjpeg-progs (or libjpeg-mmx-progs) for
+ lossless JPEG transforms. (Closes: #217446)
+ * Added a build-conflicts against versions of libart-2.0 with broken shlibs.
+ * Many other minor packaging changes, mainly to appease linda and lintian.
+
+ -- Christopher Martin <chrsmrtn@freeshell.org> Tue, 11 May 2004 13:38:02 -0400
+
+gwenview (0.17.0pre3-2) unstable; urgency=low
+
+ * Fix for hack in rules file from Jiri Barton, causing build to fail
+
+ -- Michael Spanier <mail@michael-spanier.de> Fri, 2 May 2003 15:12:46 +0200
+
+gwenview (0.17.0pre3-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Michael Spanier <mail@michael-spanier.de> Thu, 1 May 2003 23:27:43 +0200
+
+gwenview (0.16.0-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Michael Spanier <mail@michael-spanier.de> Thu, 30 Jan 2003 22:20:40 +0100
+
+gwenview (0.15.0-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Michael Spanier <mail@michael-spanier.de> Tue, 8 Oct 2002 21:44:02 +0200
+
+gwenview (0.14.4-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Michael Spanier <mail@michael-spanier.de> Sun, 28 Jul 2002 21:11:48 +0200
+
+gwenview (0.14.3-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Michael Spanier <mail@michael-spanier.de> Wed, 24 Jul 2002 10:22:01 +0200
+
+gwenview (0.14.1-1) unstable; urgency=low
+
+ * New upstream release
+ * first Trinity
+
+ -- Michael Spanier <mail@michael-spanier.de> Wed, 19 Jun 2002 16:06:22 +0200
+
+gwenview (0.13.0-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Michael Spanier <mail@michael-spanier.de> Sun, 5 May 2002 23:20:42 +0200
+
+gwenview (0.12.0-3) unstable; urgency=low
+
+ * Changed description Layout (closes: #141519)
+ * Thanks to Colin Watson <cjwatson@debian.org> for sponsoring the upload
+
+ -- Michael Spanier <mail@michael-spanier.de> Sun, 7 Apr 2002 13:16:35 +0200
+
+gwenview (0.12.0-2) unstable; urgency=low
+
+ * corrected spelling error in description (closes: #124713)
+ * package rebuild with new libpng (closes: #135758)
+
+ -- Michael Spanier <mail@michael-spanier.de> Wed, 13 Mar 2002 11:38:18 +0100
+
+gwenview (0.12.0-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Michael Spanier <mail@michael-spanier.de> Sun, 10 Mar 2002 14:32:59 +0100
+
+gwenview (0.11.1-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Michael Spanier <mail@michael-spanier.de> Sun, 30 Dec 2001 18:46:52 +0100
+
+gwenview (0.10.1-4) unstable; urgency=low
+
+ * Corrected manpage (closes: #121291)
+ * added kderemove tag (closes: #121170)
+ * moved menuentry to Graphics (closes: #120776)
+ * made description more clear (closes: #120685)
+
+ -- Michael Spanier <mail@michael-spanier.de> Fri, 7 Dec 2001 12:18:42 +0100
+
+gwenview (0.10.1-3.1) unstable; urgency=low
+
+ * NMU
+ * Fix g++ 3.0 compile error. Closes: #121188
+ * New upstream release
+
+ -- LaMont Jones <lamont@debian.org> Sat, 15 Dec 2001 22:44:03 -0700
+
+gwenview (0.10.1-3) unstable; urgency=low
+
+ * First official debian release, sponsored by Jimmy Kaplowitz
+ <jimmy@debian.org>
+ * added manpage for gwenview
+ * changed section from x11 to graphics
+
+ -- Michael Spanier <mail@michael-spanier.de> Wed, 14 Nov 2001 05:28:12 +0100
+
+gwenview (0.10.1-2) unstable; urgency=low
+
+ * Moved debian-specific stuff from .orig.tar.gz to .diff.gz
+
+ -- Michael Spanier <mail@michael-spanier.de> Wed, 14 Nov 2001 04:29:47 +0100
+
+gwenview (0.10.1-1) unstable; urgency=low
+
+ * New upstream release 0.10.1
+
+ -- Michael Spanier <mail@michael-spanier.de> Mon, 12 Nov 2001 00:39:00 +0100
+
+gwenview (0.10.0-1) unstable; urgency=low
+
+ * New upstream release 0.10.0
+
+ -- Michael Spanier <michael@abh-412.abh.uni-karlsruhe.de> Thu, 4 Oct 2001 14:53:16 +0200
+
+gwenview (0.9.2-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Michael Spanier <mail@michael-spanier.de> Sun, 16 Sep 2001 17:57:04 +0200
+
diff --git a/ubuntu/_base/applications/graphics/gwenview/debian/compat b/ubuntu/_base/applications/graphics/gwenview/debian/compat
new file mode 100644
index 000000000..f599e28b8
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/ubuntu/_base/applications/graphics/gwenview/debian/control b/ubuntu/_base/applications/graphics/gwenview/debian/control
new file mode 100644
index 000000000..632b8aa24
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/control
@@ -0,0 +1,33 @@
+Source: gwenview-trinity
+Section: tde
+Priority: optional
+Maintainer: TDE Debian Team <team-debian@trinitydesktop.org>
+Build-Depends: cdbs, debhelper (>= 10~), quilt, tde-cmake, ninja-build, tdelibs14-trinity-dev,
+ libkipi0-trinity-dev, libexiv2-dev, libmng-dev, libxcursor-dev
+Standards-Version: 3.8.4
+
+Package: gwenview-trinity
+Architecture: any
+Depends: ${shlibs:Depends}
+Replaces: gwenview-kde3 (<< 4:14.0.0~), gwenview-trinity (<< 4:14.0.0~)
+Breaks: gwenview-kde3 (<< 4:14.0.0~), gwenview-trinity (<< 4:14.0.0~)
+Recommends: tdegraphics-tdefile-plugins-trinity, kipi-plugins-trinity
+Suggests: gwenview-i18n-trinity
+Description: image viewer for TDE
+ Gwenview is an image viewer for the Trinity Desktop Environment. It features a
+ folder tree window and a file list window to provide easy navigation of your
+ file hierarchy. Gwenview uses docked windows, so you can alter its layout
+ any way you wish. You can also browse your images in full-screen mode, or
+ embedded within Konqueror using the Gwenview Image Browser View and Kpart.
+ .
+ Image loading is handled by the Qt library, so Gwenview supports all image
+ formats your Qt installation supports. Gwenview correctly displays images
+ with an alpha channel. Gwenview supports the displaying and editing of EXIF
+ comments, and, if the tdegraphics-tdefile-plugins package is installed, other
+ image meta-information as well. Also supported is KIPI, the TDE Image Plugin
+ Interface, a collection of helpful tools provided by the kipi-plugins
+ package. The ability to perform lossless JPEG transforms is built in.
+ .
+ Gwenview's internationalization files (i18n) (translations) are available
+ in the gwenview-i18n-trinity package. Users with non-US English desktops
+ should install this package.
diff --git a/ubuntu/_base/applications/graphics/gwenview/debian/copyright b/ubuntu/_base/applications/graphics/gwenview/debian/copyright
new file mode 100644
index 000000000..d87dc89ff
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/copyright
@@ -0,0 +1,87 @@
+This package was debianized by Christopher Martin <chrsmrtn@debian.org>
+on Tue, 11 May 2004 13:38:02 -0400.
+
+It was downloaded from: http://gwenview.sourceforge.net
+
+Primary Developers:
+ Aurélien Gâteau <aurelien.gateau@free.fr>
+ Lubos Lunak <l.lunak@suse.cz>
+
+Copyright:
+
+ Gwenview includes code from the Imlib2 library, copyright (c) 2000
+ Carsten Haitzler and various contributors, under the following
+ conditions:
+
+ """
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+
+ The above copyright notice and this permission notice shall be included
+ in all copies of the Software, its documentation and marketing &
+ publicity materials, and acknowledgment shall be given in the
+ documentation, materials and software packages that this Software was
+ used.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ DEALINGS IN THE SOFTWARE.
+ """
+
+ Gwenview includes code from Daniel M. Duley <dan.duley@verizon.net>,
+ under the following conditions:
+
+ """
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ """
+
+ Gwenview also includes code from the libjpeg library, developed by
+ "the Independent JPEG Group".
+
+License:
+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; version 2 dated June, 1991.
+
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ 02110-1301, USA.
+
+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/_base/applications/graphics/gwenview/debian/menu b/ubuntu/_base/applications/graphics/gwenview/debian/menu
new file mode 100644
index 000000000..d357e08e1
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/menu
@@ -0,0 +1,7 @@
+?package(gwenview-trinity):\
+ needs="X11"\
+ section="Applications/Viewers"\
+ hints="TDE,Images"\
+ title="Gwenview"\
+ command="/opt/trinity/bin/gwenview"\
+ icon="/opt/trinity/share/pixmaps/gwenview.xpm"
diff --git a/ubuntu/_base/applications/graphics/gwenview/debian/patches/series b/ubuntu/_base/applications/graphics/gwenview/debian/patches/series
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/patches/series
diff --git a/ubuntu/_base/applications/graphics/gwenview/debian/rules b/ubuntu/_base/applications/graphics/gwenview/debian/rules
new file mode 100755
index 000000000..f8596e545
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/rules
@@ -0,0 +1,19 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/cmake.mk
+include debian/cdbs/debian-tde.mk
+
+DEB_CMAKE_EXTRA_FLAGS := \
+ -DCMAKE_EXPORT_COMPILE_COMMANDS="ON" \
+ -DCMAKE_INSTALL_PREFIX="/opt/trinity" \
+ -DCONFIG_INSTALL_DIR="/etc/trinity" \
+ -DSYSCONF_INSTALL_DIR="/etc/trinity" \
+ -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \
+ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+ -DCMAKE_VERBOSE_MAKEFILE="ON" \
+ -DCMAKE_SKIP_RPATH="OFF" \
+ -DBUILD_ALL="ON" \
+ -DWITH_ALL_OPTIONS="ON"
+
+DEB_MAKE_CHECK_TARGET = check
diff --git a/ubuntu/_base/applications/graphics/gwenview/debian/source/format b/ubuntu/_base/applications/graphics/gwenview/debian/source/format
new file mode 100644
index 000000000..163aaf8d8
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/ubuntu/_base/applications/graphics/gwenview/debian/source/options b/ubuntu/_base/applications/graphics/gwenview/debian/source/options
new file mode 100644
index 000000000..72f1f5450
--- /dev/null
+++ b/ubuntu/_base/applications/graphics/gwenview/debian/source/options
@@ -0,0 +1,6 @@
+# Use xz instead of gzip
+compression = "xz"
+compression-level = 9
+
+# Don't run differences
+diff-ignore = .*