--- timps-0.25.orig/debian/README.Debian
+++ timps-0.25/debian/README.Debian
@@ -0,0 +1,8 @@
+Suggested usage:
+
+ timpsd -c /usr/share/doc/timps/examples/conf -d -D
+
+Please don't run this as root; it's likely that there are several security
+holes (hence the lack of an init.d script). Any user can run the daemon, as
+long as the port they specify isn't privileged. Multiple users can run the
+daemon simultaneously, as long as each specifies a different port to listen on.
--- timps-0.25.orig/debian/conf
+++ timps-0.25/debian/conf
@@ -0,0 +1,29 @@
+[module=conn]
+listenports=5190/timps-oscar
+;debug=10
+
+[module=timps]
+;debug=10
+
+[module=timps-logging]
+; prefixed to filenames below
+logfilepath=/var/log/timps
+; admin log gets all messages and user (dis)connects
+adminlogfile=timps-message.log
+; this will create a log file for each local user in the path above, of the
+; form 'logfilepath/timps-userlog.SERVICE.screenname'
+enableperuserlogs=true
+
+[module=timps-oscar]
+;debug=10
+; if you're using aimdlite for testing
+;authorizer=localhost:6190
+; default is login.oscar.aol.com:5190
+
+[module=logging]
+; this is the low-level logging module (in NAF) -- it does not see IMs
+logfilepath=/var/log/timps
+systemlogfile=timps-system.log
+
+[module=gnr]
+;debug=10
--- timps-0.25.orig/debian/rules
+++ timps-0.25/debian/rules
@@ -0,0 +1,69 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# upstream currently defaults to building without optimation
+CFLAGS = -Wall -g
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	# Add here commands to configure the package.
+	CFLAGS="$(CFLAGS)" ./configure --prefix=/usr
+	touch configure-stamp
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	[ ! -f Makefile ] || $(MAKE) distclean
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/mutella.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/timps install
+	rm -rf $(CURDIR)/debian/timps/usr/lib
+
+
+# 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_installdocs
+	dh_installexamples $(CURDIR)/debian/conf
+	dh_installchangelogs
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	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
--- timps-0.25.orig/debian/compat
+++ timps-0.25/debian/compat
@@ -0,0 +1 @@
+5
--- timps-0.25.orig/debian/copyright
+++ timps-0.25/debian/copyright
@@ -0,0 +1,23 @@
+This package was debianized by Eric Warmenhoven <warmenhoven@debian.org> on
+Thu May 26 17:03:31 PDT 2005.
+
+It was downloaded from ftp://ftp.zigamorph.net/pub/timps/
+Its website is http://www.zigamorph.net/timps/
+
+Upstream Author: Adam Fritzler <mid@zigamorph.net>
+
+Copyright 2004-2005 Adam Fritzler
+Copyright: GPL Version 2
+
+ 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
+ of the License, 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.
+
+On Debian systems, the complete text of the GNU General Public
+License, version 2, can be found in /usr/share/common-licenses/GPL-2.
--- timps-0.25.orig/debian/changelog
+++ timps-0.25/debian/changelog
@@ -0,0 +1,44 @@
+timps (0.25-4) unstable; urgency=low
+
+  * Build fix: 'dprintf' macro also defined by stdio as a function.
+    Closes: #552856.
+  * Change Build-Depends from 'libreadline5-dev | libreadline-dev' to just
+    'libreadline-dev'. Closes: #553865.
+  * Update config.guess, config.sub from autotools-dev. Closes: #536260.
+
+ -- Eric Warmenhoven <warmenhoven@debian.org>  Thu, 21 Jan 2010 11:37:15 -0800
+
+timps (0.25-3) unstable; urgency=low
+
+  * Build fix: "INT_MIN undeclared here", thanks to Daniel Schepler.
+    Closes: #526558.
+
+ -- Eric Warmenhoven <warmenhoven@debian.org>  Mon, 01 Jun 2009 14:45:12 -0700
+
+timps (0.25-2) unstable; urgency=low
+
+  * Fix build with conn.c fix from timps cvs. Closes: #470247.
+  * Fix lintian warnings (standards version, ignore make clean failure)
+
+ -- Eric Warmenhoven <warmenhoven@debian.org>  Mon, 10 Mar 2008 12:27:49 -0700
+
+timps (0.25-1) unstable; urgency=low
+
+  * New upstream version.
+  * Build with libreadline5-dev | libreadline-dev. Closes: #350650.
+
+ -- Eric Warmenhoven <warmenhoven@debian.org>  Fri, 17 Mar 2006 14:17:32 -0800
+
+timps (0.20-1) unstable; urgency=low
+
+  * New upstream version.
+  * Use rl_completion_matches. Closes: #311024.
+
+ -- Eric Warmenhoven <warmenhoven@debian.org>  Sun, 14 Aug 2005 16:31:35 -0700
+
+timps (0.10-1) unstable; urgency=low
+
+  * Initial Release. Closes: #310937.
+
+ -- Eric Warmenhoven <warmenhoven@debian.org>  Fri, 27 May 2005 00:14:21 -0700
+
--- timps-0.25.orig/debian/docs
+++ timps-0.25/debian/docs
@@ -0,0 +1,3 @@
+README
+AUTHORS
+NEWS
--- timps-0.25.orig/debian/control
+++ timps-0.25/debian/control
@@ -0,0 +1,27 @@
+Source: timps
+Section: net
+Priority: extra
+Maintainer: Eric Warmenhoven <warmenhoven@debian.org>
+Build-Depends: debhelper (>> 5), libreadline-dev, libncurses5-dev | libncurses-dev, libnbio-dev
+Standards-Version: 3.8.3
+
+Package: timps
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Transparent Instant Messaging Proxy Server
+ timps is an (optionally transparent) proxy server targeted at instant
+ messaging networks -- particularly AOL's Instant Messenger. One of the more
+ important features is that when multiple users are connected through the
+ proxy, messages between those users are kept in the local network and not
+ routed across the internet. Multiple proxies can be connected together to form
+ trusted networks for secure message routing. The proxy can also be used for
+ connecting artificial users, such as interactive agents / bots without rate
+ limiting. More generically, modules can be written that interact at any stage
+ of message routing, creating a flexible system for developing applications
+ with and on IM.
+ .
+ Since timps speaks the IM protocols natively (ie, it looks like an IM server),
+ DNS rerouting or other tricks can be used to invisibly force users through the
+ proxy. This is particularly useful for companies facing auditing compliance on
+ employee communications (for example, Sarbanes-Oxley for financial companies,
+ or normal policy for law firms).
--- timps-0.25.orig/debian/dirs
+++ timps-0.25/debian/dirs
@@ -0,0 +1 @@
+usr/bin
