vdr/nvram-wakeup/debian changelog control copyright rules templates templates.de

Thomas Schmidt pkg-vdr-dvb-changes@lists.alioth.debian.org
Mon, 05 Jul 2004 17:00:45 +0000


Update of /cvsroot/pkg-vdr-dvb/vdr/nvram-wakeup/debian
In directory haydn:/tmp/cvs-serv7367/vdr/nvram-wakeup/debian

Modified Files:
	changelog control copyright rules templates 
Removed Files:
	templates.de 
Log Message:
use po-debconf
use dpatch
makefile-fix
cleanup debian/rules a little bit
fixed small lintian warning (debian/copyright)

Index: templates
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/nvram-wakeup/debian/templates,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- templates	4 Jul 2004 09:56:32 -0000	1.1
+++ templates	5 Jul 2004 17:00:43 -0000	1.2
@@ -1,19 +1,18 @@
 Template: nvram-wakeup/install_module
 Type: boolean
 Default: false
-Description: Try to automatically install the nvram kernel module?
- Enable this, if you want setup to automatically load the
- nvram Kernel module and add it to /etc/modules. Without this kernel module
- you have to use direct I/O access by using the --directisa option.
- 
+_Description: Try to automatically install the nvram kernel module?
+ Enable this, if you want setup to automatically load the nvram Kernel
+ module and add it to /etc/modules. Without this kernel module you have to
+ use direct I/O access by using the --directisa option. 
 
 Template: nvram-wakeup/install_instruction
 Type: note
-Description: Install instructions
+_Description: Install instructions
  There are two ways the NVRAM can be accessed. To use direct I/O access you
- will have to specify the --directisa option.
- Alternatively you can use the nvram kernel module. If this kernel module is
- available, but not loaded, you may need to perform these steps:
+ will have to specify the --directisa option. Alternatively you can use the
+ nvram kernel module. If this kernel module is available, but not loaded,
+ you may need to perform these steps:
  .
  - mknod /dev/nvram c 10 144
  .

--- templates.de DELETED ---

Index: changelog
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/nvram-wakeup/debian/changelog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- changelog	4 Jul 2004 17:02:05 -0000	1.3
+++ changelog	5 Jul 2004 17:00:42 -0000	1.4
@@ -1,14 +1,20 @@
 nvram-wakeup (0.96-2) unstable; urgency=low
 
-  * nvram-wakeup is now maintained on Alioth and also includes the
-    former vdr-addon-nvram-wakeup package from c't VDR
-  * using MAKEDEV instead of mknod now
-  * a regular wake up interval can be configured now
-  * the command to reboot before shutting down can be configured in
-    /etc/vdr/vdr-nvram-wakeup.conf, because there are no kernel-poweroff
-    or runlevel0-poweroff packages in the official Debian.
+  * Tobias Grimm <vdr@e-tobi.net>
+    - nvram-wakeup is now maintained on Alioth and also includes the
+      former vdr-addon-nvram-wakeup package from c't VDR
+    - using MAKEDEV instead of mknod now
+    - a regular wake up interval can be configured now
+    - the command to reboot before shutting down can be configured in
+      /etc/vdr/vdr-nvram-wakeup.conf, because there are no kernel-poweroff
+      or runlevel0-poweroff packages in the official Debian.
+  * Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de>
+    - Use po-debconf for translated debconf-templates
+    - Cleanup debian/rules a little bit
+    - Use dpatch, so build-dep on it
+    - Added 01_Makefile-fix.dpatch to disable optimizing on i686
 
- -- Tobias Grimm <tg@e-tobi.net>  Sun,  04 Jul 2004 12:10:00 +0200
+ -- Debian VDR Team <pkg-vdr-dvb-devel@lists.alioth.debian.org>  Sun,  04 Jul 2004 12:10:00 +0200
 
 nvram-wakeup (0.96-1) unstable; urgency=low
 

Index: copyright
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/nvram-wakeup/debian/copyright,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- copyright	4 Jul 2004 09:56:32 -0000	1.1
+++ copyright	5 Jul 2004 17:00:43 -0000	1.2
@@ -3,7 +3,7 @@
 
 It was downloaded from http://sourceforge.net/projects/nvram-wakeup
 
-Upstream Author(s): Sergei Haller <Sergei.Haller@math.uni-giessen.de>
+Upstream Author: Sergei Haller <Sergei.Haller@math.uni-giessen.de>
 
 Copyright:
 

Index: rules
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/nvram-wakeup/debian/rules,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- rules	4 Jul 2004 09:56:32 -0000	1.1
+++ rules	5 Jul 2004 17:00:43 -0000	1.2
@@ -8,6 +8,9 @@
 # This is the debhelper compatibility version to use.
 export DH_COMPAT=4
 
+# include dpatch stuff
+include /usr/share/dpatch/dpatch.make
+
 ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
 	CFLAGS += -g
 endif
@@ -23,22 +26,26 @@
 	touch configure-stamp
 
 
-build: build-stamp
+build: patch-stamp build-stamp
 
 build-stamp: configure-stamp 
 	dh_testdir
 
 	# Add here commands to compile the package.
 	$(MAKE)
-	#/usr/bin/docbook-to-man debian/nvram-wakeup.sgml > nvram-wakeup.1
 
 	touch build-stamp
 
-clean:
+clean: clean-patched unpatch
+
+clean-patched:
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp configure-stamp
 
+	# Update debconf-templates:
+	debconf-updatepo
+
 	# Add here commands to clean up after the build process.
 	-$(MAKE) clean
 	rm -f debian/guess-helper.mo
@@ -64,27 +71,19 @@
 	dh_installdocs
 	dh_installexamples nvram-wakeup.conf VDR/vdrshutdown
 	dh_installmenu
-#	dh_installlogrotate
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installmime
-#	dh_installinit
 	dh_installcron
 	dh_installman -v nvram-wakeup.8 nvram-wakeup.conf.5
 	dh_installinfo
-#	dh_undocumented
 	dh_installchangelogs HISTORY
 	dh_link
 	dh_strip
 	dh_compress
 	dh_fixperms
-#	dh_makeshlibs
 	dh_installdeb
-#	dh_perl
 	dh_shlibdeps
 	dh_gencontrol
 	dh_md5sums
 	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

Index: control
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/nvram-wakeup/debian/control,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- control	4 Jul 2004 10:18:38 -0000	1.2
+++ control	5 Jul 2004 17:00:43 -0000	1.3
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian VDR and DVB Packaging Team <pkg-vdr-dvb-devel@lists.alioth.debian.org>
 Uploaders: Tobias Grimm <tg@e-tobi.net>
-Build-Depends: debhelper (>> 4.1.16), gettext
+Build-Depends: debhelper (>> 4.1.16), dpatch
 Standards-Version: 3.6.1
 
 Package: nvram-wakeup