libgtfb (0.1.0-1) debian-dir only changes

Summary

 debian/changelog                |    8 +++
 debian/compat                   |    1 
 debian/control                  |   42 ++++++++++++++++
 debian/copyright                |   20 ++++++++
 debian/dirs                     |    2 
 debian/libgtfb0-dev.dirs        |    2 
 debian/libgtfb0-dev.install     |    3 +
 debian/libgtfb0.default         |   10 ++++
 debian/libgtfb0.dirs            |    1 
 debian/libgtfb0.install         |    1 
 debian/rules                    |   99 ++++++++++++++++++++++++++++++++++++++++
 debian/shlibs.local             |    1 
 debian/source.lintian-overrides |    3 +
 13 files changed, 193 insertions(+)

    
download this patch

Patch contents

--- libgtfb-0.1.0.orig/debian/dirs
+++ libgtfb-0.1.0/debian/dirs
@@ -0,0 +1,2 @@
+usr/bin
+usr/sbin
--- libgtfb-0.1.0.orig/debian/libgtfb0.dirs
+++ libgtfb-0.1.0/debian/libgtfb0.dirs
@@ -0,0 +1 @@
+usr/lib
--- libgtfb-0.1.0.orig/debian/compat
+++ libgtfb-0.1.0/debian/compat
@@ -0,0 +1 @@
+7
--- libgtfb-0.1.0.orig/debian/libgtfb0-dev.dirs
+++ libgtfb-0.1.0/debian/libgtfb0-dev.dirs
@@ -0,0 +1,2 @@
+usr/lib
+usr/include
--- libgtfb-0.1.0.orig/debian/copyright
+++ libgtfb-0.1.0/debian/copyright
@@ -0,0 +1,20 @@
+This package was debianized by Matt Flax <flatmax@ieee.org> on
+Tue, 31 Mar 2009 12:23:16 +1100.
+
+It was downloaded from N/A
+
+Upstream Author:
+
+	Matt Flax <flatmax@>
+
+Copyright:
+
+    <Copyright (C) 1999 Matt Flax>
+
+License:
+
+    GPL License, see  `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2009, Matt Flax <flatmax@ieee.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
--- libgtfb-0.1.0.orig/debian/rules
+++ libgtfb-0.1.0/debian/rules
@@ -0,0 +1,99 @@
+#!/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
+
+
+
+
+
+
+# shared library versions, option 1
+version=2.0.5
+major=2
+# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
+#version=`ls src/.libs/lib*.so.* | \
+# awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
+#major=`ls src/.libs/lib*.so.* | \
+# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	# Add here commands to configure the package.
+
+	touch configure-stamp
+
+
+build: build-stamp
+build-stamp: configure-stamp  
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+
+	touch $@
+
+clean: 
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	$(MAKE) clean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp
+	$(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
+
+
+# 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_installinit
+#	dh_installcron
+#	dh_installinfo
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_python
+	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
--- libgtfb-0.1.0.orig/debian/libgtfb0-dev.install
+++ libgtfb-0.1.0/debian/libgtfb0-dev.install
@@ -0,0 +1,3 @@
+usr/include/*
+usr/lib/lib*.so
+usr/share/doc/libgtfb0-dev/*
--- libgtfb-0.1.0.orig/debian/libgtfb0.default
+++ libgtfb-0.1.0/debian/libgtfb0.default
@@ -0,0 +1,10 @@
+# Defaults for libgtfb initscript
+# sourced by /etc/init.d/libgtfb
+# installed at /etc/default/libgtfb by the maintainer scripts
+
+#
+# This is a POSIX shell fragment
+#
+
+# Additional options that are passed to the Daemon.
+DAEMON_OPTS=""
--- libgtfb-0.1.0.orig/debian/control
+++ libgtfb-0.1.0/debian/control
@@ -0,0 +1,42 @@
+Source: libgtfb
+Priority: extra
+Maintainer: mffm Matt Flax (2003) <flatmax@ieee.org>
+Build-Depends: debhelper (>= 7)
+Standards-Version: 3.7.3
+Section: libs
+Homepage: http://www.flatmaxstudios.com
+
+Package: libgtfb0-dev
+Section: libdevel
+Architecture: any
+Depends: libgtfb0 (= ${binary:Version})
+Description: a psychoacoustics gammatone filter bank library
+ Header and example files for the gammatone library
+ This library implements the Gammatone auditory filter
+ bank which is a psychoacoustic model of how the basilar
+ membrane moves in the ear.
+ The library can filter arbitrary arrays of audio data 
+ and will produce the gammatone output for each of the 
+ filters which are spread along the length of the ear.
+ The -DEV package comes with example code.
+ This package is a C++ implementation of Slaney's 1993 
+ report :
+ "An Efficient Implementation of the 
+ Patterson-Holdsworth Auditory Filter Bank"
+
+Package: libgtfb0
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: a psychoacoustics gammatone filter bank library
+ This library implements the Gammatone auditory filter
+ bank which is a psychoacoustic model of how the basilar
+ membrane moves in the ear.
+ The library can filter arbitrary arrays of audio data 
+ and will produce the gammatone output for each of the 
+ filters which are spread along the length of the ear.
+ The -DEV package comes with example code.
+ This package is a C++ implementation of Slaney's 1993 
+ report :
+ "An Efficient Implementation of the 
+ Patterson-Holdsworth Auditory Filter Bank"
--- libgtfb-0.1.0.orig/debian/source.lintian-overrides
+++ libgtfb-0.1.0/debian/source.lintian-overrides
@@ -0,0 +1,3 @@
+libgtfb source: out-of-date-standards-version 3.7.3 (current is 3.8.0)
+
+
--- libgtfb-0.1.0.orig/debian/shlibs.local
+++ libgtfb-0.1.0/debian/shlibs.local
@@ -0,0 +1 @@
+liblibgtfb 0.1.0 libgtfb0 (>> 0.1.0-0), libgtfb0 (<< 0.1.0-99)
--- libgtfb-0.1.0.orig/debian/changelog
+++ libgtfb-0.1.0/debian/changelog
@@ -0,0 +1,8 @@
+libgtfb (0.1.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #521686)
+  * Not MIA - Matt Flax is flatmax 1 (Closes: #521459)
+  * Not MIA - Matt R. Flax is flatmax 2 (Closes: #521460)
+
+ -- mffm Matt Flax (2003) <flatmax@ieee.org>  Tue, 31 Mar 2009 12:23:16 +1100
+
--- libgtfb-0.1.0.orig/debian/libgtfb0.install
+++ libgtfb-0.1.0/debian/libgtfb0.install
@@ -0,0 +1 @@
+usr/lib/lib*.so.*