--- irssi-plugin-otr-0.2.orig/debian/dirs
+++ irssi-plugin-otr-0.2/debian/dirs
@@ -0,0 +1 @@
+usr/lib/irssi/modules
--- irssi-plugin-otr-0.2.orig/debian/changelog
+++ irssi-plugin-otr-0.2/debian/changelog
@@ -0,0 +1,46 @@
+irssi-plugin-otr (0.2-1~bpo40+1) etch-backports; urgency=low
+
+  * Backport testing version for backports.org
+  * Changed debian/control dependency on backported libotr2-dev
+  * Changed debian/control dependency on backported debhelper
+  * Changed debian/compat to be version 5
+  * Changed dependency on cmake to backported cmake
+  * Reduced dependency on libglib2.0-dev to 2.12.4-2 from 2.13.0, note this
+    causes HTML not to be stripped from the logs, but HTML is not stripped
+    from messages as it is now, so its not a big loss.
+  * Added dependency on irssi-dev from bpo (0.8.12-4~bpo40+1)
+
+ -- Micah Anderson <micah@debian.org>  Tue,  9 Sep 2008 15:52:42 -0600
+
+irssi-plugin-otr (0.2-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- David Spreen <netzwurm@debian.org>  Mon, 14 Jul 2008 08:50:59 -0700
+
+irssi-plugin-otr (0.1-3) unstable; urgency=low
+
+  * The 'Okay-Okay-I-Am-Using-Pbuilder-Already' release.
+  * CMakeLists.txt: Removed dependency on wget. Reported upstream. 
+    (Closes: #490021).
+  * Added new website address to control file/copyright file.
+
+ -- David Spreen <netzwurm@debian.org>  Thu, 10 Jul 2008 16:13:01 -0700
+
+irssi-plugin-otr (0.1-2) unstable; urgency=low
+
+  * debian/control: Added build-time dependency on python and pkg-config. 
+    (Closes: #489680).
+  * debian/copyright: Added proper copyright for the irssi headers that
+    are used to build the package.
+  * debian/control: Changed standards version to 3.8.0.1.
+
+ -- David Spreen <netzwurm@debian.org>  Mon, 07 Jul 2008 11:52:52 -0700
+
+irssi-plugin-otr (0.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #486156)
+  * CMakeLists.txt: Removed version number from /usr/share/doc/irssi-plugin-otr
+    (This has been reported to upstream and should be fixed in 0.2).
+
+ -- David Spreen <netzwurm@debian.org>  Tue, 01 Jul 2008 14:29:48 -0700
--- irssi-plugin-otr-0.2.orig/debian/control
+++ irssi-plugin-otr-0.2/debian/control
@@ -0,0 +1,33 @@
+Source: irssi-plugin-otr
+Section: net
+Priority: optional
+Maintainer: David Spreen <netzwurm@debian.org>
+Build-Depends: cmake (>= 2.6.0~bpo40+1) , debhelper (>= 5.0.60~bpo40+1+nmu1), libotr2-dev (>= 3.2.0-1~bpo40+1), libglib2.0-dev (>= 2.12.4-2), irssi-dev (>=0.8.12-4~bpo40+1), python, pkg-config
+Standards-Version: 3.8.0.1
+Homepage: http://irssi-otr.tuxfamily.org/
+
+Package: irssi-plugin-otr
+Architecture: any
+Depends: irssi, ${shlibs:Depends}, ${misc:Depends}
+Description: Off-the-Record Messaging Plugin for Irssi
+ Off-the-Record (OTR) Messaging Plugin for the Irssi Chat Client
+ .
+ This plugin adds Off-the-Record messaging support for the irssi IRC client.
+ Although primarily designed for use with the bitlbee IRC2IM gateway, it works
+ within any query window, provided that the conversation partner's IRC client
+ supports OTR.
+ .
+ OTR allows you to have private conversations over IM by providing:
+  - Encryption
+    - No one else can read your instant messages.
+  - Authentication
+    - You are assured the correspondent is who you think it is.
+  - Deniability
+    - The messages you send do _not_ have digital signatures that are
+      checkable by a third party.  Anyone can forge messages after a
+      conversation to make them look like they came from you.  However,
+      _during_ a conversation, your correspondent is assured the messages
+      he sees are authentic and unmodified.
+  - Perfect forward secrecy
+    - If you lose control of your private keys, no previous conversation
+      is compromised.
--- irssi-plugin-otr-0.2.orig/debian/rules
+++ irssi-plugin-otr-0.2/debian/rules
@@ -0,0 +1,82 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+
+
+builddir/CMakeCache.txt:
+	dh_testdir
+	mkdir -p builddir/
+	cd builddir && cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
+	 			-DCMAKE_PROJECT_NAME=irssi-plugin-otr
+
+build: build-stamp
+
+build-stamp: builddir/CMakeCache.txt
+	dh_testdir
+	cd builddir/ && $(MAKE)
+	touch $@
+
+clean: 
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	rm -rf builddir/
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	cd builddir/ && $(MAKE) DESTDIR=$(CURDIR)/debian/irssi-plugin-otr install
+
+	# Delete surplus license file
+	rm $(CURDIR)/debian/irssi-plugin-otr/usr/share/doc/irssi-plugin-otr/LICENSE
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs
+	dh_installexamples
+#	dh_install
+#	dh_installmenu
+#	dh_installdebconf	
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_python
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+#	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
--- irssi-plugin-otr-0.2.orig/debian/compat
+++ irssi-plugin-otr-0.2/debian/compat
@@ -0,0 +1 @@
+5
--- irssi-plugin-otr-0.2.orig/debian/copyright
+++ irssi-plugin-otr-0.2/debian/copyright
@@ -0,0 +1,40 @@
+This package was debianized by David Spreen <netzwurm@debian.org> on
+Mon, 30 Jun 2008 17:41:58 -0700.
+
+It was downloaded from http://irssi-otr.tuxfamily.org/
+
+Upstream Author: 
+
+    Uli Meis <irssiotr@tuxfamily.org>
+
+Copyright: 
+
+    Copyright (C) 2008 Uli Meis
+
+License:
+
+    This package is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+ 
+    This package is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+ 
+    You should have received a copy of the GNU General Public License
+    along with this package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2008, David Spreen <netzwurm@debian.org> and
+is licensed under the GPL, see above.
+
+The files under irssi-private-headers/ are headers shipped with irssi 
+and licensed under the GPL v2. See irssi bug FS#535 for more information.
+
+The original irssi-code is (C) 1998-2002 Timo Sirainen. Please see 
+/usr/share/doc/irssi/copyright for an extensive list of authors.
\ No newline at end of file
