[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#543193: Patch for the 0.2p6-10 upload of wmnetmon



I just uploaded a QA upload for wmnetmon

The upload patch is attached to this mail.

The changelog is:


Source: wmnetmon
Version: 0.2p6-10
Distribution: unstable
Urgency: low
Maintainer: Christian Perrier <bubulle@debian.org>
Date: Sat, 24 Apr 2010 12:16:16 +0200
Closes: 543193 578857
Changes: 
 wmnetmon (0.2p6-10) unstable; urgency=low
 .
   * QA upload.
   * Bump debhalper compatibility level to 7
   * Switch to "3.0 (quilt)" source format
   * Patches moved from dpatch to quilt
   * Fix pending l10n issues. Debconf translations:
     - Russian (Yuri Kozlov).  Closes: #543193
     - Spanish (Francisco Javier Cuadrado).  Closes: #578857

-- 


diff -Nru wmnetmon-0.2p6.old/debian/changelog wmnetmon-0.2p6/debian/changelog
--- wmnetmon-0.2p6.old/debian/changelog	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/changelog	2010-04-24 12:35:12.000000000 +0200
@@ -1,3 +1,15 @@
+wmnetmon (0.2p6-10) unstable; urgency=low
+
+  * QA upload.
+  * Bump debhalper compatibility level to 7
+  * Switch to "3.0 (quilt)" source format
+  * Patches moved from dpatch to quilt
+  * Fix pending l10n issues. Debconf translations:
+    - Russian (Yuri Kozlov).  Closes: #543193
+    - Spanish (Francisco Javier Cuadrado).  Closes: #578857
+
+ -- Christian Perrier <bubulle@debian.org>  Sat, 24 Apr 2010 12:16:16 +0200
+
 wmnetmon (0.2p6-9) unstable; urgency=low
 
   * QA upload.
diff -Nru wmnetmon-0.2p6.old/debian/compat wmnetmon-0.2p6/debian/compat
--- wmnetmon-0.2p6.old/debian/compat	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/compat	2010-04-24 12:33:35.000000000 +0200
@@ -1 +1 @@
-5
+7
diff -Nru wmnetmon-0.2p6.old/debian/control wmnetmon-0.2p6/debian/control
--- wmnetmon-0.2p6.old/debian/control	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/control	2010-04-24 12:33:30.000000000 +0200
@@ -2,7 +2,7 @@
 Section: x11
 Priority: optional
 Maintainer: Debian QA Group <packages@qa.debian.org>
-Build-Depends: debhelper (>= 5), dpatch, libx11-dev, libxext-dev, libxpm-dev, libxt-dev, autoconf
+Build-Depends: debhelper (>= 7), libx11-dev, libxext-dev, libxpm-dev, libxt-dev, autoconf
 Standards-Version: 3.8.0
 
 Package: wmnetmon
diff -Nru wmnetmon-0.2p6.old/debian/patches/00list wmnetmon-0.2p6/debian/patches/00list
--- wmnetmon-0.2p6.old/debian/patches/00list	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/patches/00list	1970-01-01 01:00:00.000000000 +0100
@@ -1,3 +0,0 @@
-01_fix_broken_connect_call
-02_fix_udp_monitoring
-30_autotools_template_fix.dpatch
diff -Nru wmnetmon-0.2p6.old/debian/patches/01_fix_broken_connect_call wmnetmon-0.2p6/debian/patches/01_fix_broken_connect_call
--- wmnetmon-0.2p6.old/debian/patches/01_fix_broken_connect_call	1970-01-01 01:00:00.000000000 +0100
+++ wmnetmon-0.2p6/debian/patches/01_fix_broken_connect_call	2010-04-24 12:37:19.000000000 +0200
@@ -0,0 +1,13 @@
+Index: wmnetmon-0.2p6/tcpmonitor.c
+===================================================================
+--- wmnetmon-0.2p6.orig/tcpmonitor.c
++++ wmnetmon-0.2p6/tcpmonitor.c
+@@ -51,7 +51,7 @@
+ 	if (debug)
+ 	fprintf(stderr,"trying to connect (tcp) to port %d at %s...\n", h->tcpport,
+ 	    inet_ntoa(h->tcpsock->sin_addr));
+-	if (connect(h->tcp_socket, (struct sockaddr_in*)h->tcpsock, 
++	if (connect(h->tcp_socket, (struct sockaddr*)h->tcpsock, 
+ 	        sizeof(struct sockaddr_in))<0) 
+ 	   switch(errno) {
+ 		case EISCONN: /* Common.. reported by lots of users 
diff -Nru wmnetmon-0.2p6.old/debian/patches/01_fix_broken_connect_call.dpatch wmnetmon-0.2p6/debian/patches/01_fix_broken_connect_call.dpatch
--- wmnetmon-0.2p6.old/debian/patches/01_fix_broken_connect_call.dpatch	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/patches/01_fix_broken_connect_call.dpatch	1970-01-01 01:00:00.000000000 +0100
@@ -1,18 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 01_fix_broken_connect_call.dpatch by Søren Boll Overgaard <boll@debian.org>
-##
-## DP: Fix compilation warning
-
-@DPATCH@
-
---- wmnetmonitor/tcpmonitor.c	2003-08-22 10:08:29.000000000 +0200
-+++ tcpmonitor.c.new	2003-08-22 10:09:08.000000000 +0200
-@@ -51,7 +51,7 @@
- 	if (debug)
- 	fprintf(stderr,"trying to connect (tcp) to port %d at %s...\n", h->tcpport,
- 	    inet_ntoa(h->tcpsock->sin_addr));
--	if (connect(h->tcp_socket, (struct sockaddr_in*)h->tcpsock, 
-+	if (connect(h->tcp_socket, (struct sockaddr*)h->tcpsock, 
- 	        sizeof(struct sockaddr_in))<0) 
- 	   switch(errno) {
- 		case EISCONN: /* Common.. reported by lots of users 
diff -Nru wmnetmon-0.2p6.old/debian/patches/02_fix_udp_monitoring wmnetmon-0.2p6/debian/patches/02_fix_udp_monitoring
--- wmnetmon-0.2p6.old/debian/patches/02_fix_udp_monitoring	1970-01-01 01:00:00.000000000 +0100
+++ wmnetmon-0.2p6/debian/patches/02_fix_udp_monitoring	2010-04-24 12:38:18.000000000 +0200
@@ -0,0 +1,16 @@
+Index: wmnetmon-0.2p6/pinger.c
+===================================================================
+--- wmnetmon-0.2p6.orig/pinger.c
++++ wmnetmon-0.2p6/pinger.c
+@@ -280,7 +280,11 @@
+ 						/* Calculate port */
+ 						
+ 						if (icp->ICMP_TYPE == ICMP_UNREACH){
++#ifdef HAVE_STRUCT_ICMP
++						 iph = &icp->icmp_ip;
++#else
+ 						 iph = (struct ip*)((char*)icp + sizeof(STRUCT_ICMP));
++#endif
+ 						if (iph->ip_p == IPPROTO_UDP) {
+ 							udph = (struct udphdr *)
+ 							   ((char *)iph + sizeof(struct ip));
diff -Nru wmnetmon-0.2p6.old/debian/patches/02_fix_udp_monitoring.dpatch wmnetmon-0.2p6/debian/patches/02_fix_udp_monitoring.dpatch
--- wmnetmon-0.2p6.old/debian/patches/02_fix_udp_monitoring.dpatch	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/patches/02_fix_udp_monitoring.dpatch	1970-01-01 01:00:00.000000000 +0100
@@ -1,22 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 02_fix_udp_monitoring.dpatch by Jan Hudec <bulb@ucw.cz>
-##
-## DP: Fix broken UDP monitoring
-
-@DPATCH@
-
-diff -ur wmnetmon-0.2p5.orig/pinger.c wmnetmon-0.2p5/pinger.c
---- wmnetmon-0.2p5.orig/pinger.c	2003-10-09 21:08:43.000000000 +0200
-+++ wmnetmon-0.2p5/pinger.c	2003-10-09 21:20:52.000000000 +0200
-@@ -280,7 +280,11 @@
- 						/* Calculate port */
- 						
- 						if (icp->ICMP_TYPE == ICMP_UNREACH){
-+#ifdef HAVE_STRUCT_ICMP
-+						 iph = &icp->icmp_ip;
-+#else
- 						 iph = (struct ip*)((char*)icp + sizeof(STRUCT_ICMP));
-+#endif
- 						if (iph->ip_p == IPPROTO_UDP) {
- 							udph = (struct udphdr *)
- 							   ((char *)iph + sizeof(struct ip));
diff -Nru wmnetmon-0.2p6.old/debian/patches/30_autotools_template_fix wmnetmon-0.2p6/debian/patches/30_autotools_template_fix
--- wmnetmon-0.2p6.old/debian/patches/30_autotools_template_fix	1970-01-01 01:00:00.000000000 +0100
+++ wmnetmon-0.2p6/debian/patches/30_autotools_template_fix	2010-04-24 12:41:11.000000000 +0200
@@ -0,0 +1,23 @@
+Index: wmnetmon-0.2p6/Makefile.in
+===================================================================
+--- wmnetmon-0.2p6.orig/Makefile.in
++++ wmnetmon-0.2p6/Makefile.in
+@@ -21,5 +21,5 @@
+ 	rm -f *.o wmnetmon
+ 
+ realclean: clean
+-	rm config.cache config.log config.status config.h Makefile
++	rm -f config.cache config.log config.status config.h Makefile
+ 	
+Index: wmnetmon-0.2p6/configure.in
+===================================================================
+--- wmnetmon-0.2p6.orig/configure.in
++++ wmnetmon-0.2p6/configure.in
+@@ -19,6 +19,7 @@
+ if test "$x_includes" != ""; then
+ CPPFLAGS="$CPPFLAGS -I$x_includes"
+ fi
++CPPFLAGS+=" -g "
+ AC_CHECK_LIB(X11, XSelectInput,
+ , AC_MSG_ERROR([*** Could not find libX11 ***]))
+ LDFLAGS="$LDFLAGS -lX11"
diff -Nru wmnetmon-0.2p6.old/debian/patches/30_autotools_template_fix.dpatch wmnetmon-0.2p6/debian/patches/30_autotools_template_fix.dpatch
--- wmnetmon-0.2p6.old/debian/patches/30_autotools_template_fix.dpatch	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/patches/30_autotools_template_fix.dpatch	1970-01-01 01:00:00.000000000 +0100
@@ -1,28 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 30_autotools_template_fix.dpatch by Sandro Tosi <matrixhasu@gmail.com>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: New patch generated from wmnetmon 0.2p6-8 diff.gz
-
-@DPATCH@
-diff -urNad wmnetmon~/Makefile.in wmnetmon/Makefile.in
---- wmnetmon~/Makefile.in	2006-08-29 22:23:29.000000000 +0200
-+++ wmnetmon/Makefile.in	2008-01-28 20:07:51.998647305 +0100
-@@ -21,5 +21,5 @@
- 	rm -f *.o wmnetmon
- 
- realclean: clean
--	rm config.cache config.log config.status config.h Makefile
-+	rm -f config.cache config.log config.status config.h Makefile
- 	
-diff -urNad wmnetmon~/configure.in wmnetmon/configure.in
---- wmnetmon~/configure.in	2008-01-28 19:40:12.000000000 +0100
-+++ wmnetmon/configure.in	2008-01-28 20:07:42.030079233 +0100
-@@ -19,6 +19,7 @@
- if test "$x_includes" != ""; then
- CPPFLAGS="$CPPFLAGS -I$x_includes"
- fi
-+CPPFLAGS+=" -g "
- AC_CHECK_LIB(X11, XSelectInput,
- , AC_MSG_ERROR([*** Could not find libX11 ***]))
- LDFLAGS="$LDFLAGS -lX11"
diff -Nru wmnetmon-0.2p6.old/debian/patches/series wmnetmon-0.2p6/debian/patches/series
--- wmnetmon-0.2p6.old/debian/patches/series	1970-01-01 01:00:00.000000000 +0100
+++ wmnetmon-0.2p6/debian/patches/series	2010-04-24 12:38:51.000000000 +0200
@@ -0,0 +1,3 @@
+01_fix_broken_connect_call
+02_fix_udp_monitoring
+30_autotools_template_fix
diff -Nru wmnetmon-0.2p6.old/debian/po/cs.po wmnetmon-0.2p6/debian/po/cs.po
--- wmnetmon-0.2p6.old/debian/po/cs.po	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/po/cs.po	2010-04-17 18:50:05.000000000 +0200
@@ -14,8 +14,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: wmnetmon\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-06-26 11:32+0200\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
 "PO-Revision-Date: 2005-02-11 12:52+0100\n"
 "Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
 "Language-Team: Czech <debian-l10n-czech@debian.org>\n"
@@ -23,13 +23,15 @@
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8bit\n"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid "wmnetmon must run setuid root"
 msgstr "wmnetmon mus��t jako setuid root"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid ""
 "wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
 "packages. If you don't like this, please deinstall wmnetmon right away."
diff -Nru wmnetmon-0.2p6.old/debian/po/da.po wmnetmon-0.2p6/debian/po/da.po
--- wmnetmon-0.2p6.old/debian/po/da.po	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/po/da.po	2010-04-17 18:50:05.000000000 +0200
@@ -3,8 +3,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: wmnetmon_0.2p5-13_da.po\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-06-26 11:32+0200\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
 "PO-Revision-Date: 2004-12-17 15:34+0100\n"
 "Last-Translator: Morten Bo Johansen <mojo@mbjnet.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
@@ -12,13 +12,15 @@
 "Content-Type: text/plain; charset=iso-8859-1\n"
 "Content-Transfer-Encoding: 8bit\n"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid "wmnetmon must run setuid root"
 msgstr "wmnetmon skal k�etuid root"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid ""
 "wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
 "packages. If you don't like this, please deinstall wmnetmon right away."
diff -Nru wmnetmon-0.2p6.old/debian/po/de.po wmnetmon-0.2p6/debian/po/de.po
--- wmnetmon-0.2p6.old/debian/po/de.po	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/po/de.po	2010-04-17 18:50:05.000000000 +0200
@@ -5,8 +5,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: wmnetmon 0.2p6-5\n"
-"Report-Msgid-Bugs-To: wmnetmon@bugs.debian.org\n"
-"POT-Creation-Date: 2007-01-13 20:30+0100\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
 "PO-Revision-Date: 2007-01-29 19:49+0100\n"
 "Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n"
 "Language-Team: German <debian-l10n-german@lists.debian.org>\n"
diff -Nru wmnetmon-0.2p6.old/debian/po/es.po wmnetmon-0.2p6/debian/po/es.po
--- wmnetmon-0.2p6.old/debian/po/es.po	1970-01-01 01:00:00.000000000 +0100
+++ wmnetmon-0.2p6/debian/po/es.po	2010-04-23 17:04:06.000000000 +0200
@@ -0,0 +1,54 @@
+# wmnetmon po-debconf translation to Spanish
+# Copyright (C) 2010 Software in the Public Interest
+# This file is distributed under the same license as the wmnetmon package.
+#
+# Changes:
+#   - Initial translation
+#       Francisco Javier Cuadrado <fcocuadrado@gmail.com>, 2010
+#
+# Traductores, si no conocen el formato PO, merece la pena leer la
+# documentación de gettext, especialmente las secciones dedicadas a este
+# formato, por ejemplo ejecutando:
+#       info -n '(gettext)PO Files'
+#       info -n '(gettext)Header Entry'
+#
+# Equipo de traducción al español, por favor lean antes de traducir
+# los siguientes documentos:
+#
+#   - El proyecto de traducción de Debian al español
+#     http://www.debian.org/intl/spanish/
+#     especialmente las notas y normas de traducción en
+#     http://www.debian.org/intl/spanish/notas
+#
+#   - La guía de traducción de po's de debconf:
+#     /usr/share/doc/po-debconf/README-trans
+#     o http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: wmnetmon 0.2p6-9\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
+"PO-Revision-Date: 2010-04-19 09:17+0100\n"
+"Last-Translator: Francisco Javier Cuadrado <fcocuadrado@gmail.com>\n"
+"Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../templates:1001
+msgid "wmnetmon must run setuid root"
+msgstr "wmnetmon se debe ejecutar con el bit setuid de root activado"
+
+#. Type: note
+#. Description
+#: ../templates:1001
+msgid ""
+"wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
+"packages. If you don't like this, please deinstall wmnetmon right away."
+msgstr ""
+"wmnetmon necesita tener activado el bit setuid de root para obtener un "
+"socket para enviar paquetes ICMP. Si no quiere realizar esto, desinstale "
+"wmnetmon."
diff -Nru wmnetmon-0.2p6.old/debian/po/fr.po wmnetmon-0.2p6/debian/po/fr.po
--- wmnetmon-0.2p6.old/debian/po/fr.po	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/po/fr.po	2010-04-17 18:50:05.000000000 +0200
@@ -12,8 +12,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: wmnetmon_0.2p5-6\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-06-26 11:32+0200\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
 "PO-Revision-Date: 2003-07-03 09:00+0200\n"
 "Last-Translator: Michel Grentzinger <mic.grentz@online.fr>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -21,13 +21,15 @@
 "Content-Type: text/plain; charset=ISO-8859-15\n"
 "Content-Transfer-Encoding: 8bit\n"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid "wmnetmon must run setuid root"
 msgstr "wmnetmon doit �e � setuid root �"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid ""
 "wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
 "packages. If you don't like this, please deinstall wmnetmon right away."
diff -Nru wmnetmon-0.2p6.old/debian/po/ja.po wmnetmon-0.2p6/debian/po/ja.po
--- wmnetmon-0.2p6.old/debian/po/ja.po	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/po/ja.po	2010-04-17 18:50:05.000000000 +0200
@@ -15,8 +15,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-06-26 11:32+0200\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
 "PO-Revision-Date: 2004-01-04 08:02+0900\n"
 "Last-Translator: Hideki Yamane <henrich@samba.gr.jp>\n"
 "Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
@@ -24,16 +24,19 @@
 "Content-Type: text/plain; charset=EUC-JP\n"
 "Content-Transfer-Encoding: 8bit\n"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid "wmnetmon must run setuid root"
 msgstr "wmnetmon �������root ��setuid �������������"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid ""
 "wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
 "packages. If you don't like this, please deinstall wmnetmon right away."
-msgstr "wmnetmon ��ICMP �ѥ��åȤ��aw �����åȤ�Ѥ�����root "
-"��setuid ������������������������줬������������wmnetmon "
-"�����������"
+msgstr ""
+"wmnetmon ��ICMP �ѥ��åȤ��aw �����åȤ�Ѥ�����root ��setuid ��"
+"����������������������줬������������wmnetmon ������
+"������"
diff -Nru wmnetmon-0.2p6.old/debian/po/nl.po wmnetmon-0.2p6/debian/po/nl.po
--- wmnetmon-0.2p6.old/debian/po/nl.po	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/po/nl.po	2010-04-17 18:50:05.000000000 +0200
@@ -15,8 +15,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: wmnetmon 0.2p5-8\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-06-26 11:32+0200\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
 "PO-Revision-Date: 2003-08-31 18:55+0100\n"
 "Last-Translator: Tim Vandermeersch <qber66@skolelinux.no>\n"
 "Language-Team: dutch <debian-l10n-dutch@lists.debian.org>\n"
@@ -24,13 +24,15 @@
 "Content-Type: text/plain; charset=iso-8859-1\n"
 "Content-Transfer-Encoding: 8bit\n"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid "wmnetmon must run setuid root"
 msgstr "wmnetmon moet setuid root draaien"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid ""
 "wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
 "packages. If you don't like this, please deinstall wmnetmon right away."
diff -Nru wmnetmon-0.2p6.old/debian/po/pt.po wmnetmon-0.2p6/debian/po/pt.po
--- wmnetmon-0.2p6.old/debian/po/pt.po	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/po/pt.po	2010-04-17 18:50:05.000000000 +0200
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: wmnetmon 0.2p6-6\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-14 04:33+0100\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
 "PO-Revision-Date: 2007-08-08 04:27+0100\n"
 "Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n"
 "Language-Team: Portuguese <traduz@debianpt.org>\n"
@@ -29,7 +29,6 @@
 "wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
 "packages. If you don't like this, please deinstall wmnetmon right away."
 msgstr ""
-"O wmnetmon precisa de permissões de root (setuid root) para obter um "
-"socket simples (raw) e enviar pacotes ICMP. Se você não gosta disto, "
-"por favor desinstale já o wmnetmon imediatamente."
-
+"O wmnetmon precisa de permissões de root (setuid root) para obter um socket "
+"simples (raw) e enviar pacotes ICMP. Se você não gosta disto, por favor "
+"desinstale já o wmnetmon imediatamente."
diff -Nru wmnetmon-0.2p6.old/debian/po/ru.po wmnetmon-0.2p6/debian/po/ru.po
--- wmnetmon-0.2p6.old/debian/po/ru.po	1970-01-01 01:00:00.000000000 +0100
+++ wmnetmon-0.2p6/debian/po/ru.po	2010-04-17 18:50:06.000000000 +0200
@@ -0,0 +1,37 @@
+# translation of ru.po to Russian
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Yuri Kozlov <yuray@komyakino.ru>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: wmnetmon 0.2p6-9\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
+"PO-Revision-Date: 2009-08-13 21:03+0400\n"
+"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
+"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. Type: note
+#. Description
+#: ../templates:1001
+msgid "wmnetmon must run setuid root"
+msgstr "Специальные права на файле wmnetmon"
+
+#. Type: note
+#. Description
+#: ../templates:1001
+msgid ""
+"wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
+"packages. If you don't like this, please deinstall wmnetmon right away."
+msgstr ""
+"Чтобы иметь доступ к неструктурированному сокету для отправки пакетов ICMP "
+"на исполняемом файле wmnetmon будет установлен setuid бит, а файл будет "
+"принадлежать root. Если вас это не устраивает, удалите пакет wmnetmon сразу "
+"после установки."
diff -Nru wmnetmon-0.2p6.old/debian/po/sv.po wmnetmon-0.2p6/debian/po/sv.po
--- wmnetmon-0.2p6.old/debian/po/sv.po	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/po/sv.po	2010-04-17 18:50:06.000000000 +0200
@@ -8,30 +8,33 @@
 # or http://www.debian.org/intl/l10n/po-debconf/README-trans
 # Developers do not need to manually edit POT or PO files.
 # , fuzzy
-# 
-# 
+#
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: wmnetmon 0.2p6-1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-06-26 11:32+0200\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
 "PO-Revision-Date: 2005-09-30 16:35-0700\n"
 "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit"
+"Content-Transfer-Encoding: 8bit\n"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid "wmnetmon must run setuid root"
 msgstr "wmnetmon m�e k� som setuid root"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid ""
 "wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
 "packages. If you don't like this, please deinstall wmnetmon right away."
 msgstr ""
-"wmnetmon beh� vara setuid root f�tt kunna anv�a en raw socket f�tt skicka ICMP-paket. Om du inte gillar detta, v�igen avinstallera wmnetmon nu."
-
+"wmnetmon beh� vara setuid root f�tt kunna anv�a en raw socket f�
+"att skicka ICMP-paket. Om du inte gillar detta, v�igen avinstallera "
+"wmnetmon nu."
diff -Nru wmnetmon-0.2p6.old/debian/po/templates.pot wmnetmon-0.2p6/debian/po/templates.pot
--- wmnetmon-0.2p6.old/debian/po/templates.pot	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/po/templates.pot	2010-04-17 18:50:05.000000000 +0200
@@ -1,22 +1,14 @@
-#
-#    Translators, if you are not familiar with the PO format, gettext
-#    documentation is worth reading, especially sections dedicated to
-#    this format, e.g. by running:
-#         info -n '(gettext)PO Files'
-#         info -n '(gettext)Header Entry'
-#
-#    Some information specific to po-debconf are available at
-#            /usr/share/doc/po-debconf/README-trans
-#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
-#
-#    Developers do not need to manually edit POT or PO files.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-06-26 11:32+0200\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24,13 +16,15 @@
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid "wmnetmon must run setuid root"
 msgstr ""
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid ""
 "wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
 "packages. If you don't like this, please deinstall wmnetmon right away."
diff -Nru wmnetmon-0.2p6.old/debian/po/vi.po wmnetmon-0.2p6/debian/po/vi.po
--- wmnetmon-0.2p6.old/debian/po/vi.po	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/po/vi.po	2010-04-17 18:50:06.000000000 +0200
@@ -5,8 +5,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: wmnetmon 0.2p6-1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-06-26 11:32+0200\n"
+"Report-Msgid-Bugs-To: wmnetmon@packages.debian.org\n"
+"POT-Creation-Date: 2010-04-17 18:50+0200\n"
 "PO-Revision-Date: 2005-08-20 21:47+0930\n"
 "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
 "Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
@@ -16,14 +16,18 @@
 "Plural-Forms: nplurals=1; plural=0\n"
 "X-Generator: LocFactoryEditor 1.2.2\n"
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid "wmnetmon must run setuid root"
 msgstr "Phải chạy wmnetmon với tư cách « setuid root »."
 
+#. Type: note
 #. Description
-#: ../templates:3
+#: ../templates:1001
 msgid ""
 "wmnetmon needs to be setuid root to obtain a raw socket to send ICMP "
 "packages. If you don't like this, please deinstall wmnetmon right away."
-msgstr "Trình wmnetmon cần thiết là setuid root để lấy một ổ cắm thô để gởi gói tin ICMP. Nếu bạn không muốn làm như thế, vui lòng bỏ cài đặt nó ngay."
+msgstr ""
+"Trình wmnetmon cần thiết là setuid root để lấy một ổ cắm thô để gởi gói tin "
+"ICMP. Nếu bạn không muốn làm như thế, vui lòng bỏ cài đặt nó ngay."
diff -Nru wmnetmon-0.2p6.old/debian/rules wmnetmon-0.2p6/debian/rules
--- wmnetmon-0.2p6.old/debian/rules	2010-04-17 18:48:27.000000000 +0200
+++ wmnetmon-0.2p6/debian/rules	2010-04-24 12:33:48.000000000 +0200
@@ -11,9 +11,6 @@
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 PACKAGE = wmnetmon
 
-include /usr/share/dpatch/dpatch.make
-
-
 ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
 	CFLAGS += -g
 endif
@@ -34,7 +31,7 @@
 	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=\$${prefix}/bin --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
 
-build: patch-stamp build-stamp
+build: build-stamp
 
 build-stamp:  config.status
 	dh_testdir
@@ -44,7 +41,7 @@
 
 	touch build-stamp
 
-clean: unpatch 
+clean:
 	dh_testdir
 	dh_testroot
 
@@ -57,7 +54,7 @@
 install: build
 	dh_testdir
 	dh_testroot
-	dh_clean -k
+	dh_prep
 	dh_installdirs usr/bin
 
 	# Add here commands to install the package into debian/wmnetmon.
diff -Nru wmnetmon-0.2p6.old/debian/source/format wmnetmon-0.2p6/debian/source/format
--- wmnetmon-0.2p6.old/debian/source/format	1970-01-01 01:00:00.000000000 +0100
+++ wmnetmon-0.2p6/debian/source/format	2010-04-24 12:32:08.000000000 +0200
@@ -0,0 +1 @@
+3.0 (quilt)

Attachment: signature.asc
Description: Digital signature


Reply to: