--- ascii2binary-2.13.orig/debian/copyright
+++ ascii2binary-2.13/debian/copyright
@@ -0,0 +1,27 @@
+This package was debianized by Mohammed Sameer <debian@foolab.org> on
+Sat,  3 Jun 2006 20:26:06 +0300.
+
+
+It was downloaded from http://billposer.org/Software/a2b.html
+
+Copyright Holder: Copyright (C) 2003-2006 Bill Poser <billposer@alum.mit.edu>
+
+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'.
+
--- ascii2binary-2.13.orig/debian/compat
+++ ascii2binary-2.13/debian/compat
@@ -0,0 +1 @@
+4
--- ascii2binary-2.13.orig/debian/changelog
+++ ascii2binary-2.13/debian/changelog
@@ -0,0 +1,21 @@
+ascii2binary (2.13-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Mohammed Sameer <debian@foolab.org>  Sun, 17 Jun 2007 23:18:59 +0300
+
+ascii2binary (2.11-2) unstable; urgency=low
+
+  * debian/rules: Cleaned up.
+  * debian/control:
+    - Better package description
+    - Removed autotools-dev from Build-Depends.
+
+ -- Mohammed Sameer <debian@foolab.org>  Wed,  2 Aug 2006 00:10:49 +0300
+
+ascii2binary (2.11-1) unstable; urgency=low
+
+  * Initial release (Closes: #370145)
+
+ -- Mohammed Sameer <debian@foolab.org>  Sat,  3 Jun 2006 20:26:06 +0300
+
--- ascii2binary-2.13.orig/debian/control
+++ ascii2binary-2.13/debian/control
@@ -0,0 +1,32 @@
+Source: ascii2binary
+Section: misc
+Priority: optional
+Maintainer: Mohammed Sameer <debian@foolab.org>
+Build-Depends: debhelper (>= 4.0.0)
+Standards-Version: 3.7.2
+
+Package: ascii2binary
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Convert between ASCII, hexadecimal and binary representations
+ This package contains:
+  * ascii2binary reads input consisting of ascii or hexadecimal representation
+    numbers separated by whitespace and produces as output the binary
+    equivalents. The type and precision of the binary output is selected
+    using command line flags.
+  * binary2ascii reads input consisting of binary numbers and converts
+    them to their ascii or hexadecimal representation.
+    Command line flags specify the type and size of the binary numbers
+    and provide control over the format of the output.
+    Unsigned integers may be written out in binary, octal, decimal,
+    or hexadecimal.
+    Signed integers may be written out only in binary or decimal. Floating
+    point numbers may be written out only decimal, either in standard or
+    scientific notation. (If you want to examine the binary representation
+    of floating point numbers, just treat the input as a sequence of unsigned
+    characters.)
+ .
+ The two programs are useful for generating test data, for inspecting binary
+ files, and for interfacing programs that generate textual output to programs
+ that require  binary input and conversely. They can also be useful when it is
+ desired to reformat numbers.
--- ascii2binary-2.13.orig/debian/rules
+++ ascii2binary-2.13/debian/rules
@@ -0,0 +1,73 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# 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
+
+config.status: configure
+	dh_testdir
+	CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	-$(MAKE) distclean
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/ascii2binary
+
+
+# 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_installman
+	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 
