--- gimp-help-2.4.0.orig/Makefile.in +++ gimp-help-2.4.0/Makefile.in @@ -808,7 +808,7 @@ esac; \ test -d $(DESTDIR)$(helpdir)/$${file%/*} || \ $(mkdir_p) $(DESTDIR)$(helpdir)/$${file%/*}; \ - $(INSTALL) $(top_srcdir)/$$file $(DESTDIR)$(helpdir)/$$file || exit 66; \ + $(INSTALL) $$file $(DESTDIR)$(helpdir)/$$file || exit 66; \ done @echo . --- gimp-help-2.4.0.orig/debian/installdocbase +++ gimp-help-2.4.0/debian/installdocbase @@ -0,0 +1,103 @@ +#!/usr/bin/perl -w + +=head1 NAME + +installdocbase - modified version of dh_installdocs to only install the +*.doc-base files in the debian/ directory. + +=cut + +use strict; +use Debian::Debhelper::Dh_Lib; + +=head1 OPTIONS + +=over 4 + +=item B<-A>, B<--all> + +Install all files specified by command line parameters in ALL packages +acted on. + +=item B<-n>, B<--noscripts> + +Do not modify postinst/prerm scripts. + +=item B<-Xitem>, B<--exclude=item> + +Exclude files that contain "item" anywhere in their filename from +being installed. + +=item I + +Install these files as documentation into the first package acted on. (Or +in all packages if B<-A> is specified). + +=back + +=cut + +init(); + +foreach my $package (@{$dh{DOPACKAGES}}) { + next if is_udeb($package); + + my $tmp=tmpdir($package); + + # Handle doc-base files. There are two filename formats, the usual + # plus an extended format (debian/package.*). + my %doc_ids; + + opendir(DEB,"debian/") || error("can't read debian directory: $!"); + # If this is the main package, we need to handle unprefixed filenames. + # For all packages, we must support both the usual filename format plus + # that format with a period an something appended. + my $regexp="\Q$package\E\."; + if ($package eq $dh{MAINPACKAGE}) { + $regexp="(|$regexp)"; + } + foreach my $fn (grep {/^${regexp}doc-base(\..*)?$/} readdir(DEB)) { + # .EX are example files, generated by eg, dh-make + next if $fn=~/\.EX$/; + # Parse the file to get the doc id. + open (IN, "debian/$fn") || die "Cannot read debian/$fn."; + while () { + if (/^Document:\s+(.*)(\s+)?/) { + $doc_ids{$fn}=$1; + last; + } + } + close IN; + } + closedir(DEB); + + if (%doc_ids) { + if (! -d "$tmp/usr/share/doc-base/") { + doit("install","-g",0,"-o",0,"-d","$tmp/usr/share/doc-base/"); + } + } + foreach my $fn (keys %doc_ids) { + doit("install","-g",0,"-o",0,"-m644","-p","debian/$fn", + "$tmp/usr/share/doc-base/$doc_ids{$fn}"); + if (! $dh{NOSCRIPTS}) { + autoscript($package,"postinst","postinst-doc-base", + "s/#DOC-ID#/$doc_ids{$fn}/", + ); + autoscript($package,"prerm","prerm-doc-base", + "s/#DOC-ID#/$doc_ids{$fn}/", + ); + } + } +} + +=head1 SEE ALSO + +L + +This program is a part of debhelper. + +=head1 AUTHOR + +Joey Hess + +=cut --- gimp-help-2.4.0.orig/debian/gimp-help-de.postinst +++ gimp-help-2.4.0/debian/gimp-help-de.postinst @@ -0,0 +1,14 @@ +#!/bin/sh -e + +# if /usr/share/doc/gimp-help-de is a directory, it's probably from an older +# package, so remove it and make the symlink +if [ ! -L /usr/share/doc/gimp-help-de -a -d /usr/share/doc/gimp-help-de ]; +then + rmdir /usr/share/doc/gimp-help-de +fi + +if [ ! -e /usr/share/doc/gimp-help-de ]; then + ln -s gimp-help-common /usr/share/doc/gimp-help-de +fi + +#DEBHELPER# --- gimp-help-2.4.0.orig/debian/gimp-help-es.files +++ gimp-help-2.4.0/debian/gimp-help-es.files @@ -0,0 +1,2 @@ +/usr/share/gimp/2.0/help/es/ +/usr/share/gimp/2.0/help/images/*/es/ --- gimp-help-2.4.0.orig/debian/gimp-help-es.doc-base +++ gimp-help-2.4.0/debian/gimp-help-es.doc-base @@ -0,0 +1,10 @@ +Document: gimp-help-es +Title: GIMP User's Manual (Spanish) +Author: Various +Abstract: This manual contains documentation for using the + GNU Image Manipulation Program (The GIMP) in the Spanish language. +Section: Apps/Graphics + +Format: HTML +Index: /usr/share/doc/gimp-help-common/html/es/index.html +Files: /usr/share/doc/gimp-help-common/html/es/*.html --- gimp-help-2.4.0.orig/debian/gimp-help-nl.files +++ gimp-help-2.4.0/debian/gimp-help-nl.files @@ -0,0 +1,2 @@ +/usr/share/gimp/2.0/help/nl/ +/usr/share/gimp/2.0/help/images/*/nl/ --- gimp-help-2.4.0.orig/debian/gimp-help-de.links +++ gimp-help-2.4.0/debian/gimp-help-de.links @@ -0,0 +1 @@ +usr/share/doc/gimp-help-common usr/share/doc/gimp-help-de --- gimp-help-2.4.0.orig/debian/control +++ gimp-help-2.4.0/debian/control @@ -0,0 +1,161 @@ +Source: gimp-help +Section: doc +Priority: optional +Maintainer: Ari Pollak +Build-Depends: debhelper (>= 4.0.0) +Build-Depends-Indep: xsltproc (>= 1.1.12), docbook-xml, docbook-xsl, + gnome-doc-utils +Build-Conflicts: dblatex, docbook2odf +Standards-Version: 3.6.1 + +Package: gimp-help-de +Architecture: all +Depends: gimp-help-common (= ${source:Version}), gimp-helpbrowser | www-browser +Recommends: gimp-help-en +Provides: gimp-help +Enhances: gimp +Description: Documentation for the GIMP (German) + This package contains the documentation files for the GIMP designed for use + with the internal GIMP help browser or external web browsers. + . + This package contains the documentation for the GIMP in German. + . + gimp-help-en is recommended because it is automatically the fallback + for pages which have not yet been translated. + +Package: gimp-help-en +Architecture: all +Depends: gimp-help-common (= ${source:Version}), gimp-helpbrowser | www-browser +Provides: gimp-help +Enhances: gimp +Description: Documentation for the GIMP (English) + This package contains the documentation files for the GIMP designed for use + with the internal GIMP help browser or external web browsers. + . + This package contains the documentation for the GIMP in English. + +Package: gimp-help-es +Architecture: all +Depends: gimp-help-common (= ${source:Version}), gimp-helpbrowser | www-browser +Recommends: gimp-help-en +Provides: gimp-help +Enhances: gimp +Description: Documentation for the GIMP (Spanish) + This package contains the documentation files for the GIMP designed for use + with the internal GIMP help browser or external web browsers. + . + This package contains the documentation for the GIMP in Spanish. + . + gimp-help-en is recommended because it is automatically the fallback + for pages which have not yet been translated. + +Package: gimp-help-fr +Architecture: all +Depends: gimp-help-common (= ${source:Version}), gimp-helpbrowser | www-browser +Recommends: gimp-help-en +Provides: gimp-help +Enhances: gimp +Description: Documentation for the GIMP (French) + This package contains the documentation files for the GIMP designed for use + with the internal GIMP help browser or external web browsers. + . + This package contains the documentation for the GIMP in French. + . + gimp-help-en is recommended because it is automatically the fallback + for pages which have not yet been translated. + +Package: gimp-help-it +Architecture: all +Depends: gimp-help-common (= ${source:Version}), gimp-helpbrowser | www-browser +Recommends: gimp-help-en +Provides: gimp-help +Enhances: gimp +Description: Documentation for the GIMP (Italian) + This package contains the documentation files for the GIMP designed for use + with the internal GIMP help browser or external web browsers. + . + This package contains the documentation for the GIMP in Italian. + . + gimp-help-en is recommended because it is automatically the fallback + for pages which have not yet been translated. + +Package: gimp-help-ko +Architecture: all +Depends: gimp-help-common (= ${source:Version}), gimp-helpbrowser | www-browser +Recommends: gimp-help-en +Provides: gimp-help +Enhances: gimp +Description: Documentation for the GIMP (Korean) + This package contains the documentation files for the GIMP designed for use + with the internal GIMP help browser or external web browsers. + . + This package contains the documentation for the GIMP in Korean. + . + gimp-help-en is recommended because it is automatically the fallback + for pages which have not yet been translated. + +Package: gimp-help-nl +Architecture: all +Depends: gimp-help-common (= ${source:Version}), gimp-helpbrowser | www-browser +Recommends: gimp-help-en +Provides: gimp-help +Enhances: gimp +Description: Documentation for the GIMP (Dutch) + This package contains the documentation files for the GIMP designed for use + with the internal GIMP help browser or external web browsers. + . + This package contains the documentation for the GIMP in Dutch. + . + gimp-help-en is recommended because it is automatically the fallback + for pages which have not yet been translated. + +Package: gimp-help-no +Architecture: all +Depends: gimp-help-common (= ${source:Version}), gimp-helpbrowser | www-browser +Recommends: gimp-help-en +Provides: gimp-help +Enhances: gimp +Description: Documentation for the GIMP (Norwegian) + This package contains the documentation files for the GIMP designed for use + with the internal GIMP help browser or external web browsers. + . + This package contains the documentation for the GIMP in Norwegian. + . + gimp-help-en is recommended because it is automatically the fallback + for pages which have not yet been translated. + +Package: gimp-help-ru +Architecture: all +Depends: gimp-help-common (= ${source:Version}), gimp-helpbrowser | www-browser +Recommends: gimp-help-en +Provides: gimp-help +Enhances: gimp +Description: Documentation for the GIMP (Russian) + This package contains the documentation files for the GIMP designed for use + with the internal GIMP help browser or external web browsers. + . + This package contains the documentation for the GIMP in Russian. + . + gimp-help-en is recommended because it is automatically the fallback + for pages which have not yet been translated. + +Package: gimp-help-sv +Architecture: all +Depends: gimp-help-common (= ${source:Version}), gimp-helpbrowser | www-browser +Recommends: gimp-help-en +Provides: gimp-help +Enhances: gimp +Description: Documentation for the GIMP (Swedish) + This package contains the documentation files for the GIMP designed for use + with the internal GIMP help browser or external web browsers. + . + This package contains the documentation for the GIMP in Swedish. + . + gimp-help-en is recommended because it is automatically the fallback + for pages which have not yet been translated. + +Package: gimp-help-common +Architecture: all +Description: Data files for the GIMP documentation + This package contains necessary files common to all GIMP help + packages, such as graphics and screenshots. --- gimp-help-2.4.0.orig/debian/gimp-help-de.files +++ gimp-help-2.4.0/debian/gimp-help-de.files @@ -0,0 +1,2 @@ +/usr/share/gimp/2.0/help/de/ +/usr/share/gimp/2.0/help/images/*/de/ --- gimp-help-2.4.0.orig/debian/gimp-help-nl.doc-base +++ gimp-help-2.4.0/debian/gimp-help-nl.doc-base @@ -0,0 +1,10 @@ +Document: gimp-help-nl +Title: GIMP User's Manual (Dutch) +Author: Various +Abstract: This manual contains documentation for using the + GNU Image Manipulation Program (The GIMP) in the Dutch language. +Section: Apps/Graphics + +Format: HTML +Index: /usr/share/doc/gimp-help-common/html/nl/index.html +Files: /usr/share/doc/gimp-help-common/html/nl/*.html --- gimp-help-2.4.0.orig/debian/gimp-help-ru.files +++ gimp-help-2.4.0/debian/gimp-help-ru.files @@ -0,0 +1,2 @@ +/usr/share/gimp/2.0/help/ru/ +/usr/share/gimp/2.0/help/images/*/ru/ --- gimp-help-2.4.0.orig/debian/gimp-help-de.doc-base +++ gimp-help-2.4.0/debian/gimp-help-de.doc-base @@ -0,0 +1,10 @@ +Document: gimp-help-de +Title: GIMP User's Manual (German) +Author: Various +Abstract: This manual contains documentation for using the + GNU Image Manipulation Program (The GIMP) in the German language. +Section: Apps/Graphics + +Format: HTML +Index: /usr/share/doc/gimp-help-common/html/de/index.html +Files: /usr/share/doc/gimp-help-common/html/de/*.html --- gimp-help-2.4.0.orig/debian/gimp-help-fr.doc-base +++ gimp-help-2.4.0/debian/gimp-help-fr.doc-base @@ -0,0 +1,10 @@ +Document: gimp-help-fr +Title: GIMP User's Manual (French) +Author: Various +Abstract: This manual contains documentation for using the + GNU Image Manipulation Program (The GIMP) in the French language. +Section: Apps/Graphics + +Format: HTML +Index: /usr/share/doc/gimp-help-common/html/fr/index.html +Files: /usr/share/doc/gimp-help-common/html/fr/*.html --- gimp-help-2.4.0.orig/debian/gimp-help-fr.postinst +++ gimp-help-2.4.0/debian/gimp-help-fr.postinst @@ -0,0 +1,14 @@ +#!/bin/sh -e + +# if /usr/share/doc/gimp-help-fr is a directory, it's probably from an older +# package, so remove it and make the symlink +if [ ! -L /usr/share/doc/gimp-help-fr -a -d /usr/share/doc/gimp-help-fr ]; +then + rmdir /usr/share/doc/gimp-help-fr +fi + +if [ ! -e /usr/share/doc/gimp-help-fr ]; then + ln -s gimp-help-common /usr/share/doc/gimp-help-fr +fi + +#DEBHELPER# --- gimp-help-2.4.0.orig/debian/gimp-help-common.links +++ gimp-help-2.4.0/debian/gimp-help-common.links @@ -0,0 +1 @@ +usr/share/gimp/2.0/help usr/share/doc/gimp-help-common/html --- gimp-help-2.4.0.orig/debian/rules +++ gimp-help-2.4.0/debian/rules @@ -0,0 +1,114 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# 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 + + +# 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 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +build/config.status: configure + dh_testdir + + # Add here commands to configure the package. + mkdir build + cd build; CFLAGS="$(CFLAGS)" ../configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --without-gimp --enable-build + + +build: build-stamp + +build-stamp: build/config.status + dh_testdir + + # Add here commands to compile the package. + cd build; $(MAKE) + #/usr/bin/docbook-to-man debian/gimp-help-2.sgml > gimp-help-2.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + rm -rf build + +#ifneq "$(wildcard /usr/share/misc/config.sub)" "" +# cp -f /usr/share/misc/config.sub config.sub +#endif +#ifneq "$(wildcard /usr/share/misc/config.guess)" "" +# cp -f /usr/share/misc/config.guess config.guess +#endif + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs -A usr/share/doc + + # Add here commands to install the package into debian/tmp + cd build; $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + + # Remove old languages + rm -rf debian/tmp/usr/share/gimp/2.0/help/images/*/cs + rm -rf debian/tmp/usr/share/gimp/2.0/help/images/*/zh_CN + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_movefiles + dh_installchangelogs -pgimp-help-common ChangeLog + dh_installdocs -pgimp-help-common + chmod +x debian/installdocbase; debian/installdocbase + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- gimp-help-2.4.0.orig/debian/gimp-help-ko.files +++ gimp-help-2.4.0/debian/gimp-help-ko.files @@ -0,0 +1,2 @@ +/usr/share/gimp/2.0/help/ko/ +/usr/share/gimp/2.0/help/images/*/ko/ --- gimp-help-2.4.0.orig/debian/gimp-help-en.files +++ gimp-help-2.4.0/debian/gimp-help-en.files @@ -0,0 +1 @@ +/usr/share/gimp/2.0/help/en/ --- gimp-help-2.4.0.orig/debian/gimp-help-ko.doc-base +++ gimp-help-2.4.0/debian/gimp-help-ko.doc-base @@ -0,0 +1,10 @@ +Document: gimp-help-ko +Title: GIMP User's Manual (Korean) +Author: Various +Abstract: This manual contains documentation for using the + GNU Image Manipulation Program (The GIMP) in the Korean language. +Section: Apps/Graphics + +Format: HTML +Index: /usr/share/doc/gimp-help-common/html/ko/index.html +Files: /usr/share/doc/gimp-help-common/html/ko/*.html --- gimp-help-2.4.0.orig/debian/gimp-help-sv.files +++ gimp-help-2.4.0/debian/gimp-help-sv.files @@ -0,0 +1,2 @@ +/usr/share/gimp/2.0/help/sv/ +/usr/share/gimp/2.0/help/images/*/sv/ --- gimp-help-2.4.0.orig/debian/gimp-help-en.postinst +++ gimp-help-2.4.0/debian/gimp-help-en.postinst @@ -0,0 +1,14 @@ +#!/bin/sh -e + +# if /usr/share/doc/gimp-help-en is a directory, it's probably from an older +# package, so remove it and make the symlink +if [ ! -L /usr/share/doc/gimp-help-en -a -d /usr/share/doc/gimp-help-en ]; +then + rmdir /usr/share/doc/gimp-help-en +fi + +if [ ! -e /usr/share/doc/gimp-help-en ]; then + ln -s gimp-help-common /usr/share/doc/gimp-help-en +fi + +#DEBHELPER# --- gimp-help-2.4.0.orig/debian/gimp-help-common.files +++ gimp-help-2.4.0/debian/gimp-help-common.files @@ -0,0 +1 @@ +usr/share/gimp/2.0/help/images/ --- gimp-help-2.4.0.orig/debian/compat +++ gimp-help-2.4.0/debian/compat @@ -0,0 +1 @@ +4 --- gimp-help-2.4.0.orig/debian/gimp-help-sv.doc-base +++ gimp-help-2.4.0/debian/gimp-help-sv.doc-base @@ -0,0 +1,10 @@ +Document: gimp-help-sv +Title: GIMP User's Manual (Swedish) +Author: Various +Abstract: This manual contains documentation for using the + GNU Image Manipulation Program (The GIMP) in the Swedish language. +Section: Apps/Graphics + +Format: HTML +Index: /usr/share/doc/gimp-help-common/html/sv/index.html +Files: /usr/share/doc/gimp-help-common/html/sv/*.html --- gimp-help-2.4.0.orig/debian/gimp-help-sv.postinst +++ gimp-help-2.4.0/debian/gimp-help-sv.postinst @@ -0,0 +1,14 @@ +#!/bin/sh -e + +# if /usr/share/doc/gimp-help-sv is a directory, it's probably from an older +# package, so remove it and make the symlink +if [ ! -L /usr/share/doc/gimp-help-sv -a -d /usr/share/doc/gimp-help-sv ]; +then + rmdir /usr/share/doc/gimp-help-sv +fi + +if [ ! -e /usr/share/doc/gimp-help-sv ]; then + ln -s gimp-help-common /usr/share/doc/gimp-help-sv +fi + +#DEBHELPER# --- gimp-help-2.4.0.orig/debian/gimp-help-it.files +++ gimp-help-2.4.0/debian/gimp-help-it.files @@ -0,0 +1,2 @@ +/usr/share/gimp/2.0/help/it/ +/usr/share/gimp/2.0/help/images/*/it/ --- gimp-help-2.4.0.orig/debian/gimp-help-en.doc-base +++ gimp-help-2.4.0/debian/gimp-help-en.doc-base @@ -0,0 +1,10 @@ +Document: gimp-help-en +Title: GIMP User's Manual (English) +Author: Various +Abstract: This manual contains documentation for using the + GNU Image Manipulation Program (The GIMP) in the English language. +Section: Apps/Graphics + +Format: HTML +Index: /usr/share/doc/gimp-help-common/html/en/index.html +Files: /usr/share/doc/gimp-help-common/html/en/*.html --- gimp-help-2.4.0.orig/debian/gimp-help-fr.links +++ gimp-help-2.4.0/debian/gimp-help-fr.links @@ -0,0 +1 @@ +usr/share/doc/gimp-help-common usr/share/doc/gimp-help-fr --- gimp-help-2.4.0.orig/debian/gimp-help-nl.links +++ gimp-help-2.4.0/debian/gimp-help-nl.links @@ -0,0 +1 @@ +usr/share/doc/gimp-help-common usr/share/doc/gimp-help-nl --- gimp-help-2.4.0.orig/debian/gimp-help-no.files +++ gimp-help-2.4.0/debian/gimp-help-no.files @@ -0,0 +1,2 @@ +/usr/share/gimp/2.0/help/no/ +/usr/share/gimp/2.0/help/images/*/no/ --- gimp-help-2.4.0.orig/debian/gimp-help-no.links +++ gimp-help-2.4.0/debian/gimp-help-no.links @@ -0,0 +1 @@ +usr/share/doc/gimp-help-common usr/share/doc/gimp-help-no --- gimp-help-2.4.0.orig/debian/gimp-help-fr.files +++ gimp-help-2.4.0/debian/gimp-help-fr.files @@ -0,0 +1,2 @@ +/usr/share/gimp/2.0/help/fr/ +/usr/share/gimp/2.0/help/images/*/fr/ --- gimp-help-2.4.0.orig/debian/changelog +++ gimp-help-2.4.0/debian/changelog @@ -0,0 +1,203 @@ +gimp-help (2.4.0-2) unstable; urgency=low + + * Changed gimp-helpbrowser dependency to gimp + * Remove bashism in debian/rules when cleaning up images from missing + languages (Closes: #459191) + + -- Ari Pollak Fri, 04 Jan 2008 15:14:19 -0500 + +gimp-help (2.4.0-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Sat, 01 Dec 2007 14:06:09 -0500 + +gimp-help (2+0.13-1) unstable; urgency=low + + * New upstream release + * Fix description for gimp-help-no (Closes: #421615) + + -- Ari Pollak Fri, 03 Aug 2007 12:21:37 -0400 + +gimp-help (2+0.12-1) unstable; urgency=low + + * New upstream release + - Add Korean, Norwegian, and Russian translations + * Remove old compatibility conflicts & replaces that were from pre-sarge + + -- Ari Pollak Sun, 11 Mar 2007 08:56:21 -0400 + +gimp-help (2+0.10-2) unstable; urgency=low + + * Add Build-Depend on docbook-xml for 4.3 DTDs, and apply patch + from Mike Hommey to allow building with libxslt 1.1.8 (Closes: #397623) + * Make clean rule better + + -- Ari Pollak Fri, 10 Nov 2006 23:41:27 -0500 + +gimp-help (2+0.10-1) unstable; urgency=low + + * New upstream release + - Ignore the Croatian translation since there's barely anything + translated + + -- Ari Pollak Wed, 12 Apr 2006 19:03:18 -0400 + +gimp-help (2+0.9-1) unstable; urgency=low + + * New upstream release (Closes: #327806) + + -- Ari Pollak Mon, 12 Sep 2005 13:59:21 -0400 + +gimp-help (2+0.8-3) unstable; urgency=low + + * Add imagemagick to build-depends (Closes: #315036) + + -- Ari Pollak Mon, 20 Jun 2005 11:54:24 -0400 + +gimp-help (2+0.8-2) unstable; urgency=low + + * Correct lang=en to lang=it in src/concepts/selection.xml (Closes: #314885) + * Manually add /usr/share/doc/gimp-help- symlinks in postinst for + all languages except it and nl if those exist as empty directories + * Include upstream NEWS file in docs (Closes: #302856) + + -- Ari Pollak Sun, 19 Jun 2005 13:04:53 -0400 + +gimp-help (2+0.8-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Tue, 17 May 2005 19:11:04 -0400 + +gimp-help (2+0.7-5) unstable; urgency=high + + * Fix doc-base entry for gimp-help-zh-cn to point to correct directory + name (Closes: #308228) + + -- Ari Pollak Sun, 8 May 2005 18:04:08 -0400 + +gimp-help (2+0.7-4) unstable; urgency=low + + * Correct lang=en to lang=cs in ch. 2 sec. 6.3. This is already fixed + in upstream CVS, from GNOME bug 170140. (Closes: #170140) + + -- Ari Pollak Mon, 2 May 2005 16:06:22 -0400 + +gimp-help (2+0.7-3) unstable; urgency=low + + * Oops, add a section to the *.doc-base files, and actually install them + * Fix the order of the directories in the *.links files + + -- Ari Pollak Wed, 9 Mar 2005 09:18:59 -0500 + +gimp-help (2+0.7-2) unstable; urgency=low + + * Actually put the appropriate files into gimp-help-cs + * Make /usr/share/doc/gimp-help- symlink to gimp-help-common, + and link /usr/share/gimp/2.0/help to /usr/share/doc/gimp-help-common/html. + (Closes: #298428) + * Create debian/gimp-help-.doc-base files + + -- Ari Pollak Mon, 7 Mar 2005 10:16:22 -0500 + +gimp-help (2+0.7-1) unstable; urgency=low + + * New upstream release + * Add a -cs package for Czech + + -- Ari Pollak Fri, 18 Feb 2005 20:27:34 -0500 + +gimp-help (2+0.6-3) unstable; urgency=low + + * Rebuild, depending on xsltproc >= 1.1.12, since it has now hit unstable. + This should fix the problem where the back cover indexes are not generated. + (Closes: #286831) + + -- Ari Pollak Thu, 17 Feb 2005 01:41:14 -0500 + +gimp-help (2+0.6-2) unstable; urgency=low + + * Rebuild for unstable + + -- Ari Pollak Mon, 20 Dec 2004 18:43:22 -0500 + +gimp-help (2+0.6-1) experimental; urgency=low + + * New upstream release for experimental + - if GIMP 2.2 will be uploaded to unstable, so will this. + * Fix enormous .diff file + * Don't copy config.{sub,guess}, they're not used here + * Language packs now have versioned depends on gimp-help-common + * Remove html/, pdf/, and xml/ on clean + + -- Ari Pollak Sun, 19 Dec 2004 15:20:04 -0500 + +gimp-help (2+0.5-1) experimental; urgency=low + + * New upstream release for experimental, since it contains + documentation updated for GIMP 2.2 (already in experimental). + * Add gimp-help-zh-cn package for Chinese Simplified + * Add --enable-build to configure options to rebuild output files, + since otherwise the French translation won't be included. + Add xsltproc and docbook-xsl to build-depends appropriately. + + -- Ari Pollak Mon, 8 Nov 2004 10:07:41 -0500 + +gimp-help (2+0.4-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Fri, 13 Aug 2004 09:07:02 -0400 + +gimp-help (2+0.3-5) unstable; urgency=low + + * Remove gimp-help dummy package (Closes: #263855) + * Depend on gimp-helpbrowser | www-browser, not gimp + + -- Ari Pollak Thu, 5 Aug 2004 21:48:48 -0400 + +gimp-help (2+0.3-4) unstable; urgency=low + + * add gimp-helpbrowser option to depends, remove gimp + + -- Ari Pollak Fri, 9 Jul 2004 10:40:14 -0400 + +gimp-help (2+0.3-3) unstable; urgency=low + + * Replaces & Conflicts: gimp-help (<< 2+0.3-1) (Closes: #255281) + + -- Ari Pollak Sat, 19 Jun 2004 21:04:03 -0400 + +gimp-help (2+0.3-2) unstable; urgency=low + + * Make all language packages Recommend gimp-help-en, and explain why + + -- Ari Pollak Sat, 19 Jun 2004 13:04:33 -0400 + +gimp-help (2+0.3-1) unstable; urgency=low + + * New upstream release + * Split gimp-help into language-specific packages, make gimp-help a + dummy and depend on gimp-help-en for now + + -- Ari Pollak Sun, 6 Jun 2004 08:52:50 -0400 + +gimp-help (2+0.2-2) unstable; urgency=low + + * Suggest gimp, not gimp1.3 (Closes: #247390) + + -- Ari Pollak Tue, 4 May 2004 18:15:52 -0400 + +gimp-help (2+0.2-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Wed, 24 Mar 2004 21:54:41 -0500 + +gimp-help (2+0.1-1) unstable; urgency=low + + * Initial Release. (Closes: #236987) + + -- Ari Pollak Tue, 9 Mar 2004 00:26:21 -0500 + --- gimp-help-2.4.0.orig/debian/gimp-help-en.links +++ gimp-help-2.4.0/debian/gimp-help-en.links @@ -0,0 +1 @@ +usr/share/doc/gimp-help-common usr/share/doc/gimp-help-en --- gimp-help-2.4.0.orig/debian/gimp-help-no.doc-base +++ gimp-help-2.4.0/debian/gimp-help-no.doc-base @@ -0,0 +1,10 @@ +Document: gimp-help-no +Title: GIMP User's Manual (Norwegian) +Author: Various +Abstract: This manual contains documentation for using the + GNU Image Manipulation Program (The GIMP) in the Norwegian language. +Section: Apps/Graphics + +Format: HTML +Index: /usr/share/doc/gimp-help-common/html/no/index.html +Files: /usr/share/doc/gimp-help-common/html/no/*.html --- gimp-help-2.4.0.orig/debian/gimp-help-it.links +++ gimp-help-2.4.0/debian/gimp-help-it.links @@ -0,0 +1 @@ +usr/share/doc/gimp-help-common usr/share/doc/gimp-help-it --- gimp-help-2.4.0.orig/debian/copyright +++ gimp-help-2.4.0/debian/copyright @@ -0,0 +1,406 @@ +This package was debianized by Ari Pollak on +Tue, 9 Mar 2004 00:26:21 -0500. + +It was downloaded from + +This package is licensed under the GNU Free Documentation License, +version 1.2. The text of the license follows. + + GNU Free Documentation License + Version 1.2, November 2002 + + + Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + +0. PREAMBLE + +The purpose of this License is to make a manual, textbook, or other +functional and useful document "free" in the sense of freedom: to +assure everyone the effective freedom to copy and redistribute it, +with or without modifying it, either commercially or noncommercially. +Secondarily, this License preserves for the author and publisher a way +to get credit for their work, while not being considered responsible +for modifications made by others. + +This License is a kind of "copyleft", which means that derivative +works of the document must themselves be free in the same sense. It +complements the GNU General Public License, which is a copyleft +license designed for free software. + +We have designed this License in order to use it for manuals for free +software, because free software needs free documentation: a free +program should come with manuals providing the same freedoms that the +software does. But this License is not limited to software manuals; +it can be used for any textual work, regardless of subject matter or +whether it is published as a printed book. We recommend this License +principally for works whose purpose is instruction or reference. + + +1. APPLICABILITY AND DEFINITIONS + +This License applies to any manual or other work, in any medium, that +contains a notice placed by the copyright holder saying it can be +distributed under the terms of this License. Such a notice grants a +world-wide, royalty-free license, unlimited in duration, to use that +work under the conditions stated herein. The "Document", below, +refers to any such manual or work. Any member of the public is a +licensee, and is addressed as "you". You accept the license if you +copy, modify or distribute the work in a way requiring permission +under copyright law. + +A "Modified Version" of the Document means any work containing the +Document or a portion of it, either copied verbatim, or with +modifications and/or translated into another language. + +A "Secondary Section" is a named appendix or a front-matter section of +the Document that deals exclusively with the relationship of the +publishers or authors of the Document to the Document's overall subject +(or to related matters) and contains nothing that could fall directly +within that overall subject. (Thus, if the Document is in part a +textbook of mathematics, a Secondary Section may not explain any +mathematics.) The relationship could be a matter of historical +connection with the subject or with related matters, or of legal, +commercial, philosophical, ethical or political position regarding +them. + +The "Invariant Sections" are certain Secondary Sections whose titles +are designated, as being those of Invariant Sections, in the notice +that says that the Document is released under this License. If a +section does not fit the above definition of Secondary then it is not +allowed to be designated as Invariant. The Document may contain zero +Invariant Sections. If the Document does not identify any Invariant +Sections then there are none. + +The "Cover Texts" are certain short passages of text that are listed, +as Front-Cover Texts or Back-Cover Texts, in the notice that says that +the Document is released under this License. A Front-Cover Text may +be at most 5 words, and a Back-Cover Text may be at most 25 words. + +A "Transparent" copy of the Document means a machine-readable copy, +represented in a format whose specification is available to the +general public, that is suitable for revising the document +straightforwardly with generic text editors or (for images composed of +pixels) generic paint programs or (for drawings) some widely available +drawing editor, and that is suitable for input to text formatters or +for automatic translation to a variety of formats suitable for input +to text formatters. A copy made in an otherwise Transparent file +format whose markup, or absence of markup, has been arranged to thwart +or discourage subsequent modification by readers is not Transparent. +An image format is not Transparent if used for any substantial amount +of text. A copy that is not "Transparent" is called "Opaque". + +Examples of suitable formats for Transparent copies include plain +ASCII without markup, Texinfo input format, LaTeX input format, SGML +or XML using a publicly available DTD, and standard-conforming simple +HTML, PostScript or PDF designed for human modification. Examples of +transparent image formats include PNG, XCF and JPG. Opaque formats +include proprietary formats that can be read and edited only by +proprietary word processors, SGML or XML for which the DTD and/or +processing tools are not generally available, and the +machine-generated HTML, PostScript or PDF produced by some word +processors for output purposes only. + +The "Title Page" means, for a printed book, the title page itself, +plus such following pages as are needed to hold, legibly, the material +this License requires to appear in the title page. For works in +formats which do not have any title page as such, "Title Page" means +the text near the most prominent appearance of the work's title, +preceding the beginning of the body of the text. + +A section "Entitled XYZ" means a named subunit of the Document whose +title either is precisely XYZ or contains XYZ in parentheses following +text that translates XYZ in another language. (Here XYZ stands for a +specific section name mentioned below, such as "Acknowledgements", +"Dedications", "Endorsements", or "History".) To "Preserve the Title" +of such a section when you modify the Document means that it remains a +section "Entitled XYZ" according to this definition. + +The Document may include Warranty Disclaimers next to the notice which +states that this License applies to the Document. These Warranty +Disclaimers are considered to be included by reference in this +License, but only as regards disclaiming warranties: any other +implication that these Warranty Disclaimers may have is void and has +no effect on the meaning of this License. + + +2. VERBATIM COPYING + +You may copy and distribute the Document in any medium, either +commercially or noncommercially, provided that this License, the +copyright notices, and the license notice saying this License applies +to the Document are reproduced in all copies, and that you add no other +conditions whatsoever to those of this License. You may not use +technical measures to obstruct or control the reading or further +copying of the copies you make or distribute. However, you may accept +compensation in exchange for copies. If you distribute a large enough +number of copies you must also follow the conditions in section 3. + +You may also lend copies, under the same conditions stated above, and +you may publicly display copies. + + +3. COPYING IN QUANTITY + +If you publish printed copies (or copies in media that commonly have +printed covers) of the Document, numbering more than 100, and the +Document's license notice requires Cover Texts, you must enclose the +copies in covers that carry, clearly and legibly, all these Cover +Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on +the back cover. Both covers must also clearly and legibly identify +you as the publisher of these copies. The front cover must present +the full title with all words of the title equally prominent and +visible. You may add other material on the covers in addition. +Copying with changes limited to the covers, as long as they preserve +the title of the Document and satisfy these conditions, can be treated +as verbatim copying in other respects. + +If the required texts for either cover are too voluminous to fit +legibly, you should put the first ones listed (as many as fit +reasonably) on the actual cover, and continue the rest onto adjacent +pages. + +If you publish or distribute Opaque copies of the Document numbering +more than 100, you must either include a machine-readable Transparent +copy along with each Opaque copy, or state in or with each Opaque copy +a computer-network location from which the general network-using +public has access to download using public-standard network protocols +a complete Transparent copy of the Document, free of added material. +If you use the latter option, you must take reasonably prudent steps, +when you begin distribution of Opaque copies in quantity, to ensure +that this Transparent copy will remain thus accessible at the stated +location until at least one year after the last time you distribute an +Opaque copy (directly or through your agents or retailers) of that +edition to the public. + +It is requested, but not required, that you contact the authors of the +Document well before redistributing any large number of copies, to give +them a chance to provide you with an updated version of the Document. + + +4. MODIFICATIONS + +You may copy and distribute a Modified Version of the Document under +the conditions of sections 2 and 3 above, provided that you release +the Modified Version under precisely this License, with the Modified +Version filling the role of the Document, thus licensing distribution +and modification of the Modified Version to whoever possesses a copy +of it. In addition, you must do these things in the Modified Version: + +A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. +B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. +C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. +D. Preserve all the copyright notices of the Document. +E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. +F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. +G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. +H. Include an unaltered copy of this License. +I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. +J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. +K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. +L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. +M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. +N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. +O. Preserve any Warranty Disclaimers. + +If the Modified Version includes new front-matter sections or +appendices that qualify as Secondary Sections and contain no material +copied from the Document, you may at your option designate some or all +of these sections as invariant. To do this, add their titles to the +list of Invariant Sections in the Modified Version's license notice. +These titles must be distinct from any other section titles. + +You may add a section Entitled "Endorsements", provided it contains +nothing but endorsements of your Modified Version by various +parties--for example, statements of peer review or that the text has +been approved by an organization as the authoritative definition of a +standard. + +You may add a passage of up to five words as a Front-Cover Text, and a +passage of up to 25 words as a Back-Cover Text, to the end of the list +of Cover Texts in the Modified Version. Only one passage of +Front-Cover Text and one of Back-Cover Text may be added by (or +through arrangements made by) any one entity. If the Document already +includes a cover text for the same cover, previously added by you or +by arrangement made by the same entity you are acting on behalf of, +you may not add another; but you may replace the old one, on explicit +permission from the previous publisher that added the old one. + +The author(s) and publisher(s) of the Document do not by this License +give permission to use their names for publicity for or to assert or +imply endorsement of any Modified Version. + + +5. COMBINING DOCUMENTS + +You may combine the Document with other documents released under this +License, under the terms defined in section 4 above for modified +versions, provided that you include in the combination all of the +Invariant Sections of all of the original documents, unmodified, and +list them all as Invariant Sections of your combined work in its +license notice, and that you preserve all their Warranty Disclaimers. + +The combined work need only contain one copy of this License, and +multiple identical Invariant Sections may be replaced with a single +copy. If there are multiple Invariant Sections with the same name but +different contents, make the title of each such section unique by +adding at the end of it, in parentheses, the name of the original +author or publisher of that section if known, or else a unique number. +Make the same adjustment to the section titles in the list of +Invariant Sections in the license notice of the combined work. + +In the combination, you must combine any sections Entitled "History" +in the various original documents, forming one section Entitled +"History"; likewise combine any sections Entitled "Acknowledgements", +and any sections Entitled "Dedications". You must delete all sections +Entitled "Endorsements". + + +6. COLLECTIONS OF DOCUMENTS + +You may make a collection consisting of the Document and other documents +released under this License, and replace the individual copies of this +License in the various documents with a single copy that is included in +the collection, provided that you follow the rules of this License for +verbatim copying of each of the documents in all other respects. + +You may extract a single document from such a collection, and distribute +it individually under this License, provided you insert a copy of this +License into the extracted document, and follow this License in all +other respects regarding verbatim copying of that document. + + +7. AGGREGATION WITH INDEPENDENT WORKS + +A compilation of the Document or its derivatives with other separate +and independent documents or works, in or on a volume of a storage or +distribution medium, is called an "aggregate" if the copyright +resulting from the compilation is not used to limit the legal rights +of the compilation's users beyond what the individual works permit. +When the Document is included in an aggregate, this License does not +apply to the other works in the aggregate which are not themselves +derivative works of the Document. + +If the Cover Text requirement of section 3 is applicable to these +copies of the Document, then if the Document is less than one half of +the entire aggregate, the Document's Cover Texts may be placed on +covers that bracket the Document within the aggregate, or the +electronic equivalent of covers if the Document is in electronic form. +Otherwise they must appear on printed covers that bracket the whole +aggregate. + + +8. TRANSLATION + +Translation is considered a kind of modification, so you may +distribute translations of the Document under the terms of section 4. +Replacing Invariant Sections with translations requires special +permission from their copyright holders, but you may include +translations of some or all Invariant Sections in addition to the +original versions of these Invariant Sections. You may include a +translation of this License, and all the license notices in the +Document, and any Warranty Disclaimers, provided that you also include +the original English version of this License and the original versions +of those notices and disclaimers. In case of a disagreement between +the translation and the original version of this License or a notice +or disclaimer, the original version will prevail. + +If a section in the Document is Entitled "Acknowledgements", +"Dedications", or "History", the requirement (section 4) to Preserve +its Title (section 1) will typically require changing the actual +title. + + +9. TERMINATION + +You may not copy, modify, sublicense, or distribute the Document except +as expressly provided for under this License. Any other attempt to +copy, modify, sublicense or distribute the Document is void, and will +automatically terminate your rights under this License. However, +parties who have received copies, or rights, from you under this +License will not have their licenses terminated so long as such +parties remain in full compliance. + + +10. FUTURE REVISIONS OF THIS LICENSE + +The Free Software Foundation may publish new, revised versions +of the GNU Free Documentation License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. See +http://www.gnu.org/copyleft/. + +Each version of the License is given a distinguishing version number. +If the Document specifies that a particular numbered version of this +License "or any later version" applies to it, you have the option of +following the terms and conditions either of that specified version or +of any later version that has been published (not as a draft) by the +Free Software Foundation. If the Document does not specify a version +number of this License, you may choose any version ever published (not +as a draft) by the Free Software Foundation. + + +ADDENDUM: How to use this License for your documents + +To use this License in a document you have written, include a copy of +the License in the document and put the following copyright and +license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.2 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + +If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, +replace the "with...Texts." line with this: + + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + +If you have Invariant Sections without Cover Texts, or some other +combination of the three, merge those two alternatives to suit the +situation. + +If your document contains nontrivial examples of program code, we +recommend releasing these examples in parallel under your choice of +free software license, such as the GNU General Public License, +to permit their use in free software. + --- gimp-help-2.4.0.orig/debian/gimp-help-ru.links +++ gimp-help-2.4.0/debian/gimp-help-ru.links @@ -0,0 +1 @@ +usr/share/doc/gimp-help-common usr/share/doc/gimp-help-ru --- gimp-help-2.4.0.orig/debian/gimp-help-sv.links +++ gimp-help-2.4.0/debian/gimp-help-sv.links @@ -0,0 +1 @@ +usr/share/doc/gimp-help-common usr/share/doc/gimp-help-sv --- gimp-help-2.4.0.orig/debian/docs +++ gimp-help-2.4.0/debian/docs @@ -0,0 +1,2 @@ +README +NEWS --- gimp-help-2.4.0.orig/debian/gimp-help-es.links +++ gimp-help-2.4.0/debian/gimp-help-es.links @@ -0,0 +1 @@ +usr/share/doc/gimp-help-common usr/share/doc/gimp-help-es --- gimp-help-2.4.0.orig/debian/gimp-help-ru.doc-base +++ gimp-help-2.4.0/debian/gimp-help-ru.doc-base @@ -0,0 +1,10 @@ +Document: gimp-help-ru +Title: GIMP User's Manual (Russian) +Author: Various +Abstract: This manual contains documentation for using the + GNU Image Manipulation Program (The GIMP) in the Russian language. +Section: Apps/Graphics + +Format: HTML +Index: /usr/share/doc/gimp-help-common/html/ru/index.html +Files: /usr/share/doc/gimp-help-common/html/ru/*.html --- gimp-help-2.4.0.orig/debian/gimp-help-ko.links +++ gimp-help-2.4.0/debian/gimp-help-ko.links @@ -0,0 +1 @@ +usr/share/doc/gimp-help-common usr/share/doc/gimp-help-ko --- gimp-help-2.4.0.orig/debian/watch +++ gimp-help-2.4.0/debian/watch @@ -0,0 +1,2 @@ +version=3 +ftp://ftp.gimp.org/pub/gimp/help/gimp-help-(.*)\.tar\.bz2 --- gimp-help-2.4.0.orig/debian/gimp-help-it.doc-base +++ gimp-help-2.4.0/debian/gimp-help-it.doc-base @@ -0,0 +1,10 @@ +Document: gimp-help-it +Title: GIMP User's Manual (Italian) +Author: Various +Abstract: This manual contains documentation for using the + GNU Image Manipulation Program (The GIMP) in the Italian language. +Section: Apps/Graphics + +Format: HTML +Index: /usr/share/doc/gimp-help-common/html/it/index.html +Files: /usr/share/doc/gimp-help-common/html/it/*.html --- gimp-help-2.4.0.orig/stylesheets/profile-mode.xsl +++ gimp-help-2.4.0/stylesheets/profile-mode.xsl @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + --- gimp-help-2.4.0.orig/stylesheets/profile.xsl.debdiff +++ gimp-help-2.4.0/stylesheets/profile.xsl.debdiff @@ -0,0 +1,12 @@ + + + + + + + + +