vdr/vdr/debian rules control changelog
Thomas Schmidt
pkg-vdr-dvb-changes@lists.alioth.debian.org
Sat, 24 Apr 2004 10:40:56 +0000
Update of /cvsroot/pkg-vdr-dvb/vdr/vdr/debian
In directory haydn:/tmp/cvs-serv11826/vdr/debian
Modified Files:
rules control changelog
Log Message:
use dpatch as patch-system
Index: changelog
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/vdr/debian/changelog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- changelog 24 Apr 2004 09:37:56 -0000 1.2
+++ changelog 24 Apr 2004 10:40:54 -0000 1.3
@@ -1,3 +1,11 @@
+vdr (1.2.6-4) unstable; urgency=low
+
+ Thomas Schmidt:
+ * Use dpatch, so build-depend on dpatch
+ * Build-Depend on: dvb-dev | linux-kernel-headers
+
+ -- Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de> Sat, 24 Apr 2004 12:04:41 +0200
+
vdr (1.2.6-3.1) unstable; urgency=low
* Non-Maintainer-Upload during Bug-Squashing-Party.
Index: control
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/vdr/debian/control,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- control 21 Apr 2004 14:19:06 -0000 1.1.1.1
+++ control 24 Apr 2004 10:40:54 -0000 1.2
@@ -2,7 +2,7 @@
Section: misc
Priority: extra
Maintainer: Andreas Mueller <amu@tr.debian.net>
-Build-Depends: debhelper (>= 4.1.16), dvb-dev (>= 1.0.0), g++, libncurses5-dev, libjpeg62-dev
+Build-Depends: debhelper (>= 4.1.16), dvb-dev (>= 1.0.0) | linux-kernel-headers (>=2.5.999-test7-bk-6), g++, libncurses5-dev, libjpeg62-dev, dpatch
Standards-Version: 3.6.1
Package: vdr
Index: rules
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/vdr/debian/rules,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- rules 21 Apr 2004 14:19:07 -0000 1.1.1.1
+++ rules 24 Apr 2004 10:40:54 -0000 1.2
@@ -11,6 +11,9 @@
# export the videodir
export VIDEODIR=/var/lib/video
+# include dpatch stuff
+include /usr/share/dpatch/dpatch.make
+
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CFLAGS += -g
endif
@@ -24,7 +27,7 @@
touch configure-stamp
-build: configure-stamp build-stamp
+build: patch-stamp configure-stamp build-stamp
build-stamp:
dh_testdir
@@ -57,18 +60,19 @@
touch build-stamp
-clean:
+clean: clean-patched unpatch
+
+clean-patched:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
# Add here commands to clean up after the build process.
+ -$(MAKE) plugins-clean
-$(MAKE) clean
rm -f vdr-kbd vdr-daemon vdr-lirc vdr-rcu
- -$(MAKE) plugins-clean
-
dh_clean
install: build
@@ -132,4 +136,4 @@
dh_builddeb
binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+.PHONY: build clean binary-indep binary-arch binary install patch unpatch configure clean-patched