--- /dev/null
+webdvd (0.2) unstable; urgency=low
+
+ * Debianised
+ * Corrected length of background filename buffer
+ * Worked around bogus error generated by imglib2
+
+ -- Ben Hutchings <ben@decadentplace.org.uk> Sat, 12 Nov 2005 15:24:07 +0000
+
+webdvd (0.1) unstable; urgency=low
+
+ * Initial version
+
+ -- Ben Hutchings <ben@decadentplace.org.uk> Thu, 03 Nov 2005 02:04:02 +0000
--- /dev/null
+Source: webdvd
+Maintainer: Ben Hutchings <ben@decadentplace.org.uk>
+Section: graphics
+Priority: extra
+Build-Depends: debhelper (>=4), libgtkmm2.0-dev, mozilla-dev
+Standards-Version: 3.6.2
+
+Package: webdvd
+Architecture: any
+Depends: xvfb, xfonts-base, ${shlibs:Depends}, ${mozilla:Depends}
+Recommends: dvdauthor, mjpegtools, mkisofs, netpbm
+Description: Converts HTML pages into DVD menus.
+ WebDVD is intended to provide a simple way of producing DVDs with
+ attractive and usable menus. It converts HTML pages into DVD menus by
+ rendering them in Mozilla and reproducing their link structure. This
+ allows you to design DVDs using familiar HTML editing tools or your
+ favourite text editor. This very early version produces a set of
+ files suitable for passing to the "dvdauthor" and "spumux" programs,
+ but in future it is intended to run the necessary external programs
+ automatically.
--- /dev/null
+#!/usr/bin/make -f
+
+build :
+ make prefix=/usr
+
+binary : binary-arch binary-indep
+
+binary-arch : build
+ dh_testroot
+ make prefix=debian/webdvd/usr install
+ dh_strip
+ dh_shlibdeps
+ @echo "Despite the warnings from dh_shlibdeps, this should complete dependencies:"
+ echo "mozilla:Depends=mozilla-browser (= $$(dpkg-query -W --showformat='$${version}' mozilla-browser))" >> debian/webdvd.substvars
+ mkdir -p -m755 debian/webdvd/usr/share/doc/webdvd
+ cp COPYING debian/webdvd/usr/share/doc/webdvd/copyright
+ dh_installchangelogs
+ dh_installdocs
+ dh_compress
+ dh_installdeb
+ dh_gencontrol
+ dh_builddeb
+
+binary-indep :
+
+clean :
+ make clean
+
+svn-build :
+ svn-buildpackage \
+ --svn-builder='pdebuild-dist $(if $(DIST),$(DIST),sid)'
+
+.PHONY : build binary binary-arch binary-dep clean svn-build