[SCM] libdv/master: Switch packaging to 3.0 (quilt) format plus DH 7, convert patches to quilt format.

alessio at users.alioth.debian.org alessio at users.alioth.debian.org
Wed Feb 8 22:02:35 UTC 2012


The following commit has been merged in the master branch:
commit 2c783b13844fa862d5161b17901f04418c57366e
Author: Alessio Treglia <alessio at debian.org>
Date:   Wed Feb 8 23:02:31 2012 +0100

    Switch packaging to 3.0 (quilt) format plus DH 7, convert patches to quilt format.

diff --git a/debian/compat b/debian/compat
index 7ed6ff8..7f8f011 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-5
+7
diff --git a/debian/control b/debian/control
index 531a3bf..c6dbaca 100644
--- a/debian/control
+++ b/debian/control
@@ -5,9 +5,8 @@ Maintainer: Debian Multimedia Maintainers <pkg-multimedia-maintainers at lists.alio
 Uploaders:
  Alessio Treglia <alessio at debian.org>
 Build-Depends:
- autotools-dev,
- debhelper (>= 5.0.0),
- dpatch,
+ debhelper (>= 7.0.50~),
+ dh-autoreconf,
  file,
  libglib2.0-dev,
  libgtk2.0-dev,
diff --git a/debian/patches/0001-configure_gtk2.patch b/debian/patches/0001-configure_gtk2.patch
new file mode 100644
index 0000000..3e592cb
--- /dev/null
+++ b/debian/patches/0001-configure_gtk2.patch
@@ -0,0 +1,30 @@
+From: bdefreese at debian2.bddebian.com
+Description: Tweak gtk/glib requirements in configure script to build
+ with version 2.0 instead of now-obsolete 1.2.
+---
+ configure    |    2 +-
+ configure.ac |    2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+--- libdv.orig/configure
++++ libdv/configure
+@@ -20082,7 +20082,7 @@ fi
+ 
+ have_gtk="false"
+ if $use_gtk; then
+-	REQUIRES='glib >= 1.2.4 gtk+ >= 1.2.4'
++	REQUIRES='glib-2.0 >= 2.0.0 gtk+-2.0 >= 2.0.0'
+ 
+ 
+ if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
+--- libdv.orig/configure.ac
++++ libdv/configure.ac
+@@ -162,7 +162,7 @@ AM_CONDITIONAL(HOST_X86_64, test x$arch_
+ dnl Checks for libraries.
+ have_gtk="false"
+ if $use_gtk; then
+-	REQUIRES='glib >= 1.2.4 gtk+ >= 1.2.4'
++	REQUIRES='glib-2.0 >= 2.0.0 gtk+-2.0 >= 2.0.0'
+ 	PKG_CHECK_MODULES(GTK,$REQUIRES,have_gtk="true",have_gtk="false")
+ 	AC_DEFINE(HAVE_GTK)
+ fi
diff --git a/debian/patches/0002-hurd_ftbfs_fix.patch b/debian/patches/0002-hurd_ftbfs_fix.patch
new file mode 100644
index 0000000..d1055cc
--- /dev/null
+++ b/debian/patches/0002-hurd_ftbfs_fix.patch
@@ -0,0 +1,23 @@
+Author: Pino Toscano <toscano.pino at tiscali.it>
+Description: Add proper Hurd-specific _IOT defines for the video1394_mmap and
+ video1394_wait structs.
+---
+ encodedv/dvconnect.c |    7 +++++++
+ 1 file changed, 7 insertions(+)
+
+--- libdv.orig/encodedv/dvconnect.c
++++ libdv/encodedv/dvconnect.c
+@@ -117,6 +117,13 @@ struct video1394_wait
+ #define VIDEO1394_LISTEN_POLL_BUFFER	\
+ 	_IOWR('#', 0x18, struct video1394_wait)
+ 
++#ifdef __GNU__
++#define _IOT_video1394_mmap			\
++	_IOT(_IOTS(int), 1, _IOTS(unsigned int), 7, 0, 0)
++#define _IOT_video1394_wait			\
++	_IOT(_IOTS(unsigned int), 2, _IOTS(struct timeval), 1, 0, 0)
++#endif
++
+ static int cap_start_frame = 0;
+ static int cap_num_frames = 0xfffffff;
+ static int cap_verbose_mode;
diff --git a/debian/patches/10_zap_config_h.dpatch b/debian/patches/0003-zap_config_h.patch
similarity index 59%
rename from debian/patches/10_zap_config_h.dpatch
rename to debian/patches/0003-zap_config_h.patch
index 0992654..3ad4b04 100644
--- a/debian/patches/10_zap_config_h.dpatch
+++ b/debian/patches/0003-zap_config_h.patch
@@ -1,36 +1,15 @@
-#!/bin/sh -e
-## 10_zap_config_h.dpatch by Daniel Kobras <kobras at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: dv_types.h is part of the libdv API that has to be included
-## DP: in application code. Therefore, it may not reference libdv's
-## DP: private config.h.
-## DP: Of course, config.h was included for a reason, and this patch
-## DP: tries to cover it up, because at least in the scope of the
-## DP: Debian package we can reliably guess at the contents of config.h.
+Author: Daniel Kobras <kobras at debian.org>
+Description: dv_types.h is part of the libdv API that has to be included
+ in application code. Therefore, it may not reference libdv's private
+ config.h. Of course, config.h was included for a reason, and this patch
+ tries to cover it up, because at least in the scope of the
+ Debian package we can reliably guess at the contents of config.h.
+---
+ libdv/dv_types.h |   42 ++++++++++++++++++++++++++++++------------
+ 1 file changed, 30 insertions(+), 12 deletions(-)
 
-if [ $# -lt 1 ]; then
-    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-    exit 1
-fi
-
-[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
-patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
-
-case "$1" in
-       -patch) patch $patch_opts -p1 < $0;;
-       -unpatch) patch $patch_opts -p1 -R < $0;;
-        *)
-                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-                exit 1;;
-esac
-
-exit 0
-
- at DPATCH@
-diff -urNad --exclude=CVS --exclude=.svn ./libdv/dv_types.h /tmp/dpep-work.X4gSie/libdv/libdv/dv_types.h
---- ./libdv/dv_types.h	2005-07-10 19:31:16.000000000 +0200
-+++ /tmp/dpep-work.X4gSie/libdv/libdv/dv_types.h	2005-07-10 19:58:28.000000000 +0200
+--- libdv.orig/libdv/dv_types.h
++++ libdv/libdv/dv_types.h
 @@ -26,10 +26,11 @@
  #ifndef DV_TYPES_H
  #define DV_TYPES_H
