gzrt (0.5-1) debian-dir only changes

Summary

 debian/changelog |    6 ++++++
 debian/compat    |    1 +
 debian/control   |   18 ++++++++++++++++++
 debian/copyright |   34 ++++++++++++++++++++++++++++++++++
 debian/dirs      |    1 +
 debian/docs      |    2 ++
 debian/install   |    1 +
 debian/manpages  |    1 +
 debian/rules     |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/watch     |    2 ++
 10 files changed, 117 insertions(+)

    
download this patch

Patch contents

--- gzrt-0.5.orig/debian/dirs
+++ gzrt-0.5/debian/dirs
@@ -0,0 +1 @@
+usr/bin
--- gzrt-0.5.orig/debian/docs
+++ gzrt-0.5/debian/docs
@@ -0,0 +1,2 @@
+README
+NEWS
--- gzrt-0.5.orig/debian/control
+++ gzrt-0.5/debian/control
@@ -0,0 +1,18 @@
+Source: gzrt
+Section: utils
+Priority: optional
+Maintainer: Paul Wise <pabs@debian.org>
+Build-Depends: debhelper (>= 5.0.0), zlib1g-dev
+Standards-Version: 3.7.2
+
+Package: gzrt
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends} 
+Recommends: cpio
+Description: gzip recovery toolkit
+ gzrecover will attempt to skip over corrupted data in a gzip archive,
+ thereby allowing the remaining data to be recovered.
+ .
+ Please install cpio to facilitate recovery from damaged gzipped tarballs.
+ .
+  Homepage: http://www.urbanophile.com/arenn/hacking/gzrt/
--- gzrt-0.5.orig/debian/rules
+++ gzrt-0.5/debian/rules
@@ -0,0 +1,51 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+
+CFLAGS = -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	CFLAGS="$(CFLAGS)" $(MAKE) 
+	cp ChangeLog NEWS
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp NEWS
+	-$(MAKE) clean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+	dh_install
+
+binary-indep: build install
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_installman
+	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
--- gzrt-0.5.orig/debian/watch
+++ gzrt-0.5/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://www.urbanophile.com/arenn/hacking/gzrt/gzrt-([\d\.]+)\.tar\.gz
--- gzrt-0.5.orig/debian/changelog
+++ gzrt-0.5/debian/changelog
@@ -0,0 +1,6 @@
+gzrt (0.5-1) unstable; urgency=low
+
+  * Initial release (Closes: #378112)
+
+ -- Paul Wise <pabs@debian.org>  Wed, 13 Jun 2007 16:13:30 +0100
+
--- gzrt-0.5.orig/debian/manpages
+++ gzrt-0.5/debian/manpages
@@ -0,0 +1 @@
+gzrecover.1
--- gzrt-0.5.orig/debian/compat
+++ gzrt-0.5/debian/compat
@@ -0,0 +1 @@
+5
--- gzrt-0.5.orig/debian/copyright
+++ gzrt-0.5/debian/copyright
@@ -0,0 +1,34 @@
+This package was debianized by Paul Wise <pabs@debian.org> on
+Thu, 13 Jul 2006 18:54:08 +0800.
+
+It was downloaded from http://www.urbanophile.com/arenn/hacking/gzrt/
+
+Author:
+
+   Aaron M. Renn <arenn@urbanophile.com>
+
+Copyright:
+
+   Copyright (c) 2002-2006 Aaron M. Renn
+
+License:
+
+   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 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 placed in the Public Domain
+and is written by Paul Wise <pabs@debian.org>
--- gzrt-0.5.orig/debian/install
+++ gzrt-0.5/debian/install
@@ -0,0 +1 @@
+gzrecover usr/bin