--- mooproxy-0.1.3.orig/debian/control
+++ mooproxy-0.1.3/debian/control
@@ -0,0 +1,21 @@
+Source: mooproxy
+Section: net
+Priority: extra
+Maintainer: Marcel Moreaux <marcelm@luon.net>
+Build-Depends: debhelper (>= 5.0.0)
+Standards-Version: 3.8.4
+
+Package: mooproxy
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: A buffering proxy for moo-connections
+ Mooproxy is a buffering proxy for MOOs (a class of text-based RPGs,
+ descending from MUDs). The MOO client connects to mooproxy, and mooproxy
+ connects to the MOO server.
+ .
+ Mooproxy keeps you connected to the MOO server if the client disconnects
+ (voluntarily, because of network problems, because the client crashes,
+ because of a power outage, etc).
+ .
+ Mooproxy also provides centralised logging, buffers text when the client
+ isn't connected, and provides context when the client does connect.
--- mooproxy-0.1.3.orig/debian/compat
+++ mooproxy-0.1.3/debian/compat
@@ -0,0 +1 @@
+5
--- mooproxy-0.1.3.orig/debian/changelog
+++ mooproxy-0.1.3/debian/changelog
@@ -0,0 +1,5 @@
+mooproxy (0.1.3-1) unstable; urgency=low
+
+  * Initial release, closes: #586108.
+
+ -- Marcel Moreaux <marcelm@luon.net>  Wed, 16 Jun 2010 16:08:04 +0200
--- mooproxy-0.1.3.orig/debian/docs
+++ mooproxy-0.1.3/debian/docs
@@ -0,0 +1,4 @@
+README
+TODO
+ExampleConfig
+update-logs.sh
--- mooproxy-0.1.3.orig/debian/rules
+++ mooproxy-0.1.3/debian/rules
@@ -0,0 +1,76 @@
+#!/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
+
+
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+	$(MAKE) CFLAGS="$(CFLAGS)"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	$(MAKE) clean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+	install -d $(CURDIR)/debian/mooproxy/usr/bin
+	install mooproxy $(CURDIR)/debian/mooproxy/usr/bin
+
+
+# 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 Changelog
+	dh_installdocs
+#	dh_install
+	dh_installman mooproxy.1
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	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
--- mooproxy-0.1.3.orig/debian/copyright
+++ mooproxy-0.1.3/debian/copyright
@@ -0,0 +1,22 @@
+This package was debianized by Marcel Moreaux <marcelm@luon.net> on
+Wed, 16 Jun 2010 14:53:55 +0200
+
+It was downloaded from:
+ http://qvdr.net/software/#mooproxy
+
+Upstream Authors:
+ Marcel Moreaux <marcelm@luon.net>
+
+Files: *
+Copyright:
+  Copyright (C) 2001-2007 Marcel Moreaux <marcelm@luon.net>
+License: GPL-2
+ On Debian systems, the complete text of the GPL-2 can be found in
+ /usr/share/common-licenses/GPL-2.
+
+Files: debian/*
+Copyright:
+  Copyright (C) 2001-2007 Marcel Moreaux <marcelm@luon.net>
+License: GPL-2
+ On Debian systems, the complete text of the GPL-2 can be found in
+ /usr/share/common-licenses/GPL-2.