@@ -83,7 +62,7 @@ diff -urNad --exclude=CVS --exclude=.svn ./libdv/dv_types.h /tmp/dpep-work.X4gSi
 +#  define ARCH_X86_64 0
 +# endif
 +#endif
-+			       
++
  // For now assume ARCH_X86 means GCC with hints.
  #ifdef ARCH_X86
 -#define HAVE_GCC 1
diff --git a/debian/patches/0004-move_config_h_to_apps.patch b/debian/patches/0004-move_config_h_to_apps.patch
new file mode 100644
index 0000000..cde5a70
--- /dev/null
+++ b/debian/patches/0004-move_config_h_to_apps.patch
@@ -0,0 +1,34 @@
+Author: Daniel Kobras <kobras at debian.org>
+Description: Removing inclusion of config.h from dv_types.h revealed two
+ files that should include it themselves.
+---
+ encodedv/encodedv.c     |    4 ++++
+ encodedv/insert_audio.c |    4 ++++
+ 2 files changed, 8 insertions(+)
+
+--- libdv.orig/encodedv/encodedv.c
++++ libdv/encodedv/encodedv.c
+@@ -24,6 +24,10 @@
+  *  The libdv homepage is http://libdv.sourceforge.net/.  
+  */
+ 
++#ifdef HAVE_CONFIG_H
++#include <config.h>
++#endif
++
+ #include <string.h>
+ #include "libdv/dv_types.h"
+ #include "libdv/dv.h"
+--- libdv.orig/encodedv/insert_audio.c
++++ libdv/encodedv/insert_audio.c
+@@ -23,6 +23,10 @@
+  *  The libdv homepage is http://libdv.sourceforge.net/.  
+  */
+ 
++#ifdef HAVE_CONFIG_H
++#include <config.h>
++#endif
++
+ #include "libdv/dv_types.h"
+ 
+ #include <stdio.h>
diff --git a/debian/patches/0005-no_as_needed.patch b/debian/patches/0005-no_as_needed.patch
new file mode 100644
index 0000000..aeca99a
--- /dev/null
+++ b/debian/patches/0005-no_as_needed.patch
@@ -0,0 +1,25 @@
+Description: Fix FTBFS with --no-add-needed.
+---
+ playdv/Makefile.am |    2 +-
+ playdv/Makefile.in |    2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+--- libdv.orig/playdv/Makefile.am
++++ libdv/playdv/Makefile.am
+@@ -15,4 +15,4 @@ bin_PROGRAMS= playdv
+ noinst_HEADERS=  display.h oss.h
+ 
+ playdv_SOURCES= playdv.c display.c display.h oss.c
+-playdv_LDADD= $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB)
++playdv_LDADD= $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB) -lXext -lX11
+--- libdv.orig/playdv/Makefile.in
++++ libdv/playdv/Makefile.in
+@@ -213,7 +213,7 @@ CLEANFILES =
+ AM_CFLAGS = $(SDL_CFLAGS) $(GTK_CFLAGS)
+ noinst_HEADERS = display.h oss.h
+ playdv_SOURCES = playdv.c display.c display.h oss.c
+-playdv_LDADD = $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB)
++playdv_LDADD = $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB) -lXext -lX11
+ all: all-am
+ 
+ .SUFFIXES:
diff --git a/debian/patches/00list b/debian/patches/00list
deleted file mode 100644
index b29a109..0000000
--- a/debian/patches/00list
+++ /dev/null
@@ -1,5 +0,0 @@
-10_configure_gtk2
-10_hurd_ftbfs_fix
-10_zap_config_h
-11_move_config_h_to_apps
-12_no_as_needed
diff --git a/debian/patches/10_configure_gtk2.dpatch b/debian/patches/10_configure_gtk2.dpatch
deleted file mode 100644
index b76df50..0000000
--- a/debian/patches/10_configure_gtk2.dpatch
+++ /dev/null
@@ -1,32 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 10_configure_gtk2.dpatch by  <bdefreese at debian2.bddebian.com>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Tweak gtk/glib requirements in configure script to build
-## DP: with version 2.0 instead of now-obsolete 1.2.
-
- at DPATCH@
-diff -urNad libdv-1.0.0~/configure libdv-1.0.0/configure
---- libdv-1.0.0~/configure	2006-09-25 16:11:47.000000000 -0400
-+++ libdv-1.0.0/configure	2009-03-24 14:34:21.000000000 -0400
-@@ -20082,7 +20082,7 @@
- 
- have_gtk="false"
- if $use_gtk; then
--	REQUIRES='glib >= 1.2.4 gtk+ >= 1.2.4'
-+	REQUIRES='glib-2.0 >= 2.0.0 gtk+-2.0 >= 2.0.0'
- 
- 
- if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
-diff -urNad libdv-1.0.0~/configure.ac libdv-1.0.0/configure.ac
---- libdv-1.0.0~/configure.ac	2006-08-06 17:38:30.000000000 -0400
-+++ libdv-1.0.0/configure.ac	2009-03-24 14:34:45.000000000 -0400
-@@ -162,7 +162,7 @@
- dnl Checks for libraries.
- have_gtk="false"
- if $use_gtk; then
--	REQUIRES='glib >= 1.2.4 gtk+ >= 1.2.4'
-+	REQUIRES='glib-2.0 >= 2.0.0 gtk+-2.0 >= 2.0.0'
- 	PKG_CHECK_MODULES(GTK,$REQUIRES,have_gtk="true",have_gtk="false")
- 	AC_DEFINE(HAVE_GTK)
- fi
diff --git a/debian/patches/10_hurd_ftbfs_fix.dpatch b/debian/patches/10_hurd_ftbfs_fix.dpatch
deleted file mode 100644
index 7c35f13..0000000
--- a/debian/patches/10_hurd_ftbfs_fix.dpatch
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh -e
-## 10_hurd_ftbfs_fix.dpatch by Pino Toscano <toscano.pino at tiscali.it>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Add proper Hurd-specific _IOT defines for the video1394_mmap and
-## DP: video1394_wait structs.
-
-if [ $# -lt 1 ]; then
-    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-    exit 1
-fi
-
-[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
-patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
-
-case "$1" in
-       -patch) patch $patch_opts -p1 < $0;;
-       -unpatch) patch $patch_opts -p1 -R < $0;;
-        *)
-                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-                exit 1;;
-esac
-
-exit 0
-
- at DPATCH@
---- a/encodedv/dvconnect.c
-+++ b/encodedv/dvconnect.c
-@@ -117,6 +117,13 @@
- #define VIDEO1394_LISTEN_POLL_BUFFER	\
- 	_IOWR('#', 0x18, struct video1394_wait)
- 
-+#ifdef __GNU__
-+#define _IOT_video1394_mmap			\
-+	_IOT(_IOTS(int), 1, _IOTS(unsigned int), 7, 0, 0)
-+#define _IOT_video1394_wait			\
-+	_IOT(_IOTS(unsigned int), 2, _IOTS(struct timeval), 1, 0, 0)
-+#endif
-+
- static int cap_start_frame = 0;
- static int cap_num_frames = 0xfffffff;
- static int cap_verbose_mode;
diff --git a/debian/patches/11_move_config_h_to_apps.dpatch b/debian/patches/11_move_config_h_to_apps.dpatch
deleted file mode 100644
index 6e49362..0000000
--- a/debian/patches/11_move_config_h_to_apps.dpatch
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh -e
-## 11_move_config_h_to_apps.dpatch by Daniel Kobras <kobras at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Removing inclusion of config.h from dv_types.h revealed two
-## DP: files that should include it themselves.
-
-if [ $# -lt 1 ]; then
-    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-    exit 1
-fi
-
-[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
-patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
-
-case "$1" in
-       -patch) patch $patch_opts -p1 < $0;;
-       -unpatch) patch $patch_opts -p1 -R < $0;;
-        *)
-                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-                exit 1;;
-esac
-
-exit 0
-
- at DPATCH@
-diff -urNad /home/kobras/src/debian/libdv/encodedv/encodedv.c libdv/encodedv/encodedv.c
---- /home/kobras/src/debian/libdv/encodedv/encodedv.c	2004-01-19 13:06:49.000000000 +0100
-+++ libdv/encodedv/encodedv.c	2004-01-19 23:58:45.000000000 +0100
-@@ -24,6 +24,10 @@
-  *  The libdv homepage is http://libdv.sourceforge.net/.  
-  */
- 
-+#ifdef HAVE_CONFIG_H
-+#include <config.h>
-+#endif
-+
- #include <string.h>
- #include "libdv/dv_types.h"
- #include "libdv/dv.h"
-diff -urNad /home/kobras/src/debian/libdv/encodedv/insert_audio.c libdv/encodedv/insert_audio.c
---- /home/kobras/src/debian/libdv/encodedv/insert_audio.c	2004-01-19 13:06:49.000000000 +0100
-+++ libdv/encodedv/insert_audio.c	2004-01-19 23:59:22.000000000 +0100
-@@ -23,6 +23,10 @@
-  *  The libdv homepage is http://libdv.sourceforge.net/.  
-  */
- 
-+#ifdef HAVE_CONFIG_H
-+#include <config.h>
-+#endif
-+
- #include "libdv/dv_types.h"
- 
- #include <stdio.h>
diff --git a/debian/patches/12_no_as_needed.dpatch b/debian/patches/12_no_as_needed.dpatch
deleted file mode 100644
index 9782ce8..0000000
--- a/debian/patches/12_no_as_needed.dpatch
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh -e
-## 12_no_as_needed.dpatch.dpatch
-##
-
-if [ $# -lt 1 ]; then
-    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-    exit 1
-fi
-
-[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
-patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
-
-case "$1" in
-       -patch) patch $patch_opts -p1 < $0;;
-       -unpatch) patch $patch_opts -p1 -R < $0;;
-        *)
-                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
-                exit 1;;
-esac
-
-exit 0
-
- at DPATCH@
---- ./playdv/Makefile.am~	2004-01-14 07:14:15.000000000 +0100
-+++ ./playdv/Makefile.am	2010-10-07 18:24:33.339608698 +0200
-@@ -15,4 +15,4 @@
- noinst_HEADERS=  display.h oss.h
- 
- playdv_SOURCES= playdv.c display.c display.h oss.c
--playdv_LDADD= $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB)
-+playdv_LDADD= $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB) -lXext -lX11
---- ./playdv/Makefile.in~	2006-09-25 22:11:48.000000000 +0200
-+++ ./playdv/Makefile.in	2010-10-07 18:24:37.732108854 +0200
-@@ -213,7 +213,7 @@
- AM_CFLAGS = $(SDL_CFLAGS) $(GTK_CFLAGS)
- noinst_HEADERS = display.h oss.h
- playdv_SOURCES = playdv.c display.c display.h oss.c
--playdv_LDADD = $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB)
-+playdv_LDADD = $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB) -lXext -lX11
- all: all-am
- 
- .SUFFIXES:
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..c191be3
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,5 @@
+0001-configure_gtk2.patch
+0002-hurd_ftbfs_fix.patch
+0003-zap_config_h.patch
+0004-move_config_h_to_apps.patch
+0005-no_as_needed.patch
diff --git a/debian/rules b/debian/rules
index 907e9a4..fca936e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,121 +1,17 @@
 #!/usr/bin/make -f
