--- dvdtape-1.6.orig/debian/copyright +++ dvdtape-1.6/debian/copyright @@ -0,0 +1,19 @@ +This is the Debian GNU/Linux prepackaged version of dvdtape, a tool +written by Adam J. Richter to create the metadata +needed when mastering DVDs for manufacture. + + Copyright 1999, 2000 Yggdrasil Computing, Inc. dvdtape may be copied + under the terms and conditions of version 2 of the GNU General + Public License, as published by the Free Software Foundation + (Cambridge, MA, USA). + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in /usr/share/common-licenses/GPL . + +This package was put together by Steve McIntyre <93sam@debian.org> +from sources obtained from: + +ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/ + +since the original upstream sources at Yggdrasil no longer seem +available. --- dvdtape-1.6.orig/debian/control +++ dvdtape-1.6/debian/control @@ -0,0 +1,16 @@ +Source: dvdtape +Section: utils +Priority: extra +Maintainer: Steve McIntyre <93sam@debian.org> +Build-Depends: debhelper (>= 4.1.16) +Standards-Version: 3.6.1.0 + +Package: dvdtape +Priority: extra +Architecture: any +Depends: ${shlibs:Depends} +Description: Create DVD master filesystems on DLT media + This tool will create the control files needed when mastering DVDs for + manufacturing (DDP information, DDPMS information, "lead in") and + output them to DLT tape(s) or disk files as desired. +Section: utils --- dvdtape-1.6.orig/debian/changelog +++ dvdtape-1.6/debian/changelog @@ -0,0 +1,6 @@ +dvdtape (1.6-1) unstable; urgency=high + + * Initial upload. Urgency high to get this into sarge; we need to use + this software to create DVD masters for the release! + + -- Steve McIntyre <93sam@debian.org> Wed, 18 Aug 2004 11:43:43 +0100 --- dvdtape-1.6.orig/debian/rules +++ dvdtape-1.6/debian/rules @@ -0,0 +1,63 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# This file is public domain software, originally written by Joey Hess. + +# 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 + + # Add here commands to clean up after the build process. + -$(MAKE) clean + -$(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs usr/share/man/man1 usr/bin + + # Add here commands to install the package into debian/ + #$(MAKE) prefix=`pwd`/debian/`dh_listpackages`/usr install + dh_install dvdtape usr/bin + dh_install dvdtape.1 usr/share/man/man1 + +# 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_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + 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