--- cd-discid-0.8.orig/debian/changelog
+++ cd-discid-0.8/debian/changelog
@@ -0,0 +1,56 @@
+cd-discid (0.8-1) unstable; urgency=low
+
+  * MacOS X support, thanks to Evan Jones <ejones@uwaterloo.ca>
+  * Remembered to include the Makefile in the tarball this time
+
+ -- Robert Woodcock <rcw@debian.org>  Sun,  5 Jan 2003 18:16:50 -0800
+
+cd-discid (0.7-1) unstable; urgency=low
+
+  * NetBSD support, thanks to Chris Gilbert <chris@NetBSD.org>
+
+ -- Robert Woodcock <rcw@debian.org>  Sat, 28 Jul 2001 17:48:52 -0700
+
+cd-discid (0.6-1) unstable; urgency=low
+
+  * OpenBSD support, thanks to Marcus Daniel <danielm@uni-muenster.de>
+
+ -- Robert Woodcock <rcw@debian.org>  Thu,  8 Feb 2001 21:33:23 -0800
+
+cd-discid (0.5-1) unstable; urgency=low
+
+  * FreeBSD support, thanks to Niels Bakker
+
+ -- Robert Woodcock <rcw@debian.org>  Wed, 18 Oct 2000 20:21:05 -0700
+
+cd-discid (0.4-1) unstable; urgency=low
+
+  * Now opens cdrom device with O_RDONLY | O_NONBLOCK for better
+    compatibility, thanks to Tommy U. Schonfeld
+  * Removed the last references to cdgrab
+  * Prints device name on failure (this can be handy for abcde users
+    who aren't aware of the default device)
+
+ -- Robert Woodcock <rcw@debian.org>  Sun, 14 May 2000 10:34:50 -0700
+
+cd-discid (0.3-1) unstable; urgency=low
+
+  * Now compiles on Solaris, thanks to David Champion
+
+ -- Robert Woodcock <rcw@debian.org>  Sat, 18 Mar 2000 03:20:13 -0800
+
+cd-discid (0.2-2) unstable; urgency=low
+
+  * FHS compliance.
+
+ -- Robert Woodcock <rcw@debian.org>  Mon, 11 Oct 1999 22:35:25 -0700
+
+cd-discid (0.2-1) unstable; urgency=low
+
+  * Split off from the cdgrab package.
+
+ -- Robert Woodcock <rcw@debian.org>  Fri,  7 May 1999 20:18:36 -0700
+
+Local variables:
+mode: debian-changelog
+End:
--- cd-discid-0.8.orig/debian/copyright
+++ cd-discid-0.8/debian/copyright
@@ -0,0 +1,16 @@
+This package was debianized by Robert Woodcock <rcw@debian.org> on
+Fri,  7 May 1999 20:20:14 -0700
+
+It is made available at: http://frantica.lly.org/~rcw/cd-discid/
+
+Upstream Author: me :)
+
+Copyright:
+
+Copyright (c) 1998,1999 Robert Woodcock <rcw@debian.org>
+This code is hereby licensed for public consumption under either the
+GNU GPL v2 or greater, or Larry Wall's Artistic license - your choice.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
--- cd-discid-0.8.orig/debian/dirs
+++ cd-discid-0.8/debian/dirs
@@ -0,0 +1 @@
+usr/bin
--- cd-discid-0.8.orig/debian/docs
+++ cd-discid-0.8/debian/docs
@@ -0,0 +1 @@
+README
--- cd-discid-0.8.orig/debian/control
+++ cd-discid-0.8/debian/control
@@ -0,0 +1,14 @@
+Source: cd-discid
+Section: sound
+Priority: optional
+Maintainer: Robert Woodcock <rcw@debian.org>
+Standards-Version: 3.5.5
+Build-Depends: debhelper
+
+Package: cd-discid
+Architecture: any
+Depends: ${shlibs:Depends}
+Conflicts: cdgrab (<< 0.7)
+Description: CDDB DiscID utility
+ cd-discid is a backend utility to get CDDB discid information from a CD-ROM
+ disc.
--- cd-discid-0.8.orig/debian/rules
+++ cd-discid-0.8/debian/rules
@@ -0,0 +1,75 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	
+	# Add here commands to compile the package.
+	$(MAKE) 
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp install-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) clean
+
+	dh_clean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	$(MAKE) install DESTDIR=`pwd`/debian/tmp
+
+	touch install-stamp
+
+# 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_testversion
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installinit
+	dh_installcron
+	dh_installmanpages
+#	dh_undocumented
+	dh_installchangelogs changelog
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