-# Sample debian/rules that uses debhelper.
-# GNU copyright 1997 to 1999 by Joey Hess.
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+%:
+	dh $@ --parallel --with autoreconf
 
-include /usr/share/dpatch/dpatch.make
-
-# 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 libdv/.libs/lib*.so.* | \
-# awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
-#major=`ls libdv/.libs/lib*.so.* | \
-# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
-
-export DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
-ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
-	libdv_confflags += --build $(DEB_HOST_GNU_TYPE)
-else
-	libdv_confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
-endif
-    
-
-CFLAGS ?= -Wall -g
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 CFLAGS += -O0
-else
-CFLAGS += -O2
 endif
 
-configure: configure-stamp
-configure-stamp:
-	dh_testdir
-	# Make sure we use the latest autotools helpers.
-	if test -f config.sub; then \
-                 mv config.sub config.sub.debsave; \
-	fi
-	if test -f config.guess; then \
-                 mv config.guess config.guess.debsave; \
-	fi
-
-	ln -sf /usr/share/misc/config.sub .
-	ln -sf /usr/share/misc/config.guess .
-
-	CFLAGS="$(CFLAGS)" ./configure $(libdv_confflags) \
-		--prefix=/usr --mandir=\$${prefix}/share/man \
-		--infodir=\$${prefix}/share/info --enable-sdl
-
-	touch configure-stamp
-
-build: patch-stamp configure-stamp build-stamp
-build-stamp:
-	dh_testdir
-
-	$(MAKE)
-
-	touch build-stamp
-
-clean: do-clean unpatch
-do-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp configure-stamp
-
-	[ ! -f Makefile ] || $(MAKE) distclean
-
-	if test -L config.sub -a -e config.sub.debsave; then \
-                rm config.sub; \
-		if test -e config.sub.debsave; then \
-			mv config.sub.debsave config.sub; \
-		fi; \
-        fi
-	if test -L config.guess -a -e config.guess.debsave; then \
-                rm config.guess; \
-		if test -e config.guess.debsave; then \
-			mv config.guess.debsave config.guess; \
-		fi; \
-        fi
-
-	dh_clean
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	dh_installdirs
-
-	$(MAKE) install DESTDIR="$(CURDIR)/debian/tmp/"
+override_dh_auto_configure:
+	dh_auto_configure -- \
+		--enable-sdl
 
+override_dh_auto_install:
+	override_dh_auto_install
 	# Empty dependency_libs line in .la file
 	sed -i 's/^dependency_libs=.*/dependency_libs=/' "$(CURDIR)/debian/tmp/usr/lib/libdv.la"
-
-# 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_install -A --sourcedir=debian/tmp # --list-missing
-	dh_installman
-	dh_link -A
-	dh_installdocs -plibdv4 -plibdv4-dev
-	dh_installchangelogs ChangeLog
-	dh_strip 
-	dh_compress
-	dh_fixperms
-	dh_makeshlibs
-	dh_installdeb 
-	dh_shlibdeps -L libdv4 -l debian/libdv4/usr/lib
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure patch unpatch do-clean
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)

-- 
libdv packaging



More information about the pkg-multimedia-commits mailing list