--- gnote-0.6.2.orig/gnote-0.6.2.tar.bz2.cdbs-config_list
+++ gnote-0.6.2/gnote-0.6.2.tar.bz2.cdbs-config_list
@@ -0,0 +1,3 @@
+gnote-0.6.2/config.h.in
+gnote-0.6.2/config.guess
+gnote-0.6.2/config.sub
--- gnote-0.6.2.orig/debian/buildcore.mk
+++ gnote-0.6.2/debian/buildcore.mk
@@ -0,0 +1,290 @@
+# -*- mode: makefile; coding: utf-8 -*-
+# Copyright © 2002,2003 Colin Walters <walters@debian.org>
+# Description: Defines the rule framework
+#
+# 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_buildcore
+_cdbs_rules_buildcore = 1
+
+include $(_cdbs_rules_path)/buildvars.mk$(_cdbs_makefile_suffix)
+
+# Can we change this to cdbs_curpkg = $(notdir $@) ?
+cdbs_curpkg = $(filter-out %/,$(subst /,/ ,$@))
+
+testdir: debian/control
+	test -x debian/rules
+
+testroot:
+ifdef _cdbs_rules_debhelper
+	dh_testroot
+else
+	test "`id -u`" = 0
+endif
+
+$(patsubst %,makebuilddir/%,$(DEB_ALL_PACKAGES)) :: makebuilddir/% : 
+	$(if $(DEB_BUILDDIR_$(cdbs_curpkg)),mkdir -p "$(DEB_BUILDDIR_$(cdbs_curpkg))")
+
+makebuilddir:: $(patsubst %,makebuilddir/%,$(DEB_ALL_PACKAGES))
+	mkdir -p "$(DEB_BUILDDIR)"
+
+cdbs_streq = $(if $(filter-out xx,x$(subst $1,,$2)$(subst $2,,$1)x),,yes)
+
+cleanbuilddir:: $(patsubst %,cleanbuilddir/%,$(DEB_ALL_PACKAGES))
+	-$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rmdir $(DEB_BUILDDIR))
+
+$(patsubst %,cleanbuilddir/%,$(DEB_ALL_PACKAGES)) :: cleanbuilddir/% : 
+	-$(if $(DEB_BUILDDIR_$(cdbs_curpkg)),$(if $(call cdbs_streq,$(DEB_BUILDDIR_$(cdbs_curpkg)),$(DEB_SRCDIR)),,rmdir "$(DEB_BUILDDIR_$(cdbs_curpkg))"))
+
+
+# This variable is used by tarball.mk, but we want it here in order to check
+# tarball contents before unpacking.  tarball.mk imports this file anyway.
+DEB_TARBALL ?= $(wildcard *.tar *.tgz *.tar.gz *.tar.bz *.tar.bz2 *.zip)
+
+ifneq (, $(findstring .bz2, $(DEB_TARBALL)))
+CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), bzip2
+endif
+ifneq (, $(findstring .zip, $(DEB_TARBALL)))
+CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), unzip
+endif
+
+# make is dumb
+close_parenthesis = )
+
+ifneq (, $(DEB_TARBALL))
+$(warning parsing $(DEB_TARBALL) ...)
+config_all_tar		:= $(shell \
+for i in $(DEB_TARBALL) ; do \
+	if ! test -e $$i.cdbs-config_list ; then \
+		echo Parsing $$i... >&2 ; \
+		case $$i in \
+			*.tar$(close_parenthesis) tar -tf $$i | grep "/config\.[^/]*$$" > $$i.cdbs-config_list ;; \
+			*.tgz|*.tar.gz$(close_parenthesis) tar -tzf $$i | grep "/config\.[^/]*$$" > $$i.cdbs-config_list ;; \
+			*.tar.bz|*.tar.bz2$(close_parenthesis) tar -tjf $$i | grep "/config\.[^/]*$$" > $$i.cdbs-config_list ;; \
+			*.zip$(close_parenthesis) unzip -l $$i | grep "/config\.[^/]*$$" > $$i.cdbs-config_list ;; \
+			*$(close_parenthesis) echo Warning: tarball $$i with unknown format >&2 ;; \
+		esac ; \
+	fi ; \
+	cat $$i.cdbs-config_list ; \
+done)
+endif
+
+# Avoid recursive braindamage if we're building autotools-dev
+ifeq (, $(shell grep -x 'Package: autotools-dev' debian/control))
+config_guess		:= $(shell find $(DEB_SRCDIR) -type f -name config.guess)
+config_sub		:= $(shell find $(DEB_SRCDIR) -type f -name config.sub)
+ifneq (, $(config_all_tar))
+config_guess_tar	:= $(filter %/config.guess, $(config_all_tar))
+config_sub_tar		:= $(filter %/config.sub, $(config_all_tar))
+endif
+endif
+# Ditto for gnulib
+ifeq (, $(shell grep -x 'Package: gnulib' debian/control))
+config_rpath		:= $(shell find $(DEB_SRCDIR) -type f -name config.rpath)
+ifneq (, $(config_all_tar))
+config_rpath_tar	:= $(filter %/config.rpath, $(config_all_tar))
+endif
+endif
+
+ifneq (, $(config_guess)$(config_sub)$(config_guess_tar)$(config_sub_tar))
+CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), autotools-dev
+endif
+ifneq (, $(config_rpath)$(config_rpath_tar))
+CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), gnulib (>= 0.0.20041014-2)
+endif
+
+# This target is called before almost anything else happens.  It's a good place
+# to do stuff like unpack extra source tarballs, apply patches, and stuff.  In
+# the future it will be a good place to generate debian/control, but right
+# now we don't support that very well.
+pre-build:: testdir makebuilddir
+	$(foreach x,$(_cdbs_deprecated_vars),$(if $(shell test "$($x)" != "$(_cdbs_deprecated_$(x)_default)" && echo W),$(warning WARNING:  $x is a deprecated variable)))
+
+# This target is called after patches are applied.  Used by the patch system.
+post-patches:: pre-build apply-patches update-config
+update-config::
+ifneq (, $(config_guess))
+	if test -e /usr/share/misc/config.guess ; then \
+		for i in $(config_guess) ; do \
+			if ! test -e $$i.cdbs-orig ; then \
+				mv $$i $$i.cdbs-orig ; \
+				cp --remove-destination /usr/share/misc/config.guess $$i ; \
+			fi ; \
+		done ; \
+	fi
+endif
+ifneq (, $(config_sub))
+	if test -e /usr/share/misc/config.sub ; then \
+		for i in $(config_sub) ; do \
+			if ! test -e $$i.cdbs-orig ; then \
+				mv $$i $$i.cdbs-orig ; \
+				cp --remove-destination /usr/share/misc/config.sub $$i ; \
+			fi ; \
+		done ; \
+	fi
+endif
+ifneq (, $(config_rpath))
+	if test -e /usr/share/gnulib/config/config.rpath ; then \
+		for i in $(config_rpath) ; do \
+			if ! test -e $$i.cdbs-orig ; then \
+				mv $$i $$i.cdbs-orig ; \
+				cp --remove-destination /usr/share/gnulib/config/config.rpath $$i ; \
+			fi ; \
+		done ; \
+	fi
+endif
+
+# This target should be used to configure the package before building.  Typically
+# this involves running things like ./configure.
+common-configure-arch:: post-patches
+common-configure-indep:: post-patches
+$(patsubst %,configure/%,$(DEB_ARCH_PACKAGES)) :: configure/% : common-configure-arch
+$(patsubst %,configure/%,$(DEB_INDEP_PACKAGES)) :: configure/% : common-configure-indep
+
+# This is a required Debian target; however, its specific semantics is
+# in dispute.  We are of the opinion that 'build' should invoke
+# build-arch and build-indep.  Policy tends to support us here.
+# However, dpkg-buildpackage is currently invokes debian/rules build
+# even when doing an architecture-specific (binary-arch) build.  This
+# essentially means Build-Depends-Indep is worthless.  For more
+# information, see Policy §5.2, Policy §7.6, and Debian Bug #178809.
+# For now, you may override the dependencies by setting the variable
+# DEB_BUILD_DEPENDENCIES, below.  This is not recommended.
+DEB_BUILD_DEPENDENCIES = build-arch build-indep
+build: $(DEB_BUILD_DEPENDENCIES)
+
+# This target should take care of actually compiling the package from source.
+# Most often this involves invoking "make".
+common-build-arch:: testdir $(patsubst %,configure/%,$(DEB_ARCH_PACKAGES))
+common-build-indep:: testdir $(patsubst %,configure/%,$(DEB_INDEP_PACKAGES))
+$(patsubst %,build/%,$(DEB_ARCH_PACKAGES)) :: build/% : common-build-arch configure/%
+$(patsubst %,build/%,$(DEB_INDEP_PACKAGES)) :: build/% : common-build-indep configure/%
+
+# This rule is for stuff to run after the build process.  Note that this
+# may run under fakeroot or sudo, so it's inappropriate for things that
+# should be run under the build target.
+common-post-build-arch:: common-build-arch $(patsubst %,build/%,$(DEB_ARCH_PACKAGES)) 
+common-post-build-indep:: common-build-indep $(patsubst %,build/%,$(DEB_INDEP_PACKAGES)) 
+
+# Required Debian targets.
+build-arch: $(patsubst %,build/%,$(DEB_ARCH_PACKAGES))
+build-indep: $(patsubst %,build/%,$(DEB_INDEP_PACKAGES))
+
+# This rule is used to prepare the source package before a diff is generated.
+# Typically you will invoke upstream's "make clean" rule here, although you
+# can also hook in other stuff here.  Many of the included rules and classes
+# add stuff to this rule.
+clean:: testdir testroot cleanbuilddir reverse-config
+reverse-config::
+ifneq (::, $(config_guess):$(config_sub):$(config_rpath))
+	for i in $(config_guess) $(config_sub) $(config_rpath) ; do \
+		if test -e $$i.cdbs-orig ; then \
+			mv $$i.cdbs-orig $$i ; \
+		fi ; \
+	done
+endif
+
+ifneq (, $(DEB_AUTO_UPDATE_DEBIAN_CONTROL))
+control_cpu		:= $(shell grep "^Cpu:" debian/control.in | sed -e "s/^.*: //g" -e "s/ /,/g")
+ifeq (, $(control_cpu))
+ifneq (, $(shell egrep "\[(system|cpu): .*\]" debian/control.in))
+$(error inconsistency in control.in: [(system|cpu): ] tags were used but Cpu:|System: was not)
+endif
+else
+# Prevent recursive braindamage when building type-handling with cdbs.
+ifeq (, $(shell grep -x 'Package: type-handling' debian/control))
+CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), type-handling (>= 0.2.5)
+endif
+control_system		:= $(shell grep "^System:" debian/control.in | sed -e "s/^.*: //g" -e "s/ /,/g")
+control_arch		:= $(shell type-handling $(control_cpu) $(control_system))
+endif
+endif
+debian/control::
+ifneq ($(DEB_AUTO_UPDATE_DEBIAN_CONTROL),)
+	sed \
+		-e "s/@cdbs@/$(CDBS_BUILD_DEPENDS)/g" \
+		-e "s/^Build-Depends\(\|-Indep\): ,/Build-Depends\1:/g" \
+		\
+		-e "s/^Cpu: .*/Architecture: $(control_arch)/g" \
+		-e "/^System: /d" \
+		\
+		-e "s/\[cpu: \([^]]*\)\]/\[\`type-handling \\\\\`echo \1 | tr ' ' ','\\\\\` any\`\]/g" \
+		-e "s/\[system: \([^]]*\)\]/\[\`type-handling any \\\\\`echo \1 | tr ' ' ','\\\\\`\`\]/g" \
+		\
+		-e "s/\"/\\\\\"/g" \
+		-e "s/^/echo \"/g" \
+		-e "s/\\$$/\\\\$$/g" \
+		-e "s/$$/\"/g" \
+	< debian/control.in | $(SHELL) > debian/control
+	-dpkg-checkbuilddeps -B
+endif
+
+# This rule is called before the common-install target.  It's currently only
+# used by debhelper.mk, to run dh_clean -k.
+common-install-prehook-arch::
+common-install-prehook-indep::
+
+# This target should do all the work of installing the package into the
+# staging directory (debian/packagename or debian/tmp).
+common-install-arch:: testdir common-install-prehook-arch common-post-build-arch
+common-install-indep:: testdir common-install-prehook-indep common-post-build-indep
+
+# Required Debian targets.
+install-arch: $(patsubst %,install/%,$(DEB_ARCH_PACKAGES))
+install-indep: $(patsubst %,install/%,$(DEB_INDEP_PACKAGES))
+
+# These rules should do any installation work specific to a particular package.
+$(patsubst %,install/%,$(DEB_ARCH_PACKAGES)) :: install/% : testdir testroot common-install-arch build/%
+$(patsubst %,install/%,$(DEB_INDEP_PACKAGES)) :: install/% : testdir testroot common-install-indep build/%
+
+# This rule is called after all packages are installed.
+common-binary-arch:: testdir testroot $(patsubst %,install/%,$(DEB_ARCH_PACKAGES))
+common-binary-indep:: testdir testroot $(patsubst %,install/%,$(DEB_INDEP_PACKAGES))
+
+# Required Debian targets
+binary-indep: $(patsubst %,binary/%,$(DEB_INDEP_PACKAGES))
+binary-arch: $(patsubst %,binary/%,$(DEB_ARCH_PACKAGES))
+
+# These rules should do all the work of actually creating a .deb from the staging
+# directory.
+$(patsubst %,binary/%,$(DEB_ARCH_PACKAGES)) :: binary/% : testdir testroot common-binary-arch install/% 
+$(patsubst %,binary/%,$(DEB_INDEP_PACKAGES)) :: binary/% : testdir testroot common-binary-indep install/% 
+
+# Required Debian target
+binary: binary-indep binary-arch
+
+##
+# Deprecated targets.  You should use the -arch and -indep targets instead.
+##
+common-configure:: common-configure-arch common-configure-indep 
+common-build:: common-build-arch common-build-indep
+common-post-build:: common-post-build-arch common-post-build-indep
+common-install-prehook:: common-install-prehook-arch common-install-prehook-indep
+common-install:: common-install-arch common-install-indep
+common-binary:: common-binary-arch common-binary-indep
+
+.PHONY: pre-build apply-patches post-patches common-configure-arch common-configure-indep $(patsubst %,configure/%,$(DEB_ALL_PACKAGES)) build common-build-arch common-build-indep $(patsubst %,build/%,$(DEB_ALL_PACKAGES)) build-arch build-indep clean common-install-arch common-install-indep install-arch install-indep $(patsubst %,install/%,$(DEB_ALL_PACKAGES)) common-binary-arch common-binary-indep $(patsubst %,binary/%,$(DEB_ALL_PACKAGES)) binary-indep binary-arch binary $(DEB_PHONY_RULES)
+
+# Parallel execution of the cdbs makefile fragments will fail, but
+# this way you can call dpkg-buildpackage with MAKEFLAGS=-j in the
+# environment and the package's own makefiles can use parallel make.
+.NOTPARALLEL:
+
+endif
--- gnote-0.6.2.orig/debian/changelog
+++ gnote-0.6.2/debian/changelog
@@ -0,0 +1,187 @@
+gnote (0.6.2-2~bpo50+1) lenny-backports; urgency=low
+
+  * lenny backport.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Sat, 19 Dec 2009 02:24:19 +0100
+
+gnote (0.6.2-2) unstable; urgency=low
+
+  * Build-Depend on automake1.11 as first option.  (Closes: #541643)
+  * Enable D-Bus support.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Fri, 14 Aug 2009 10:07:41 +0200
+
+gnote (0.6.2-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Wed, 12 Aug 2009 23:42:51 +0200
+
+gnote (0.6.1-1) unstable; urgency=low
+
+  * New upstream release.  (Closes: #539435)
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Sat, 01 Aug 2009 00:44:59 +0200
+
+gnote (0.6.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Thu, 30 Jul 2009 15:40:45 +0200
+
+gnote (0.5.3-1) unstable; urgency=low
+
+  * New upstream release.
+    - rules (get-orig-source): Use sha256sum to verify download.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Wed, 15 Jul 2009 13:04:42 +0200
+
+gnote (0.5.2-1) unstable; urgency=low
+
+  * New upstream release.
+    - Fix corruption problem with non-ASCII chars.  (Closes: #534969)
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Wed, 01 Jul 2009 21:34:45 +0200
+
+gnote (0.5.1-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Thu, 25 Jun 2009 14:31:41 +0200
+
+gnote (0.5.0-1) experimental; urgency=low
+
+  * New upstream release.
+    - control (Build-Depends): Replace libxml++2.6-dev with libxml2-dev,
+      and libboost-regex-dev with libpcre++-dev.
+    - patches/01_boost_m4.diff: Remove.
+    - patches/02_fix_date_conversion.diff: Remove.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Wed, 17 Jun 2009 15:20:29 +0200
+
+gnote (0.4.0-3) unstable; urgency=high
+
+  * patches/02_fix_date_conversion.diff: New patch (from upstream).  Fix
+    segfault when g_time_val_to_iso8601() fails at converting datestamps
+    from Tomboy.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Sun, 14 Jun 2009 17:26:21 +0200
+
+gnote (0.4.0-2) unstable; urgency=low
+
+  * Add -Wl,--as-needed to LDFLAGS.  (Closes: #529213)
+    - rules
+    - patches/01_boost_m4.diff: New patch (from upstream) to fix --as-needed.
+  * control (Provides): Add tomboy.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Sun, 07 Jun 2009 19:48:06 +0200
+
+gnote (0.4.0-1) unstable; urgency=low
+
+  * New upstream release.
+    - control (Build-Depends): Add libxslt1-dev.
+  * rules: Include tarball.mk first to prevent cdbs from building
+    config.status twice.
+  * control (Build-Depends): Require libxml++2.6-dev (>= 2.26).  According to
+    upstream, earlier versions are too buggy for Gnote to work reliably.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Fri, 29 May 2009 19:13:04 +0200
+
+gnote (0.3.1-7) unstable; urgency=low
+
+  * Fix a pair of problems in German translation (patches from upstream):
+    - patches/03_fix_german_1.diff  (Closes: #528930)
+    - patches/04_fix_german_2.diff  (Closes: #528931)
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Mon, 18 May 2009 09:06:18 +0200
+
+gnote (0.3.1-6) unstable; urgency=low
+
+  * copyright: Document GFDL in help/*.
+  * copyright: List libtomboy/eggaccelerators.[ch].
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Mon, 11 May 2009 09:33:37 +0200
+
+gnote (0.3.1-5) unstable; urgency=low
+
+  * Misc debian/copyright improvements.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Sun, 10 May 2009 21:09:26 +0200
+
+gnote (0.3.1-4) unstable; urgency=low
+
+  * Add missing reference to GPL/LGPL license text.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Sun, 10 May 2009 20:04:55 +0200
+
+gnote (0.3.1-3) unstable; urgency=low
+
+  * Rewrite debian/copyright by (loosely) following DEP-5 proposal.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Sun, 10 May 2009 18:51:56 +0200
+
+gnote (0.3.1-2) unstable; urgency=low
+
+  * Use © symbol for copyright lines.
+  * Support debhelper 6.
+  * patches/01_applet_in_libexec.diff: Move applet to /usr/lib/gnote.
+  * patches/02_assume_utf8.diff: Assume UTF-8 encoding (fixes lintian warning).
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Wed, 06 May 2009 20:11:35 +0200
+
+gnote (0.3.1-1) unstable; urgency=low
+
+  * New upstream release.
+    - Remove 10-gnote_applet_fix.patch (merged).
+
+  [ Savvas Radevic ]
+  * Remove *.la files during build.
+
+  [ Robert Millan ]
+  * rules: Include /usr/share/cdbs/1/class/gnome.mk for gconf setup.
+  * control (Build-Depends): Add libgtkspell-dev to enable spell checker.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Wed, 06 May 2009 02:56:37 +0200
+
+gnote (0.3.0-1) unstable; urgency=low
+
+  * New upstream release.
+    - Includes panel applet.
+    - Adds a few add-ons.
+    - patches/02_manpage_syntax.diff: Remove (merged).
+    - Buildable on Lenny (gtk+ 2.12).  Add xdg-utils as alternate dependency
+      when libgtk2.0-0 (>= 2.14) is not present.
+
+  [ Savvas Radevic ]
+  * Add debian/watch file.
+  * control (Standards-Version): Bump to 3.8.1.
+  * Added 10-gnote_applet_fix.patch (fixes applet icon to "gnote").
+
+  [ Robert Millan ]
+  * rules: Add get-orig-source rule.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Tue, 05 May 2009 02:25:19 +0200
+
+gnote (0.2.0-2) unstable; urgency=low
+
+  * 01_fhs.diff: Remove.  Instead pass --with-gconf-schema-file-dir=\
+    /usr/share/gconf/schemas to configure.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Sun, 26 Apr 2009 02:23:55 +0200
+
+gnote (0.2.0-1) unstable; urgency=low
+
+  * New upstream release.
+    - rules: Avoid hardcoding version number.
+    - patches/01_fhs.diff: Resync.
+
+  * copyright: Minor clarification.
+  * patches/02_manpage_syntax.diff: Fix syntax error in gnote.1.
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Sat, 25 Apr 2009 14:04:54 +0200
+
+gnote (0.1.1-1) unstable; urgency=low
+
+  * Initial release. (Closes: #523093)
+
+ -- Robert Millan <rmh.debian@aybabtu.com>  Fri, 10 Apr 2009 22:27:00 +0200
--- gnote-0.6.2.orig/debian/control
+++ gnote-0.6.2/debian/control
@@ -0,0 +1,40 @@
+Source: gnote
+Section: gnome
+Priority: optional
+Maintainer: Robert Millan <rmh.debian@aybabtu.com>
+Build-Depends: cdbs,
+ debhelper (>= 6),
+ bzip2,
+ automake1.11 | automake1.10 | automake (>= 1:1.10),
+ autoconf (>= 2.53),
+ pkg-config (>= 0.14.0),
+ libgtk2.0-dev (>= 2.12),
+ libglibmm-2.4-dev,
+ libgtkmm-2.4-dev,
+ libpanelappletmm-2.6-dev,
+ libgtkspell-dev,
+ libxml2-dev,
+ libgconf2-dev,
+ uuid-dev,
+ libboost-dev,
+ libboost-filesystem-dev,
+ libboost-test-dev,
+ libpcre++-dev,
+ intltool (>= 0.35),
+ gnome-doc-utils (>= 0.4.2),
+ rarian-compat,
+ libxslt1-dev,
+ libdbus-c++-dev,
+Standards-Version: 3.8.1
+Homepage: http://live.gnome.org/Gnote
+
+Package: gnote
+Architecture: any
+Provides: tomboy
+Depends: ${shlibs:Depends}, ${misc:Depends}, libgtk2.0-0 (>= 2.14) | xdg-utils
+Description: desktop note taking program using Wiki style links
+ Gnote is a desktop note-taking application which is simple and easy to
+ use. It lets you organise your notes intelligently by allowing you to
+ easily link ideas together with Wiki style interconnects.
+ .
+ It is a port of Tomboy to C++ and consumes less resources.
--- gnote-0.6.2.orig/debian/watch
+++ gnote-0.6.2/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://ftp.gnome.org/pub/GNOME/sources/gnote/(?:[\d\w\.]+)/gnote-(.*)\.tar\.bz2
--- gnote-0.6.2.orig/debian/compat
+++ gnote-0.6.2/debian/compat
@@ -0,0 +1 @@
+6
--- gnote-0.6.2.orig/debian/rules
+++ gnote-0.6.2/debian/rules
@@ -0,0 +1,42 @@
+#!/usr/bin/make -f
+
+deb_version		:= $(shell dpkg-parsechangelog | sed -ne "s/^Version: \(.*\)/\1/p")
+orig_version		:= $(shell echo $(deb_version) | sed -e "s/-.*//")
+upstream_version	:= $(shell echo $(orig_version) | sed -e "s/+.*//")
+major := $(shell echo $(upstream_version) | sed -e "s/\([0-9]\+\.[0-9]\+\)\..*/\1/g")
+upstream_base_url := http://ftp.gnome.org/pub/GNOME/sources/gnote
+
+DEB_TAR_SRCDIR := gnote-$(upstream_version)
+
+#DEB_AUTO_UPDATE_AUTOMAKE := 1.11
+#DEB_AUTO_UPDATE_AUTOCONF := 2.50
+DEB_CONFIGURE_USER_FLAGS := \
+	--disable-scrollkeeper \
+	--disable-static \
+	$(NULL)
+
+LDFLAGS = "-Wl,--as-needed" 
+
+include /usr/share/cdbs/1/rules/tarball.mk
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/cdbs/1/class/gnome.mk		# must be after debhelper.mk
+
+clean::
+	rm -rf tempdir
+
+get-orig-source: ../gnote_$(orig_version).orig.tar.gz
+
+../gnote_$(orig_version).orig.tar.gz: tempdir/gnote-$(upstream_version)/gnote-$(upstream_version).tar.bz2
+	tar -C tempdir -cf - --mtime=@0 gnote-$(upstream_version) | gzip -fn9 > $@
+
+tempdir/gnote-$(upstream_version)/gnote-$(upstream_version).tar.bz2:
+	mkdir -p `dirname $@`
+	wget $(upstream_base_url)/$(major)/gnote-$(upstream_version).tar.bz2 -O - > $@ || rm -f $@
+	cd tempdir/gnote-$(upstream_version) && wget $(upstream_base_url)/$(major)/gnote-$(upstream_version).sha256sum -O - -q \
+		| grep bz2 \
+		| sha256sum -c -
+
+binary-install/gnote::
+	find debian/gnote -name "*.la" -exec rm -f "{}" \;
--- gnote-0.6.2.orig/debian/docs
+++ gnote-0.6.2/debian/docs
@@ -0,0 +1 @@
+debian/fdl-1.2.txt
--- gnote-0.6.2.orig/debian/copyright
+++ gnote-0.6.2/debian/copyright
@@ -0,0 +1,170 @@
+Name: Gnote
+Maintainer: Hubert Figuiere <hub@figuiere.net>
+Source: http://live.gnome.org/Gnote
+
+Files: *
+Copyright: 2004, 2005 Alex Graveley <alex@beatniksoftware.com>
+           2009, Hubert Figuiere <hub@figuiere.net>
+License: GPL-3+ and LGPL-2.1
+ Hubert Figuiere's part of the file covered under GPL-3+.
+ .
+ Alex Graveley's part of the file covered under LGPL-2.1.
+
+Files: help/*
+Copyright: 2008, Alex Graveley
+           2008, Brent Smith
+           2008, Free Software Foundation
+           2008, Boyd Timothy
+           2008, Sandy Armstrong
+           2008, Paul Cutler
+           2009, Hubert Figuiere
+License: GFDL-1.1+
+ Permission is granted to copy, distribute and/or modify this
+ document under the terms of the GNU Free Documentation
+ License (GFDL), Version 1.1 or any later version published
+ by the Free Software Foundation with no Invariant Sections,
+ no Front-Cover Texts, and no Back-Cover Texts.
+ .
+ You can find a copy of the GFDL, version 1.2, in the `fdl-1.2.txt'
+ file.
+
+Files: src/sharp/*.[ch]pp
+Copyright: 2009, Hubert Figuiere <hub@figuiere.net>
+License: other
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the "Software"),
+ to deal in the Software without restriction, including without limitation
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ and/or sell copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ DEALINGS IN THE SOFTWARE.
+
+Files: install-sh
+Copyright: 1994, X Consortium
+License: other
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to
+ deal in the Software without restriction, including without limitation the
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
+ X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+ AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
+ TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ .
+ Except as contained in this notice, the name of the X Consortium shall not
+ be used in advertising or otherwise to promote the sale, use or other deal-
+ ings in this Software without prior written authorization from the X Consor-
+ tium.
+
+Files: src/contrast.[ch]pp
+Copyright: 2006-2007, David Trowbridge
+License: other
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Files: src/actionmanager.cpp
+Copyright: 2009, Hubert Figuiere <hub@figuiere.net>
+           2005-2006, Novell, Inc.
+License: GPL-3+ and other
+ Hubert Figuiere's part of the file covered under GPL-3+.
+ .
+ Novell's part of the file covered under the following terms:
+ .
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the "Software"),
+ to deal in the Software without restriction, including without limitation
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ and/or sell copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ DEALINGS IN THE SOFTWARE.
+
+Files: libtomboy/{tomboykeybinder,tomboyutil}.[ch]
+Copyright: 2008, Alex Graveley
+License: other
+ Permission is hereby granted, free of charge, to any person obtaining 
+ a copy of this software and associated documentation files (the 
+ "Software"), to deal in the Software without restriction, including 
+ without limitation the rights to use, copy, modify, merge, publish, 
+ distribute, sublicense, and/or sell copies of the Software, and to 
+ permit persons to whom the Software is furnished to do so, subject to 
+ the following conditions: 
+ .
+ The above copyright notice and this permission notice shall be 
+ included in all copies or substantial portions of the Software. 
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
+
+Files: libtomboy/eggaccelerators.[ch]
+Copyright: 2002, Red Hat, Inc.
+           1998, 2001, Tim Janik
+License: LGPL-2+
+
+Files: debian/*
+Copyright: 2009, Robert Millan <rmh.debian@aybabtu.com>
+License: GPL-3+
+
+
+License: GPL-3+
+ On Debian systems the full text of the GNU General Public
+ License can be found in the `/usr/share/common-licenses/GPL'
+ file.
+
+License: LGPL-2.1
+ On Debian systems the full text of the GNU Lesser General Public
+ License, version 2.1, can be found in the
+ `/usr/share/common-licenses/LGPL-2.1' file.
+
+License: LGPL-2+
+ On Debian systems the full text of the GNU Lesser General Public
+ License can be found in the `/usr/share/common-licenses/LGPL'
+ file.
--- gnote-0.6.2.orig/debian/fdl-1.2.txt
+++ gnote-0.6.2/debian/fdl-1.2.txt
@@ -0,0 +1,397 @@
+		GNU Free Documentation License
+		  Version 1.2, November 2002
+
+
+ Copyright (C) 2000,2001,2002  Free Software Foundation, Inc.
+     51 Franklin St, Fifth Floor, Boston, MA  02110-1301  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.
