* [meta-oe][PATCH] hddtemp: add from OE-Classic and update
@ 2012-10-18 17:40 Paul Eggleton
0 siblings, 0 replies; 9+ messages in thread
From: Paul Eggleton @ 2012-10-18 17:40 UTC (permalink / raw)
To: openembedded-devel
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 316739 bytes --]
hddtemp is unmaintained upstream so we have to do a bit of patching. All
patches sourced from Debian/Fedora, except hddtemp-no-nls-support.patch
which came from OE-Classic.
Other improvements:
* Install initscript
* Make LICENSE more accurate
* Add LIC_FILES_CHKSUM
* inherit gettext to avoid error during configure
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
.../hddtemp-0.3-beta15-autodetect-717479.patch | 90 +
.../recipes-support/hddtemp/files/hddtemp-db.patch | 133 +
.../hddtemp/files/hddtemp-no-nls-support.patch | 66 +
meta-oe/recipes-support/hddtemp/files/hddtemp.db | 523 ++
.../hddtemp/files/hddtemp_0.3-beta15-52.diff | 7545 ++++++++++++++++++++
.../recipes-support/hddtemp/hddtemp_0.3-beta15.bb | 30 +
6 files changed, 8387 insertions(+)
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp.db
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
create mode 100644 meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch b/meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch
new file mode 100644
index 0000000..19f8380
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch
@@ -0,0 +1,90 @@
+Auto-detect disks if none specified
+
+Refer to:
+https://bugzilla.redhat.com/show_bug.cgi?id=717479
+
+diff -up hddtemp-0.3-beta15/doc/hddtemp.8~ hddtemp-0.3-beta15/doc/hddtemp.8
+--- hddtemp-0.3-beta15/doc/hddtemp.8~ 2011-08-18 00:36:05.689001470 +0300
++++ hddtemp-0.3-beta15/doc/hddtemp.8 2011-08-18 00:44:46.753006253 +0300
+@@ -19,7 +19,7 @@
+ hddtemp \- Utility to monitor hard drive temperature
+ .SH SYNOPSIS
+ .B hddtemp
+-.RI [ options ] " [type:]disk" ...
++.RI [ options ] " [[type:]disk]" ...
+ .SH "DESCRIPTION"
+ .PP
+ .B hddtemp
+@@ -35,7 +35,8 @@ You can specify one or more device drive
+ with a
+ .B type
+ like PATA, SATA or SCSI to force hddtemp too use one of these type
+-(because detection can fail).
++(because detection can fail). If no paths are specified, autodetection of
++installed drives is attempted.
+
+
+ .SH "OPTIONS"
+diff -up hddtemp-0.3-beta15/src/hddtemp.c~ hddtemp-0.3-beta15/src/hddtemp.c
+--- hddtemp-0.3-beta15/src/hddtemp.c~ 2011-08-18 00:36:05.638996861 +0300
++++ hddtemp-0.3-beta15/src/hddtemp.c 2011-08-18 00:35:55.485060798 +0300
+@@ -54,6 +54,7 @@
+ #include <linux/hdreg.h>
+ #include <ctype.h>
+ #include <assert.h>
++#include <glob.h>
+
+ // Application specific includes
+ #include "ata.h"
+@@ -255,6 +256,7 @@ int main(int argc, char* argv[]) {
+ int ret = 0;
+ int show_db;
+ struct disk * ldisks;
++ glob_t diskglob;
+
+ backtrace_sigsegv();
+ backtrace_sigill();
+@@ -419,11 +421,6 @@ int main(int argc, char* argv[]) {
+ exit(0);
+ }
+
+- if(argc - optind <= 0) {
+- fprintf(stderr, _("Too few arguments: you must specify one drive, at least.\n"));
+- exit(1);
+- }
+-
+ if(debug) {
+ /* argc = optind + 1;*/
+ quiet = 1;
+@@ -434,6 +431,23 @@ int main(int argc, char* argv[]) {
+ exit(1);
+ }
+
++ memset(&diskglob, 0, sizeof(glob_t));
++ if(argc - optind <= 0) {
++ if(glob("/dev/[hs]d[a-z]", 0, NULL, &diskglob) == 0) {
++ argc = diskglob.gl_pathc;
++ argv = diskglob.gl_pathv;
++ optind = 0;
++ } else {
++ argc = 0;
++ }
++ }
++
++ if(argc - optind <= 0) {
++ globfree(&diskglob);
++ fprintf(stderr, _("Too few arguments: you must specify one drive, at least.\n"));
++ exit(1);
++ }
++
+ init_bus_types();
+
+ /* collect disks informations */
+@@ -527,6 +541,7 @@ int main(int argc, char* argv[]) {
+ else {
+ do_direct_mode(ldisks);
+ }
++ globfree(&diskglob);
+
+ return ret;
+ }
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch b/meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch
new file mode 100644
index 0000000..a71a9dd
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch
@@ -0,0 +1,133 @@
+hddtemp database update
+
+Patch from Fedora 18 SRPM.
+
+--- ../hddtemp.db~ 2007-09-14 21:11:37.000000000 +0300
++++ ../hddtemp.db 2008-02-09 22:10:31.000000000 +0200
+@@ -80,6 +80,8 @@
+
+ "FUJITSU MHV2100AH" 194 C "FUJITSU MHV2100AH"
+ "FUJITSU MHV2100AT" 194 C "FUJITSU MHV2100AT"
++"FUJITSU MHV2100BH" 194 C "FUJITSU MHV2100BH"
++"FUJITSU MHV2060AH" 194 C "FUJITSU MHV2060AH"
+ "FUJITSU MHV2080[AB]H" 194 C "FUJITSU MHV2080AH"
+
+ "FUJITSU MPF3204AH" 194 C "Fujitsu MPF3204AH"
+@@ -325,11 +327,14 @@
+ "ST3120026A" 194 C "Seagate Barracuda V ST3120026A"
+ "ST3160021A" 194 C "Seagate Barracuda 7200.7 - ST3160021A"
+ "ST3160023(A|AS)" 194 C "Seagate Barracuda V ST3160023A and AS (160Gb, ATA100 or Serial ATA)"
++"ST316081[12](A|AS)" 194 C "Seagate Barracuda 7200.9 160GB"
+ "ST3160827AS" 194 C "Seagate Barracuda 7200.7 160GB (Serial ATA)"
+ "ST3200021A" 194 C "Seagate Barracuda 7200.7 Plus 200GB"
+ "ST3200822(A|AS)" 194 C "Seagate Barracuda 7200.7 Plus 200GB (PATA or SATA)"
+-"ST3200826A" 194 C "Seagate Barracuda 7200.8 200Gb"
++"ST3200826A" 194 C "Seagate Barracuda 7200.8 200GB"
+ "ST3250623A" 194 C "Seagate Barracuda 7200.16 250GB"
++"ST3250624AS" 194 C "Seagate Barracuda 7200.9 250GB SATA"
++"ST3250624NS" 194 C "Seagate NL35 SATA (RAID-Edition) 7200 250GB"
+ "ST3250823A" 194 C "Seagate Barracuda 7200.8 250GB"
+ "ST3250823A" 194 C "Seagate Barracuda 7200.7 Plus 250GB"
+ "ST3250823NS" 194 C "Seagate NL35 SATA (RAID-Edition) 7200 250GB"
+@@ -338,9 +343,7 @@
+ "ST3400633(A|AS)" 194 C "Seagate Barracuda 7200.7 400 GB"
+ "ST3500630NS" 194 C "Seagate"
+ "ST3400632NS" 194 C "Seagate"
+-"ST3320620AS" 194 C "Seagate Barracuda 7200.7 320 GB"
+-"ST3500630AS" 194 C "Seagate Barracuda 7200.7 500 GB"
+-"ST3802110A" 194 C "Seagate Barracuda 7200.9 80 GB"
++"ST380[28]110(A|AS)" 194 C "Seagate Barracuda 7200.9 80 GB"
+ "ST910021A" 194 C "Seagate Momentus 7200.1 100GB"
+ "ST910082[35]A" 194 C "Seagate Momentus 5400.2 100GB"
+ "ST9120821A" 194 C "Seagate Momentus 5400.2 120GB"
+@@ -351,12 +354,14 @@
+ "ST960822A" 194 C "Seagate Momentus 5400.2 60GB"
+ "ST96812AS" 194 C "Seagate Momentus 5400.2 60GB SATA"
+ "ST9808211A" 194 C "Seagate Momentus 5400.2 80GB"
++"ST98823AS" 194 C "Seagate Momentus 5400.2 80GB SATA"
+
+ ########################################
+ ############# TOSHIBA Laptops
+ ########################################
+ "MK4313MAT" 220 C "Toshiba MK4313MAT"
+ "TOSHIBA MK1032GAX" 194 C "Toshiba MK1032GAX"
++"TOSHIBA MK1032GSX" 194 C "Toshiba MK1032GSX"
+ "TOSHIBA MK1517GAP" 0 C "Toshiba MK1517GAP"
+ "TOSHIBA MK2018GAS" 226 F "Toshiba MK2018GAS"
+ "TOSHIBA MK2023GAS" 194 C "Toshiba MK2023GAS"
+@@ -377,6 +382,7 @@
+ "TOSHIBA MK6026GAX" 194 C "Toshiba MK6026GAX"
+ "TOSHIBA MK8025GAS" 194 C "Toshiba MK8025GAS"
+ "TOSHIBA MK8026GAX" 194 C "Toshiba MK8026GAX"
++"TOSHIBA MK8032GSX" 194 C "Toshiba MK8032GSX"
+
+ "MK4025GAS" 194 C "Toshiba MK4025GAS"
+
+@@ -397,7 +403,7 @@
+ "WDC WD300BB-00CAA0" 0 C "Western Digital WD300BB"
+ "WDC WD360GD-00FNA0" 194 C "Western Digital SATA Raptor 36.7GB"
+ "WDC WD400BB-00CAA0" 0 C "Western Digital 400BB-00CAA0"
+-"WDC WD400BB-00J[KH]A0" 194 C "Western Digital Caviar WD400BB"
++"WDC WD400BB-00[DJ][KH]A0" 194 C "Western Digital Caviar WD400BB"
+ "WDC WD400BB-23JHC0" 194 C "Western Digital 23JHC0"
+ #"WDC WD400BB-00GFA0" 0 C ""
+ "WDC WD400BB-55HEA0" 194 C "Western Digital Caviar WD400BB"
+@@ -416,7 +422,7 @@
+ "WDC WD600VE-75HDT0" 194 C "Western Digital 600VE-75HDT0"
+ "WDC WD600VE-00HDT0" 194 C "Western Digital 600VE-00HDT0"
+ "WDC WD740GD-00FL21.0" 194 C "Western Digital SATA Raptor"
+-"WDC WD740GD-([05]0FL[AC]0|75FLA1)" 194 C "Western Digital SATA Raptor 74GB 8MB"
++"WDC WD740GD-([05]0FL[AC][01]|75FLA1)" 194 C "Western Digital SATA Raptor 74GB 8MB"
+ "WDC WD800BB-00CAA1" 0 C "Western Digital WD800BB-00CAA1"
+ "WDC WD800BB-(00|22)DKA0" 194 C "Western Digital WD800BB 80 Go"
+ "WDC WD800BB-32CCB0" 194 C "Western Digital 800BB-32CCB0"
+@@ -428,14 +434,13 @@
+ "WDC WD800JB-00CRA1" 0 C "Western Digital Caviar WD800JB"
+ "WDC WD800JB-00(ET|FM|FS)A0" 194 C "Western Digital Caviar 80GB Special Edition 8MB"
+ "WDC WD800JB-00JJ[AC]0" 194 C "Western Digital WD800JB"
+-"WDC WD800JD-(00|55)(HK|JR)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+-"WDC WD800JD-00(HK|JN)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
++"WDC WD800JD-(00|55|75)(HK|JR|JN)[AC]0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+ "WDC WD800LB-(00|55)DNA0" 194 C "Western Digital Caviar WD800LB 80 Go ATA-100"
+ "WDC WD800VE-07HDT0" 194 C "Western Digital 800VE-07HDT0"
+ "WDC WD1200BB-00(FTA|GUA)0" 194 C "Western Digital Caviar EIDE 2MB Cache"
+-"WDC WD1200JB-00(EV|FU|GV)A0" 194 C "Western Digital Caviar 120GB Special Edition 8MB"
++"WDC WD1200JB-00(EV|FU|GV|RE)A0" 194 C "Western Digital Caviar 120GB Special Edition 8MB"
+ "WDC WD1200JB-22GVA0" 194 C "Western Digital Caviar 120GB"
+-"WDC WD1200JD-00(GBB|HBC)0" 194 C "Western Digital WD1200JD"
++"WDC WD1200JD-00(FYB|GBB|HBC)0" 194 C "Western Digital WD1200JD"
+ "WDC WD1200LB-55EDA0" 194 C "Western Digital WD1220LB"
+ "WDC WD1200SB-01KB[AC]0" 194 C "Western Digital Caviar RE (Raid Edition) 120 GB"
+ "WDC WD1600BB-00DWA0" 194 C "Western Digital Caviar WD1600BB"
+@@ -443,10 +448,11 @@
+ "WDC WD2000BB-00FTA0" 194 C "Western Digital WD2000BB"
+ "WDC WD2000JB-(00EV|32EV|34EV|00FU|00GV|55GV|98GV|00KF)A0" 194 C "Western Digital Caviar 200GB Special Edition 8MB"
+ "WDC WD2000JB-00GVC0" 194 C "Western Digital WD2000JB"
++"WDC WD2000JD-00FYB0" 194 C "Western Digital WD2000JD"
+ "WDC WD2000JS-00MHB1" 194 C "Western Digital SATA 200GB"
+ "WDC WD2500JB-(00RE|00EV|00FU|32FU|00GV|55GV)A0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+ "WDC WD2500JB-00GVC0" 194 C "Western Digital 250GB"
+-"WDC WD2500JD-(00G|32H)BB0" 194 C "Western Digital SATA Caviar 250GB Special Edition 8MB"
++"WDC WD2500JD-(00G|32H|75H)BB0" 194 C "Western Digital SATA Caviar 250GB Special Edition 8MB"
+ "WDC WD2500JD-40HBC0" 194 C "Western Digital WD2500JD-40HBC0"
+ "WDC WD2500PB-98FBA0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+ "WDC WD2500PD-00FZB1" 194 C "Western Digital WD2500PD-00FZB1"
+@@ -510,7 +516,7 @@
+ "Maxtor 7(L|V)300(F|R|S)0" 194 C "Maxtor MaXLine III 300GB 7200rpm"
+ "MAXTOR STM3320620AS" 194 C ""
+
+-"WDC WD1500ADFD-00NLR1" 194 C "Western Digital Raptor 150GB"
++"WDC WD1500ADFD-00NLR[01]" 194 C "Western Digital Raptor 150GB"
+ "WDC WD1600JS-00NCB1" 194 C "Western Digital Caviar 1600JS 160GB Sata"
+ "WDC WD1600SD-01KCC0" 194 C "Western Digital Caviar RE Serial ATA series"
+ "WDC WD2500JD-57HBC0" 194 C "Western Digital Caviar SE (Serial ATA) 250 GB"
+@@ -518,6 +524,8 @@
+ "WDC WD2500JS-41MVB1" 194 C "Western Digital SATAII Caviar 250GB Special Edition 8MB"
+ "WDC WD2500JD-00HBB0" 194 C "Western Digital SATA 250GB"
+ "WDC WD2500KS-00MJB0" 194 C "Western Digital SATA-II Caviar 250GB Special Edition 16MB"
++"WDC WD2500YD-01NVB1" 194 C "Western Digital Caviar RE 250GB 16MB"
+ "WDC WD3000JS-00PDB0" 194 C "Western Digital WD3000JS"
+-"WDC WD3200KS-00PFB0" 194 C ""
++"WDC WD3200KS-00PFB0" 194 C "Western Digital Caviar 320GB 16MB"
+ "WDC WD3200JD-22KLB0" 194 C "Western Digital Caviar SE 320GB 8MB"
++"WDC WD3200SD-01KNB0" 194 C "Western Digital Caviar RE 320GB SATA 8MB"
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch b/meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch
new file mode 100644
index 0000000..8f6b9c3
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch
@@ -0,0 +1,66 @@
+diff -ru hddtemp-0.3-beta15.orig/configure.in hddtemp-0.3-beta15/configure.in
+--- hddtemp-0.3-beta15.orig/configure.in 2005-10-17 20:14:19.000000000 +0100
++++ hddtemp-0.3-beta15/configure.in 2008-06-27 00:00:46.000000000 +0100
+@@ -17,6 +17,7 @@
+ # append the host alias to the tools for cross compiling
+ AC_HEADER_STDC
+ AC_CHECK_HEADERS(fcntl.h)
++AC_CHECK_HEADERS(iconv.h)
+ AC_CHECK_HEADERS(netinet/in.h)
+ AC_CHECK_TYPE(in_addr_t, ,[AC_DEFINE_UNQUOTED([in_addr_t], [uint32_t], [Define to 'uint32_t' if <netinet/in.h> does not define.])], [#include <netinet/in.h>])
+
+@@ -29,6 +30,8 @@
+ AM_GNU_GETTEXT
+ #AM_GNU_GETTEXT([external])
+
++AC_CHECK_FUNCS([bindtextdomain textdomain iconv])
++
+ dnl reasonable guesses for where stuff is installed
+ dnl if we don't do that now, the config.h will use ${prefix}
+ dnl for DEFAULT_DATABASE_PATH.
+diff -ru hddtemp-0.3-beta15.orig/src/hddtemp.c hddtemp-0.3-beta15/src/hddtemp.c
+--- hddtemp-0.3-beta15.orig/src/hddtemp.c 2006-04-19 03:37:35.000000000 +0100
++++ hddtemp-0.3-beta15/src/hddtemp.c 2008-06-26 23:59:40.000000000 +0100
+@@ -276,8 +276,12 @@
+ backtrace_sigbus();
+
+ setlocale (LC_ALL, "");
++#ifdef HAVE_BINDTEXTDOMAIN
+ bindtextdomain (PACKAGE, LOCALEDIR);
++#endif
++#ifdef HAVE_TEXTDOMAIN
+ textdomain (PACKAGE);
++#endif
+
+ show_db = debug = numeric = quiet = wakeup = af_hint = syslog_interval = 0;
+ unit = DEFAULT;
+diff -ru hddtemp-0.3-beta15.orig/src/utf8.c hddtemp-0.3-beta15/src/utf8.c
+--- hddtemp-0.3-beta15.orig/src/utf8.c 2006-04-19 03:37:02.000000000 +0100
++++ hddtemp-0.3-beta15/src/utf8.c 2008-06-27 00:02:15.000000000 +0100
+@@ -23,7 +23,9 @@
+
+ // Standard includes
+ #include <stdlib.h>
++#ifdef HAVE_ICONV_H
+ #include <iconv.h>
++#endif
+ #include <langinfo.h>
+ #include <locale.h>
+ #include <string.h>
+@@ -34,6 +36,7 @@
+
+ static char *iconv_from_utf8_to_locale(const char *string, const char* fallback_string)
+ {
++#ifdef HAVE_ICONV
+ const size_t buffer_inc = 80; // Increment buffer size in 80 bytes step
+ const char *charset;
+ iconv_t cd;
+@@ -93,6 +96,8 @@
+ if (dest_buffer != NULL)
+ free(dest_buffer); // free buffer
+ free(src_buffer); // free string
++#endif
++
+ return strdup(fallback_string); // and return fallback string
+ }
+
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp.db b/meta-oe/recipes-support/hddtemp/files/hddtemp.db
new file mode 100644
index 0000000..4a061cf
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp.db
@@ -0,0 +1,523 @@
+#
+# Insert a regular expression for support of the model or the serie of your hard drive.
+# If you don't know what to put in the second field, put the number
+# that appears most often for your brand :o)
+# A value of zero meens that we know that the drive doesn't have
+# a temperature sensor (you can set the unit to C or F).
+#
+############################################################################
+# The following list was found at (http://www.almico.com/forumharddisks.php)
+# If your drive is in the list send me a mail.
+#
+# Manufacturer Model Size Notes
+# FUJITSU FUJITSU MPF3102AH 10.0GB
+# FUJITSU FUJITSU MPG3204AH E 20.0GB
+# FUJITSU FUJITSU MPG3307AT 30.0GB
+# FUJITSU FUJITSU MPG3409AH 40.0GB
+# FUJITSU FUJITSU MPG3409AH EF 40.0GB
+# HITACHI HITACHI_DK23CA-10 9.8GB
+# HITACHI HITACHI_DK23CA-15 14.7GB
+# SAMSUNG SAMSUNG SV3012H 29.4GB
+# SEAGATE ST310210A 10.0GB
+# SEAGATE ST310211A 9.8GB
+# SEAGATE ST310215A 10.0GB
+# SEAGATE ST315320A 14.9GB
+# SEAGATE ST320410A 19.6GB
+# SEAGATE ST320413A 19.6GB
+# SEAGATE ST320420A 19.9GB
+# SEAGATE ST330610A 29.3GB
+# SEAGATE ST330620A 29.3GB
+# SEAGATE ST330621A 29.3GB
+# SEAGATE ST330630A 29.9GB
+# SEAGATE ST340016A 39.1GB
+# SEAGATE ST340810ACE 39.1GB
+# SEAGATE ST380020ACE 78.2GB
+# WESTERN DIGITAL WDC AC210200D 10.0GB
+# WESTERN DIGITAL WDC AC29100D 8.9GB
+# WESTERN DIGITAL WDC AC420400D 19.9GB
+# WESTERN DIGITAL WDC WD102AA 10.0GB
+#
+#################################################
+
+########################################
+############# ExcelStor drives
+########################################
+# "ExcelStor Technology CT215" ??? ? "ExcelStor CT215"
+"ExcelStor Technology J3.0" 194 C "ExcelStor Technology 3xy (xy GB)"
+"ExcelStor Technology J6.0" 194 C "ExcelStor Technology 6xy (xy GB)"
+"ExcelStor Technology J680" 194 C "ExcelStor Technology J680 (80 GB)"
+"ExcelStor Technology J860" 194 C "ExcelStor Technology J860 (60 GB)"
+"ExcelStor Technology J880" 194 C "ExcelStor Technology J880 (80 GB)"
+
+
+
+########################################
+############# Fujitsu drives
+########################################
+"FUJITSU MHM2100AT" 0 C "Fujitsu MHM2100AT"
+
+"FUJITSU MHN2150AT" 194 C "Fujitsu MHN2150AT"
+"FUJITSU MHN2200AT" 194 C "Fujitsu MHN2200AT"
+"FUJITSU MHN2300AT" 194 C "Fujitsu MHN2300AT"
+
+"FUJITSU MHR2020AT" 194 C "Fujitsu MHR2020AT"
+"FUJITSU MHR2030AT" 194 C "Fujitsu MHR2030AT"
+
+"FUJITSU MHS2030AT" 194 C "Fujitsu MHS2030AT"
+"FUJITSU MHS2040AT" 194 C "Fujitsu MHS2040AT"
+"FUJITSU MHS2060AT" 194 C "Fujitsu MHS2060AT (Apple PowerBook G4)"
+
+"FUJITSU MHT2030AC" 194 C "Fujitsu Mobile 30GB, 2MB, 4200RPM (automotive)"
+
+"FUJITSU MHT2030AT" 194 C "Fujitsu MHT2030AT"
+"FUJITSU MHT2040AH" 194 C "Fujitsu MHT2040AH"
+"FUJITSU MHT2040AT" 194 C "Fujitsu MHT2040AT"
+"FUJITSU MHT2060AH" 194 C "Fujitsu MHT2060AH"
+"FUJITSU MHT2060AT" 194 C "Fujitsu MHT2060AT"
+"FUJITSU MHT2080AH" 194 C "Fujitsu MHT2080AH"
+
+"FUJITSU MHU2100AT" 194 C "Fujitsu MHU2100AT 100GB, 8MB (4200RPM)"
+
+"FUJITSU MHV2100AH" 194 C "FUJITSU MHV2100AH"
+"FUJITSU MHV2100AT" 194 C "FUJITSU MHV2100AT"
+"FUJITSU MHV2080[AB]H" 194 C "FUJITSU MHV2080AH"
+
+"FUJITSU MPF3204AH" 194 C "Fujitsu MPF3204AH"
+
+"FUJITSU MPG3204AT.*" 194 C "Fujitsu MPG3204AT"
+"FUJITSU MPG3307AT" 194 C "Fujitsu MPG3307AT"
+"FUJITSU MPG3409AT.*" 194 C "Fujitsu MPG3409AT E"
+"FUJITSU MPG3409AH.*" 194 C "Fujitsu MPG3409AH E"
+"FUJITSU MPG3204AH" 194 C "Fujitsu MPG3204AH"
+"FUJITSU MPG3102AT E" 194 C "FUJITSU MPG3102AT E"
+
+
+
+########################################
+############# Hitachi drives
+########################################
+"HITACHI_DK13FA-40B" 194 C "Hitachi DK13FA-40B"
+"HITACHI_DK228A-65" 0 C "Hitachi DK228A-65"
+"HITACHI_DK23CA-(15|20|30|30B|75)" 194 C "Hitachi DK23CA series"
+"HITACHI_DK23DA-[234]0" 194 C "Hitachi DK23DA series"
+"HITACHI_DK23EA-[2346]0" 194 C "Hitachi DK23EA series"
+"HITACHI_DK23EB-40" 194 C "Hitachi DK23EB series"
+"HITACHI_DK23FA-[468]0" 194 C "Hitachi DK23FA series"
+"HITACHI_DK23FB-[46]0" 194 C "Hitachi DK23FB series"
+
+"HDS722516VLAT[28]0" 194 C "Hitachi Deskstar 7K250 160GB 2/8MB cache"
+"HDS722525VLAT80" 194 C "Hitachi Deskstar 7K250 200/250GB, 7200RPM, 8MB, Parallel-ATA"
+"HDS722512VLAT80" 194 C "Hitachi Deskstar 7K250 80GB"
+"HDS722540VLAT20" 194 C "Hitachi Deskstar 7K250, 40GB, 7200RPM, 2MB cache"
+"HDS722580VLAT20" 194 C "Deskstar 7K250 60GB"
+"HDS724040KLSA80" 194 C "Hitachi Deskstar 7K250 400GB, 7200RPM, 8MB, Serial-ATA"
+"HDS728080PLAT20" 194 C "Hitachi Deskstar 7K80 80GB"
+
+"HDS722525VLSA80" 194 C "Hitachi Deskstar 7K250 250GB, 7200RPM, 8MB, SATA"
+"HDS722516VLSA80" 194 C "Hitachi Deskstar 7K250 160GB 8Mo cache SATA"
+"HDS722580VLSA80" 194 C "Hitachi Deskstar 7K250 80GB SATA"
+"HDS728040PLAT20" 194 C "Hitachi Deskstar 7K80 40GB"
+
+"HDS724040KLAT80" 194 C "Hitachi Deskstar 7K400 400GB 8Mo cache PATA"
+
+"HDT7225(16|25)DLAT80" 194 C "Hitachi Deskstar T7K250 series, 7200RPM, 8MB, PATA"
+"HDT722516DLA380 V43O" 194 C "Hitachi T7K250 SATA"
+"HDT722525DLA380" 194 C "Hitachi Deskstar T7K250 250GB 8Mo cache SATAII"
+"HDT725050VLA360" 194 C "Hitachi Deskstar T7K500 500GB, 7200RPM, 16MB, SATA II"
+
+"HTE721010G9AT00" 194 C "Hitachi Travelstar 100GB (7200RPM)"
+"HTE726060M9AT00" 194 C "Hitachi Travelstar 60GB (7200RPM)"
+"HTS424030M9AT00" 194 C "Hitachi Travelstar 30GB (4200RPM)"
+"HTS424040M9AT00" 194 C "Hitachi Travelstar 4K40 40GB 2MB cache (4200RPM)"
+"HTS541010G9SA00" 194 C "Hitachi Travelstar 100GB SATA"
+"HTS541040G9AT00" 194 C "Hitachi Travelstar 40GB (5400RPM)"
+"HTS541080G9AT00" 194 C "Hitachi Travelstar 80GB (5400RPM)"
+"HTS548020M9AT00" 194 C "Hitachi Travelstar 20GB (5400RPM)"
+"HTS548030M9AT00" 194 C "Hitachi Travelstar 30GB (5400RPM)"
+"HTS548040M9AT00" 194 C "Hitachi Travelstar 40GB (5400RPM)"
+"HTS548060M9AT00" 194 C "Hitachi Travelstar 60GB (5400RPM)"
+"HTS548080M9AT00" 194 C "Hitachi Travelstar 80GB (5400RPM)"
+"HTS721080G9AT00" 194 C "Hitachi Travelstar 7K100 80GB (7200RPM)"
+"HTS726060M9AT00" 194 C "Hitachi Travelstar 60GB"
+
+
+########################################
+############# IBM drives
+########################################
+
+# DJSA serie is using F0h command to report temperature and also have
+# SMART capabilties but it was reported not to work.
+# "DJSA-2(30|32|10|20|05)" 0 C "IBM Travelstar 20GN, 32GH, 30GT series"
+
+"IBM-DARA-212000" 0 C "IBM Travelstar 12GN"
+"IBM-DTTA-35*" 0 C "IBM Deskstar 16GP serie"
+
+# according to specifications they do not seems to have sensor
+# but I prefer waiting for a report
+#"IBM-DTTA-37*" 0 C "IBM Deskstar 14GXP serie"
+
+"IBM-DJNA-35.*" 231 C "IBM Deskstar 25 GP serie"
+"IBM-DJNA-37.*" 231 C "IBM Deskstar 22 GXP serie"
+"IBM-DHEA-(34330|36480)" 0 C "IBM Deskstar 5 serie"
+"IBM-DHEA-(34331|36481|38451)" 0 C "IBM Deskstar 8 serie"
+"IBM-DPTA-37.*" 231 C "IBM Deskstar 34GXP serie"
+"IBM-DPTA-35.*" 231 C "IBM Deskstar 37GP serie"
+"IBM-DTLA-30[57]0[123467][05]" 194 C "IBM Deskstar 40GV & 75GXP series"
+"IC25N0[1234]0ATCS04-0" 194 C "IBM Travelstar 40GN serie"
+"IC25N0[24]0ATC[SX]05-0" 194 C "IBM Travelstar 40GNX serie"
+"IC25N0(10|15|20|30)ATDA04-0" 194 C "IBM Travelstar 30GN serie"
+"IC25N0[23468]0ATMR04*" 194 C "Hitachi Travelstar 80GN"
+"IC25T048ATDA05-0" 194 C "IBM Travelstar 48GH serie"
+"IC25T060ATC[SX]05-0" 194 C "IBM Travelstar 60GH serie"
+"IC35L0[12346]0AVER07" 194 C "IBM Deskstar 60GXP serie"
+"IC35L[01][02468]0AVV[AN]07*" 194 C "IBM Deskstar 120GXP serie"
+"IC35L[01][23689]0AVV207*" 194 C "IBM Deskstar 180GXP serie"
+
+########################################
+############# Maxtor drives
+########################################
+#"Maxtor 2B0[012][04568]H1" ??? C "Maxtor Fireball 541DX"
+"Maxtor 2F0[234]0[LJ]0" 194 C "Maxtor Fireball 3"
+# which one must I trust ?
+#"Maxtor 4D040H2" 9 C "Maxtor DiamondMax D540X-4D"
+#"Maxtor 4D040H2" 0 C "Maxtor 4D040H2"
+#"Maxtor 4D080H4" 12 C "Maxtor DiamondMax D540X-4D"
+#"Maxtor 4D060H3" 12 C "Maxtor DiamondMax D540X-4D"
+#"Maxtor 4D080H4" 9 C "Maxtor DiamondMax D540X-4D"
+"MAXTOR 4K0[468]0H[234]" 194 C "Maxtor DiamondMax D540X serie"
+"MAXTOR 4K020H1" 194 C "Maxtor 4K020H1"
+"Maxtor 4A300J0" 194 C "Maxtor MaxLine II 300GB 5400RPM"
+"Maxtor 4[RA](25|16|12|08|06)0[LJ]0" 194 C "Maxtor DiamondMax 16"
+"Maxtor 5(1024|1369|2049|2732|3073|4098)U(2|3|4|6|8)" 0 C "Maxtor DiamondMax Plus 40"
+"Maxtor 5A250J0" 194 C "Maxtor MaXline II 250GB 5400RPM"
+"Maxtor 5A300J0" 194 C "Maxtor 5A300J0"
+"Maxtor 5T0[24]0H[24]" 0 C "Maxtor DiamondMax Plus 60"
+"Maxtor 6E0[234]0L0" 194 C "Maxtor DiamondMax Plus 8"
+"MAXTOR 6L0[2468]0[LJ][1234]" 194 C "Maxtor DiamondMax Plus D740X family"
+"Maxtor 6V320F0" 194 C "Maxtor Diamond Max 10 SATA II 320 GB"
+"Maxtor 6Y(06|08|12|16|20|25)0[LPM]0" 194 C "Maxtor DiamondMax Plus 9"
+"Maxtor 7L300[RS]0" 194 C "Maxtor 7L300R0 MaxLine+III 300GB 7200rpm"
+"Maxtor 7Y250[PM]0" 194 C "Maxtor MaXLine Plus II 250GB 7200RPM"
+"Maxtor 94098U8" 11 C "Maxtor DiamondMax 40 94098U8"
+
+#"Maxtor 6(B|L)(08|12|16|20|25|30)0[RSPM]0" 194 C "Maxtor DiamondMax Plus 10"
+"Maxtor 6B080M0" 194 C "Maxtor DiamondMax 10 80GB 8MB SATA"
+"Maxtor 6B120M0" 194 C "Maxtor DiamondMax 10 120GB 8MB SATA"
+"Maxtor 6B160M0" 194 C "Maxtor DiamondMax 10 160GB 8MB SATA"
+"Maxtor 6B160P0" 194 C "Maxtor DiamondMax 10 160GB 8MB ATA/133"
+"Maxtor 6B200M0" 194 C "Maxtor DiamondMax 10 200GB 8MB SATA"
+"Maxtor 6B200P0" 194 C "Maxtor DiamondMax 10 200GB 8MB ATA/133"
+"Maxtor 6B250R0" 194 C "Maxtor DiamondMax 10 250GB 16MB ATA/133"
+"Maxtor 6B250S0" 194 C "Maxtor DiamondMax 10 250GB 16MB SATA"
+"Maxtor 6B300R0" 194 C "Maxtor DiamondMax 10 300GB 16MB ATA/133"
+"Maxtor 6B300S0" 194 C "Maxtor DiamondMax 10 300GB 16MB SATA"
+"Maxtor 6L080L0" 194 C "Maxtor DiamondMax 10 80GB 2MB ATA/133 RoHS"
+"Maxtor 6L080M0" 194 C "Maxtor DiamondMax 10 80GB 8MB SATA RoHS"
+"Maxtor 6L080P0" 194 C "Maxtor DiamondMax 10 80GB 8MB ATA/133 RoHS"
+"Maxtor 6L120M0" 194 C "Maxtor DiamondMax 10 120GB 8MB SATA RoHS"
+"Maxtor 6L120P0" 194 C "Maxtor DiamondMax 10 120GB 8MB ATA/133 RoHS"
+"Maxtor 6L160M0" 194 C "Maxtor DiamondMax 10 160GB 8MB SATA RoHS"
+"Maxtor 6L160P0" 194 C "Maxtor DiamondMax 10 160GB 8MB ATA/133 RoHS"
+"Maxtor 6L200M0" 194 C "Maxtor DiamondMax 10 200GB 8MB SATA RoHS"
+"Maxtor 6L200P0" 194 C "Maxtor DiamondMax 10 200GB 8MB ATA/133 RoHS"
+"Maxtor 6L250R0" 194 C "Maxtor DiamondMax 10 250GB 16MB ATA/133 RoHS"
+"Maxtor 6L250S0" 194 C "Maxtor DiamondMax 10 250GB 16MB SATA RoHS"
+"Maxtor 6L300R0" 194 C "Maxtor DiamondMax 10 300GB 16MB ATA/133 RoHS"
+"Maxtor 6L300S0" 194 C "Maxtor DiamondMax 10 300GB 16MB SATA RoHS"
+"Maxtor 6V080E0" 194 C "Maxtor DiamondMax 10 80GB 8MB SATAII RoHS"
+"Maxtor 6V160E0" 194 C "Maxtor DiamondMax 10 160GB 8MB SATAII RoHS"
+"Maxtor 6V200E0" 194 C "Maxtor DiamondMax 10 200GB 8MB SATAII RoHS"
+"Maxtor 6V250F0" 194 C "Maxtor DiamondMax 10 250GB 16MB SATAII RoHS"
+"Maxtor 6V300F0" 194 C "Maxtor DiamondMax 10 300GB 16MB SATAII RoHS"
+
+
+
+########################################
+############# Quantum drives
+########################################
+"QUANTUM FIREBALLP AS40.0" 0 C "Quantum Fireball AS40"
+"QUANTUM FIREBALL CX10.2A" 0 C "Quantum Fireball CX10.2A"
+#"QUANTUM FIREBALLlct10 20" 4 C "Quantum Fireball CT10 20GB"
+# I suspect the QUANTUM FIREBALL_TM2110A to have a sensor in field 9...
+# "QUANTUM FIREBALL_TM2110A" 9 C "Quantum Fireball TM2110A"
+
+
+
+########################################
+############# Samsung drives
+########################################
+# somenone reported a problem with the SP8004H which reports a temperature
+# 10°C below the ambient temperature
+"SAMSUNG HA(200|250)JC" 194 C "Samsung SpinPoint V120CE series"
+"SAMSUNG HD160JJ" 194 C "Samsung 160GB, 7200RPM, 8MB cache, SATA"
+"SAMSUNG HD160JJ/P" 194 C "Samsung SpinPoint P80 SD 160GB (7200RPM, 8MB cache)"
+"SAMSUNG HD[30|32|40][01]L[DJ]" 194 C "Samsung SpinPoint T133 series (300-400MB)"
+"SAMSUNG HD250KD" 194 C "Samsung SpinPoint T133 series (250 MB PATA)"
+"SAMSUNG HD321KJ" 194 C "Samsung Spinpoint T166 (7200RPM, 16MB cache) - SATA"
+"SAMSUNG HD501LJ" 194 C "Samsung HD501LJ"
+"SAMSUNG MP0(302|402|603|804)H" 194 C "Samsung SpinPoint M40 2.5inch"
+"SAMSUNG SW0434A" 0 C "Samsung SW0434A"
+"SAMSUNG SP(2001|4002|6003|8004|40A2)H" 194 C "Samsung SpinPoint P40 serie"
+"SAMSUNG SP(0612|0802|1203|1604|0812|1213|1614)N" 194 C "Samsung SpinPoint P80 serie"
+"SAMSUNG SP(0612|0802|1203|1604|0812|1213|1614)C" 194 C "Samsung SpinPoint P80 series - SATA"
+"SAMSUNG SP0411N" 194 C "Samsung SpinPoint PL40 serie"
+"SAMSUNG SP0822N" 194 C "Samsung SP0822N"
+"SAMSUNG SP(0812|1213|1614)C" 194 C "Samsung Spinpoint 160G SATA"
+"SAMSUNG SP2[05]14N" 194 C "Samsung SpinPoint P120 series (7200RPM, 8MB cache)"
+"SAMSUNG SP2[05]04C" 194 C "Samsung SpinPoint P120 series - SATA"
+"SAMSUNG SV0432A" 0 C "Samsung SV0432A"
+"SAMSUNG SV3002H" 0 C "Samsung SpinPoint V30 serie"
+"SAMSUNG SV(2001|4002|4012|6003|8004)H" 194 C "Samsung SpinPoint V40 serie"
+#"SAMSUNG SV(0221|0602|0813|1204)H" 9 C "Samsung SpinPoint V60 serie"
+#"SAMSUNG SV1204H" 194 C "Samsung 120G"
+"SAMSUNG SV(0401|0802|1203|1604)N" 194 C "Samsung SpinPoint V80 serie"
+"SAMSUNG SV4012H" 194 C "Samsung 40GB, 5400RPM, 2MB cache"
+
+########################################
+############# Seagate drives
+########################################
+"Seagate Technology 1275MB - ST31276A" 0 C "Seagate ST31276A"
+"ST3412A" 0 C "Seagate ST3412A"
+"ST38641A" 0 C "Seagate ST38641A"
+"ST310014A" 194 C "Seagate ST310014A"
+"ST310210A" 0 C "Seagate ST310210A"
+"ST310211A" 194 C "Seagate ST310211A"
+"ST310220A" 0 C "Seagate ST310220A"
+# SEAGATE ST313021A 13.0GB
+"ST313021A" 0 C "Seagate U8 ST313021A"
+"ST310240A" 0 C "Seagate Medalist 10240 Ultra ATA-3"
+"ST315320A" 194 C "Seagate ST315320A"
+"ST320423A" 0 C "Seagate U10 20423, Ultra ATA/66"
+"ST320011A" 194 C "Seagate ST320011A"
+"ST320014A" 194 C "Seagate ST320014A (5400 rpm, 20Gb)"
+"ST320410A" 194 C "Seagate ST320410A"
+"ST320413A" 194 C "Seagate ST320413A"
+"ST320414A" 194 C "Seagate ST320414A"
+"ST320420A" 194 C "Seagate Barracuda II ST320420A"
+"ST330013A" 194 C "Seagate ST330013A Barracuda ATA V 30GB, 7200 rpm"
+"ST330620A" 194 C "Seagate ST330620A"
+"ST330621A" 194 C "Seagate ST330621A"
+"ST330630A" 194 C "Seagate Barracuda ST330630A"
+"ST340014A" 194 C "Seagate Barracuda 7200.7 40Gb"
+"ST340015A" 194 C "Seagate Barracuda 5400.1 40GB"
+"ST340016A" 194 C "Seagate ST340016A"
+"ST340810A" 194 C "Seagate U Series 40810 (40Gb, Ultra ATA/100, 5400 rpm)"
+"ST340823A" 194 C "Seagate U Series 5 40823"
+"ST340824A" 194 C "Seagate Barracuda III"
+"ST360015A" 194 C "Seagate Barracuda V ST360015A"
+"ST360020A" 194 C "Seagate U Series 60020"
+"ST360021A" 194 C "Seagate Barracuda IV ST360021A"
+"ST380011A" 194 C "Seagate Barracuda 7200.7 80GB"
+"ST380012A" 194 C "Seagate ST380012A 80GB"
+"ST380013A" 194 C "Seagate Barracuda 7200.7 80GB"
+"ST380013AS" 194 C "Seagate Barracuda 7200.7 80GB (Serial ATA)"
+"ST380020A" 194 C "Seagate U Series 80020 (80Gb, Ultra ATA/100, 5400 rpm)"
+"ST380021A" 194 C "Seagate Barracuda IV ST380021A"
+"ST380022A" 194 C "Seagate Barracuda U7 80022, Ultra ATA/100"
+"ST380023A" 194 C "Seagate Barracuda V ST380023A"
+"ST380817AS" 194 C "Seagate Barracuda 7200.7 80GB - SATA"
+"ST39111A" 194 C "Seagate ST39111A (from Sun Ultra)"
+"ST3120020A" 194 C "Seagate ST3120020A"
+"ST3120022A" 194 C "Seagate Baraccuda 7200.7 120GB"
+"ST3120023A" 194 C "Seagate Barracuda V ST3120023A"
+"ST3120024A" 194 C "Seagate Barracuda V ST3120024A"
+"ST3120025ACE" 194 C "Seagate Barracuda V ST3120025ACE"
+"ST3120026A" 194 C "Seagate Barracuda V ST3120026A"
+"ST3160021A" 194 C "Seagate Barracuda 7200.7 - ST3160021A"
+"ST3160023(A|AS)" 194 C "Seagate Barracuda V ST3160023A and AS (160Gb, ATA100 or Serial ATA)"
+"ST3160827AS" 194 C "Seagate Barracuda 7200.7 160GB (Serial ATA)"
+"ST3200021A" 194 C "Seagate Barracuda 7200.7 Plus 200GB"
+"ST3200822(A|AS)" 194 C "Seagate Barracuda 7200.7 Plus 200GB (PATA or SATA)"
+"ST3200826A" 194 C "Seagate Barracuda 7200.8 200Gb"
+"ST3250623A" 194 C "Seagate Barracuda 7200.16 250GB"
+"ST3250823A" 194 C "Seagate Barracuda 7200.8 250GB"
+"ST3250823A" 194 C "Seagate Barracuda 7200.7 Plus 250GB"
+"ST3250823NS" 194 C "Seagate NL35 SATA (RAID-Edition) 7200 250GB"
+"ST3300831A" 194 C "Seagate 300GB ST3300831A"
+"ST3400832A" 194 C "Seagate Barracuda 7200.8 Plus 400GB"
+"ST3400633(A|AS)" 194 C "Seagate Barracuda 7200.7 400 GB"
+"ST3500630NS" 194 C "Seagate"
+"ST3400632NS" 194 C "Seagate"
+"ST3320620AS" 194 C "Seagate Barracuda 7200.7 320 GB"
+"ST3500630AS" 194 C "Seagate Barracuda 7200.7 500 GB"
+"ST3802110A" 194 C "Seagate Barracuda 7200.9 80 GB"
+"ST910021A" 194 C "Seagate Momentus 7200.1 100GB"
+"ST910082[35]A" 194 C "Seagate Momentus 5400.2 100GB"
+"ST9120821A" 194 C "Seagate Momentus 5400.2 120GB"
+"ST94019A" 194 C "Seagate ST94019A"
+"ST94813A" 194 C "Seagate Momentus 5400.2 40GB"
+"ST94[08]11A" 194 C "Seagate ST94011A"
+"ST960821A" 194 C "Seagate ST960821A"
+"ST960822A" 194 C "Seagate Momentus 5400.2 60GB"
+"ST96812AS" 194 C "Seagate Momentus 5400.2 60GB SATA"
+"ST9808211A" 194 C "Seagate Momentus 5400.2 80GB"
+
+########################################
+############# TOSHIBA Laptops
+########################################
+"MK4313MAT" 220 C "Toshiba MK4313MAT"
+"TOSHIBA MK1032GAX" 194 C "Toshiba MK1032GAX"
+"TOSHIBA MK1517GAP" 0 C "Toshiba MK1517GAP"
+"TOSHIBA MK2018GAS" 226 F "Toshiba MK2018GAS"
+"TOSHIBA MK2023GAS" 194 C "Toshiba MK2023GAS"
+
+"TOSHIBA MK3017GAP" 0 C "Toshiba MK3017GAP"
+"TOSHIBA MK3021GAS" 194 C "Toshiba MK3021GAS"
+"TOSHIBA MK3025GAS" 194 C "Toshiba MK3025GAS"
+
+#"TOSHIBA MK4019GAX" 222 C "Toshiba MK4019GAX"
+"TOSHIBA MK4021GAS" 194 C "Toshiba MK4021GAS"
+"TOSHIBA MK4025GAS" 194 C "Toshiba MK4025GAS 40 Go"
+"TOSHIBA MK4026GAS" 194 C "Toshiba MK4026GAS 40 Go"
+"TOSHIBA MK4032GAX" 194 C "Toshiba MK4032GAX"
+
+"TOSHIBA MK6021GAS" 194 C "Toshiba MK6021GAS"
+"TOSHIBA MK6022GAX" 194 C "Toshiba MK6022GAX"
+"TOSHIBA MK6025GAS" 194 C "Toshiba MK6025GAS"
+"TOSHIBA MK6026GAX" 194 C "Toshiba MK6026GAX"
+"TOSHIBA MK8025GAS" 194 C "Toshiba MK8025GAS"
+"TOSHIBA MK8026GAX" 194 C "Toshiba MK8026GAX"
+
+"MK4025GAS" 194 C "Toshiba MK4025GAS"
+
+
+########################################
+############# Western Digital drives
+########################################
+# WDC AC310100B and WDC AC2850F are reported not working
+# no more informations were given
+"WDC AC22000L" 0 C "Western Digital Caviar AC22000"
+"WDC AC420400D" 231 C "Western Digital Caviar AC420400D"
+"WDC AC418000D" 231 C "Western Digital AC418000D"
+"WDC WD135BA" 231 C "Western Digital WD135BA"
+
+"WDC WD100EB-00BHF0" 0 C "Western Digital 100EB-00BHF0"
+"WDC WD200BB-00AUA1" 0 C "Western Digital Caviar WD200BB"
+#"WDC WD200BB-60DGA0" 0 C "Western Digital Caviar WD200BB"
+"WDC WD300BB-00CAA0" 0 C "Western Digital WD300BB"
+"WDC WD360GD-00FNA0" 194 C "Western Digital SATA Raptor 36.7GB"
+"WDC WD400BB-00CAA0" 0 C "Western Digital 400BB-00CAA0"
+"WDC WD400BB-00J[KH]A0" 194 C "Western Digital Caviar WD400BB"
+"WDC WD400BB-23JHC0" 194 C "Western Digital 23JHC0"
+#"WDC WD400BB-00GFA0" 0 C ""
+"WDC WD400BB-55HEA0" 194 C "Western Digital Caviar WD400BB"
+"WDC WD400BB-(18CA|00DE)A0" 0 C "Western Digital Caviar WD400BB"
+"WDC WD400BB-75FJA1" 194 C "Western Digital Caviar WD400BB"
+"WDC WD400EB-00CPF0" 0 C "Western Digital 400EB-00CPF0"
+"WDC WD400JB-00(JJ|FM|FS)A0" 194 C "Western Digital Caviar 40GB Special Edition 8MB"
+"WDC WD400JB-00ETA0" 194 C "Western Digital 400JB-00ETA0"
+"WDC WD400JB-00JJC0" 194 C "Western Digital 400JB-00JJC0 40GB"
+"WDC WD400LB-00DNA0" 194 C "Western Digital 400LB-00DNA0"
+"WDC WD400UE-22HCT0" 194 C "Western Digital 40GB Notebook HDD"
+"WDC WD400VE-75HDT1" 194 C "Western Digital Scorpio 40GB"
+"WDC WD600BB-32BSA0" 0 C "Western Digital 600BB-32BSA0"
+"WDC WD600JB-00ETA0" 194 C "Western Digital 600JB-00ETA0"
+"WDC WD600LB-00DNA0" 194 C "Western Digital 60GB"
+"WDC WD600VE-75HDT0" 194 C "Western Digital 600VE-75HDT0"
+"WDC WD600VE-00HDT0" 194 C "Western Digital 600VE-00HDT0"
+"WDC WD740GD-00FL21.0" 194 C "Western Digital SATA Raptor"
+"WDC WD740GD-([05]0FL[AC]0|75FLA1)" 194 C "Western Digital SATA Raptor 74GB 8MB"
+"WDC WD800BB-00CAA1" 0 C "Western Digital WD800BB-00CAA1"
+"WDC WD800BB-(00|22)DKA0" 194 C "Western Digital WD800BB 80 Go"
+"WDC WD800BB-32CCB0" 194 C "Western Digital 800BB-32CCB0"
+"WDC WD800BB-55HEA0" 194 C "Western Digital 800BB-55HEA0"
+"WDC WD800BB-00JHA0" 194 C "Western Digital 800BB-00JHA0"
+"WDC WD800BB-00JKA0" 194 C "Western Digital 800BB-00JKA0"
+"WDC WD800BB-55JKA0" 194 C "Western Digital 800BB-55JKA0"
+"WDC WD800BB-75FRA0" 194 C "Western Digital Caviar WD800BB"
+"WDC WD800JB-00CRA1" 0 C "Western Digital Caviar WD800JB"
+"WDC WD800JB-00(ET|FM|FS)A0" 194 C "Western Digital Caviar 80GB Special Edition 8MB"
+"WDC WD800JB-00JJ[AC]0" 194 C "Western Digital WD800JB"
+"WDC WD800JD-(00|55)(HK|JR)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+"WDC WD800JD-00(HK|JN)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+"WDC WD800LB-(00|55)DNA0" 194 C "Western Digital Caviar WD800LB 80 Go ATA-100"
+"WDC WD800VE-07HDT0" 194 C "Western Digital 800VE-07HDT0"
+"WDC WD1200BB-00(FTA|GUA)0" 194 C "Western Digital Caviar EIDE 2MB Cache"
+"WDC WD1200JB-00(EV|FU|GV)A0" 194 C "Western Digital Caviar 120GB Special Edition 8MB"
+"WDC WD1200JB-22GVA0" 194 C "Western Digital Caviar 120GB"
+"WDC WD1200JD-00(GBB|HBC)0" 194 C "Western Digital WD1200JD"
+"WDC WD1200LB-55EDA0" 194 C "Western Digital WD1220LB"
+"WDC WD1200SB-01KB[AC]0" 194 C "Western Digital Caviar RE (Raid Edition) 120 GB"
+"WDC WD1600BB-00DWA0" 194 C "Western Digital Caviar WD1600BB"
+"WDC WD1600JB-(00EV|00FU|00GV|22GV|75GV)A0" 194 C "Western Digital Caviar 160GB Special Edition 8MB"
+"WDC WD2000BB-00FTA0" 194 C "Western Digital WD2000BB"
+"WDC WD2000JB-(00EV|32EV|34EV|00FU|00GV|55GV|98GV|00KF)A0" 194 C "Western Digital Caviar 200GB Special Edition 8MB"
+"WDC WD2000JB-00GVC0" 194 C "Western Digital WD2000JB"
+"WDC WD2000JS-00MHB1" 194 C "Western Digital SATA 200GB"
+"WDC WD2500JB-(00RE|00EV|00FU|32FU|00GV|55GV)A0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+"WDC WD2500JB-00GVC0" 194 C "Western Digital 250GB"
+"WDC WD2500JD-(00G|32H)BB0" 194 C "Western Digital SATA Caviar 250GB Special Edition 8MB"
+"WDC WD2500JD-40HBC0" 194 C "Western Digital WD2500JD-40HBC0"
+"WDC WD2500PB-98FBA0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+"WDC WD2500PD-00FZB1" 194 C "Western Digital WD2500PD-00FZB1"
+"WDC WD2500SD-01KCB0" 194 C "Western Digital Caviar RE 250GB 8MB"
+"WDC WD3000JB-00KFA0" 194 C "Western Digital WD3000JB"
+"WDC WD3200JB-00KFA0" 194 C "Western Digital Caviar 320GB 8MB"
+"WDC WD4000KD-00NAB0" 194 C "Western Digital Caviar SE16 400GB 16MB"
+"WDC WD4000YR-01PLB0" 194 C "Western Digital Caviar RE2 400GB 16MB"
+"WD4000YS-01MPB0" 194 C "Western Digital RE2 7200 SATA II 400 GB"
+
+# not sure for next
+# "WDC WD1200JB-00CRA1" 9 C "Western Digital 1200JB-00CRA1"
+# "WDC WD273BA" 9 C "Western Digital WD273BA"
+
+
+
+
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+
+"ST3750640AS" 194 C "Seagate Barracuda 7200.10 SATA 750GB"
+"ST3750840AS" 194 C "Seagate Barracuda 7200.10 SATA 750GB"
+"ST3500630AS" 194 C "Seagate Barracuda 7200.10 SATA 500GB"
+"ST3500830AS" 194 C "Seagate Barracuda 7200.10 SATA 500GB"
+"ST3400620AS" 194 C "Seagate Barracuda 7200.10 SATA 400GB"
+"ST3400620A" 194 C "Seagate Barracuda 7200.10 400GB"
+"ST3400820AS" 194 C "Seagate Barracuda 7200.10 SATA 400GB"
+"ST3320620AS" 194 C "Seagate Barracuda 7200.10 SATA 320GB"
+"ST3320820AS" 194 C "Seagate Barracuda 7200.10 SATA 320GB"
+"ST3300620AS" 194 C "Seagate Barracuda 7200.10 SATA 300GB"
+"ST3300820AS" 194 C "Seagate Barracuda 7200.10 SATA 300GB"
+"ST3250620AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3250820AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3250410AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3250310AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3200820AS" 194 C "Seagate Barracuda 7200.10 SATA 200GB"
+"ST3160815AS" 194 C "Seagate Barracuda 7200.10 SATA 160GB"
+"ST3160215AS" 194 C "Seagate Barracuda 7200.10 SATA 160GB"
+"ST3120815AS" 194 C "Seagate Barracuda 7200.10 SATA 120GB"
+"ST3120215AS" 194 C "Seagate Barracuda 7200.10 SATA 120GB"
+"ST380815AS" 194 C "Seagate Barracuda 7200.10 SATA 80GB"
+"ST380215AS" 194 C "Seagate Barracuda 7200.10 SATA 80GB"
+"ST340815AS" 194 C "Seagate Barracuda 7200.10 SATA 40GB"
+"ST340215AS" 194 C "Seagate Barracuda 7200.10 SATA 40GB"
+"ST3300622AS" 194 C "Seagate Barracuda 7200.9 SATA2.5 300GB"
+"ST3300831A" 194 C "Seagate Barracuda 7200.8 PATA 300GB"
+
+"Maxtor 7(L|V)250(F|R|S)0" 194 C "Maxtor MaXLine III 250GB 7200rpm"
+"Maxtor 7(L|V)300(F|R|S)0" 194 C "Maxtor MaXLine III 300GB 7200rpm"
+"MAXTOR STM3320620AS" 194 C ""
+
+"WDC WD1500ADFD-00NLR1" 194 C "Western Digital Raptor 150GB"
+"WDC WD1600JS-00NCB1" 194 C "Western Digital Caviar 1600JS 160GB Sata"
+"WDC WD1600SD-01KCC0" 194 C "Western Digital Caviar RE Serial ATA series"
+"WDC WD2500JD-57HBC0" 194 C "Western Digital Caviar SE (Serial ATA) 250 GB"
+"WDC WD2500JS" 194 C "Western Digital WD2500JS"
+"WDC WD2500JS-41MVB1" 194 C "Western Digital SATAII Caviar 250GB Special Edition 8MB"
+"WDC WD2500JD-00HBB0" 194 C "Western Digital SATA 250GB"
+"WDC WD2500KS-00MJB0" 194 C "Western Digital SATA-II Caviar 250GB Special Edition 16MB"
+"WDC WD3000JS-00PDB0" 194 C "Western Digital WD3000JS"
+"WDC WD3200KS-00PFB0" 194 C ""
+"WDC WD3200JD-22KLB0" 194 C "Western Digital Caviar SE 320GB 8MB"
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff b/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
new file mode 100644
index 0000000..393b5f4
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
@@ -0,0 +1,7545 @@
+Megapatch from debian
+
+Original URL: http://ftp.debian.org/debian/pool/main/h/hddtemp/hddtemp_0.3-beta15-52.diff.gz
+
+Upstream-Status: unmaintained
+
+--- hddtemp-0.3-beta15.orig/README
++++ hddtemp-0.3-beta15/README
+@@ -28,10 +28,7 @@
+ INFORMATION
+ ===========
+ hddtemp accesses to the SATA disks via ATA pass-through commands (defined in
+-T10/04-262r7). At the time of writing (kernel 2.6.11-rc5 has just been
+-released), kernels doesn't have support for ATA pass-through. You have to
+-update the libata driver with a newer version that could be found on:
+-http://www.kernel.org/pub/linux/kernel/people/jgarzik/libata/
++T10/04-262r7). Only kernel >= 2.6.16 have this support.
+
+ In daemon mode, hddtemp doesn't allow too much query at a time. If the interval
+ between two query is inferior to 1 minute, hddtemp will give the previous value
+--- hddtemp-0.3-beta15.orig/debian/rules
++++ hddtemp-0.3-beta15/debian/rules
+@@ -0,0 +1,110 @@
++#!/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
++
++# These are used for cross-compiling and for saving the configure script
++# from having to guess our platform (since we know it already)
++DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
++DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
++
++# Get flags from dpkg-buildflags
++CFLAGS = $(shell dpkg-buildflags --get CFLAGS)
++CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS)
++LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS)
++
++ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
++ INSTALL_PROGRAM += -s
++endif
++
++config.status: configure
++ dh_testdir
++
++ -test -r /usr/share/misc/config.sub && \
++ cp -f /usr/share/misc/config.sub config.sub
++ -test -r /usr/share/misc/config.guess && \
++ cp -f /usr/share/misc/config.guess config.guess
++
++ CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" \
++ ./configure --host=$(DEB_HOST_GNU_TYPE) \
++ --build=$(DEB_BUILD_GNU_TYPE) \
++ --prefix=/usr \
++ --mandir=\$${prefix}/share/man \
++ --infodir=\$${prefix}/share/info \
++ --with-db-path=/etc/hddtemp.db
++
++build: build-arch build-indep
++
++build-arch: build-arch-stamp
++build-arch-stamp: config.status
++ dh_testdir
++ $(MAKE)
++ touch build-stamp
++
++build-indep:
++
++clean: debian-clean
++ dh_clean
++
++debian-clean:
++ dh_testdir
++ dh_testroot
++ [ ! -f Makefile ] || $(MAKE) distclean
++ rm -f po/*.gmo po/stamp-po
++ -rm -f *-stamp
++ -rm -f config.sub config.guess
++
++install: build
++ dh_testdir
++ dh_testroot
++ dh_clean -k
++ dh_installdirs
++
++ # Add here commands to install the package into debian/hddtemp.
++ $(MAKE) install DESTDIR=$(CURDIR)/debian/hddtemp
++
++ install -p -o root -g root -m 644 $(CURDIR)/debian/hddtemp.db \
++ $(CURDIR)/debian/hddtemp/etc/hddtemp.db
++
++ cp -a $(CURDIR)/contribs $(CURDIR)/debian/hddtemp/usr/share/doc/hddtemp
++ rm -f $(CURDIR)/debian/hddtemp/usr/share/doc/hddtemp/Makefile*
++
++# 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_installdebconf
++ dh_installdocs
++ dh_installexamples
++ dh_installmenu
++ dh_installlogcheck
++# dh_installlogrotate
++# dh_installemacsen
++# dh_installpam
++# dh_installmime
++ dh_installinit
++ dh_installcron
++ dh_installman
++ dh_installinfo
++ dh_installchangelogs ChangeLog
++ 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 build-arch build-indep clean binary-indep binary-arch binary install
++
+--- hddtemp-0.3-beta15.orig/debian/docs
++++ hddtemp-0.3-beta15/debian/docs
+@@ -0,0 +1,2 @@
++README
++TODO
+--- hddtemp-0.3-beta15.orig/debian/postrm
++++ hddtemp-0.3-beta15/debian/postrm
+@@ -0,0 +1,28 @@
++#! /bin/sh
++# postrm script for hddtemp
++set -e
++
++conffile="/etc/default/hddtemp"
++
++case "$1" in
++ purge)
++ rm -f $conffile
++ ;;
++ remove)
++ rm -f /usr/bin/hddtemp
++ rm -f /usr/share/man/man1/hddtemp.1.gz
++ ;;
++ upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
++ ;;
++ *)
++ echo "postrm called with unknown argument \`$1'" >&2
++ exit 1
++ ;;
++esac
++
++# dh_installdeb will replace this with shell code automatically
++# generated by other debhelper scripts.
++
++#DEBHELPER#
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/changelog
++++ hddtemp-0.3-beta15/debian/changelog
+@@ -0,0 +1,1289 @@
++hddtemp (0.3-beta15-52) unstable; urgency=low
++
++ * Decrease hddtemp/daemon priority to medium from high (closes:
++ bug#680877).
++ * Bumped Standards-Version to 3.9.3.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 09 Jul 2012 08:12:30 +0200
++
++hddtemp (0.3-beta15-51) unstable; urgency=low
++
++ * init script: also probe for double letter drives (closes: bug#646724).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 30 Oct 2011 20:21:06 +0100
++
++hddtemp (0.3-beta15-50) unstable; urgency=low
++
++ * Convert hddtemp.db to UTF-8 (closes: bug#640899).
++ * Don't restart on reload in init.d (closes: bug#643610).
++ * Add a status option in init.d (closes: bug#643611).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 09 Oct 2011 20:16:06 +0200
++
++hddtemp (0.3-beta15-49) unstable; urgency=low
++
++ * Added Slovak debconf templates. Thanks to Slavko (closes: bug#634519).
++ * Fix a few typo in translation and enable German translation. Thanks to
++ Ville Skyttä for tha patch.
++ * Add build-arch and build-indep targets.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 30 Aug 2011 16:32:45 +0200
++
++hddtemp (0.3-beta15-48) unstable; urgency=low
++
++ * Fix backtrace support on i386.
++ * Add backtrace support on amd64.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 05 Jun 2011 00:18:46 +0200
++
++hddtemp (0.3-beta15-47) unstable; urgency=low
++
++ * Fix reading model on SATA big-endian (closes: #602307).
++ * Updated Arabic debconf templates, thanks to Ossama Khaya (closes:
++ bug#596177).
++ * Updated Swedish debconf template, thanks to Joe Hansen (closes:
++ bug#603109).
++ * Update Dutch debconf translation, thanks to Jeroen Schot (closes:
++ bug#628757).
++ * Bumped Standards-Version to 3.9.2 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 04 Jun 2011 21:36:32 +0200
++
++hddtemp (0.3-beta15-46) unstable; urgency=low
++
++ * Don't probe /dev/sg? by default (closes: bug#531849).
++ * Add initial German translation, by Helge Kreutzmann (closes: #503710).
++ * Fix a typo in the help message (closes: #503711).
++ * Correctly zero-terminate long product ID strings (closes: #517981).
++ * Bumped Standards-Version to 3.8.4 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 07 Feb 2010 20:24:49 +0100
++
++hddtemp (0.3-beta15-45) unstable; urgency=low
++
++ * Updated Swedish debconf templates. Thanks to Martin Bagge (closes:
++ bug#491768).
++ * Improve init script, by Cristian Ionescu-Idbohrn (closes: bug#486235).
++ * Mention /etc/init.d/hddtemp and /etc/default/hddtemp in README.Debian
++ (closes: bug#482982).
++ * Bumped Standards-Version to 3.8.0 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Jul 2008 09:44:06 +0200
++
++hddtemp (0.3-beta15-44) unstable; urgency=low
++
++ * Updated Japanese debconf templates. Thanks to Kenshi Muto (closes:
++ bug#483504).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 02 Jun 2008 10:30:58 +0200
++
++hddtemp (0.3-beta15-43) unstable; urgency=low
++
++ * Don't wake up SATA drives if not asked (closes: #479840).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 10 May 2008 13:24:18 +0200
++
++hddtemp (0.3-beta15-42) unstable; urgency=low
++
++ * Use minus instead of hyphenin manpage.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 02 Mar 2008 19:14:14 +0100
++
++hddtemp (0.3-beta15-41) unstable; urgency=low
++
++ * Fixed LSB header in init script (closes: bug#466281).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 17 Feb 2008 18:22:21 +0100
++
++hddtemp (0.3-beta15-40) unstable; urgency=low
++
++ * Added Basque debconf templates. Thanks to Piarres Beobide (closes:
++ bug#465731).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 15 Feb 2008 21:59:07 +0100
++
++hddtemp (0.3-beta15-39) unstable; urgency=low
++
++ [ Aurelien Jarno ]
++ * Bumped Standards-Version to 3.7.3 (no changes).
++
++ [ Christian Perrier ]
++ * Debconf templates and debian/control reviewed by the debian-l10n-
++ english team as part of the Smith review project. Closes: #462483
++ * [Debconf translation updates]
++ * Norwegian Bokmål. Closes: #462799
++ * German. Closes: #462843
++ * Galician. Closes: #462988
++ * Spanish. Closes: #463898
++ * Finnish. Closes: #463943
++ * Czech. Closes: #464224
++ * Russian. Closes: #464566
++ * Italian. Closes: #465069
++ * Portuguese. Closes: #465135
++ * Vietnamese. Closes: #465534
++ * French. Closes: #465650
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 13 Feb 2008 23:43:53 +0100
++
++hddtemp (0.3-beta15-38) unstable; urgency=low
++
++ * Fix typo in hddtemp manpage (closes: bug#444242).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 11 Dec 2007 15:17:16 +0100
++
++hddtemp (0.3-beta15-37) unstable; urgency=low
++
++ * Updated Czech debconf templates. Thanks to Miroslav Kure (closes:
++ bug#413322).
++ * Added Galician debconf templates. Thanks to Jacobo Tarrio (closes:
++ bug#412198).
++ * Clean po/stamp-po to make sure the .gmo files are regenerated (closes:
++ bug#441708).
++ * Updated Portuguese translation, thanks to Rui Branco (closes:
++ bug#418281).
++ * Updated Vietnamese debconf translation. Thanks to Clytie Siddall (closes:
++ bug#427039).
++ * Fixed man page formatting error (closes: bug#439074).
++ * Fix a segfault when using --unit and --numeric (closes: bug#412368).
++ * Exit with error code != 0 in case of error (closes: bug#423509).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 12 Sep 2007 11:36:05 +0200
++
++hddtemp (0.3-beta15-36) unstable; urgency=low
++
++ * Fix the init script, trying to kill not running daemon on shutdown
++ (closes: #411645).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 20 Feb 2007 22:04:01 +0100
++
++hddtemp (0.3-beta15-35) unstable; urgency=low
++
++ * Updated Portuguese translation, thanks to Miguel Figueire (closes:
++ bug#409491).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 20 Feb 2007 08:22:22 +0100
++
++hddtemp (0.3-beta15-34) unstable; urgency=low
++
++ * Relax SATA magic checkings (closes: #404310)
++ * Updated Swedish debconf template. Thanks to Daniel Nylander (closes:
++ bug#398788).
++ * /etc/default/hddtemp: changed SYSLOG into RUN_SYSLOG and fixed the
++ comments (closes: bug#401978).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 19 Jan 2007 00:38:27 +0100
++
++hddtemp (0.3-beta15-33) unstable; urgency=medium
++
++ * Update the description (closes: #401428).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 4 Dec 2006 06:04:38 +0100
++
++hddtemp (0.3-beta15-32) unstable; urgency=low
++
++ * Updated German debconf template. Thanks to Erik Schanze (closes:
++ bug#397209).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 27 Nov 2006 14:42:32 +0100
++
++hddtemp (0.3-beta15-31) unstable; urgency=low
++
++ * Remove the suggest on gkrellm-hddtemp (closes: bug#398938).
++ * Updated Swedish debconf template. Thanks to Daniel Nylander (closes:
++ bug#398788).
++ * Added Swedish translation. Thanks to Daniel Nylander (closes:
++ bug#398787).
++ * Added and LSB header to the init script.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 27 Nov 2006 12:14:49 +0100
++
++hddtemp (0.3-beta15-30) unstable; urgency=medium
++
++ * Remove a space in the printed temperature when a disk is not present
++ in hddtemp.db.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 19 Oct 2006 14:50:09 +0200
++
++hddtemp (0.3-beta15-29) unstable; urgency=medium
++
++ * Also consider field 194 as a temperature in Celsius if the disk
++ is not present in hddtemp.db in daemon mode (closes: bug#391870).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 9 Oct 2006 16:42:47 +0200
++
++hddtemp (0.3-beta15-28) unstable; urgency=medium
++
++ * Always consider field 194 as a temperature in Celsius if the disk
++ is not present in hddtemp.db (closes: bug#387102, #386943, #389290,
++ #387403, #389309, #387544)
++ * Updated Czech debconf template. Thanks to Miroslav Jezbera (closes:
++ bug#389244).
++ * Set urgency to medium as I really want to get this version in etch
++ (and not bother with roughly one bug report per week).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 4 Oct 2006 01:53:51 +0200
++
++hddtemp (0.3-beta15-27) unstable; urgency=low
++
++ * Depends on lsb-base (>= 3.0-3) (closes: bug#386859).
++ * Added support for Western Digital WD2000JD (closes: bug#385604).
++ * Added support for Seagate NL35 SATA (closes: bug#385187).
++ * Added support for ST3160811AS (closes: bug#385335).
++ * Added support for WD400BB-00DKA0 (closes: bug#386857).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 11 Sep 2006 00:13:15 +0200
++
++hddtemp (0.3-beta15-26) unstable; urgency=low
++
++ * Added support for SAMSUNG HD160JJ.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 26 Aug 2006 22:29:13 +0200
++
++hddtemp (0.3-beta15-25) unstable; urgency=low
++
++ * Added support for WD1200JD-00FYB0 (closes: bug#383692).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 20 Aug 2006 15:00:15 +0200
++
++hddtemp (0.3-beta15-24) unstable; urgency=low
++
++ * Updated Spanish debconf template. Thanks to Carlos Valdivia Yagüe (closes:
++ bug#383374:).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 17 Aug 2006 10:25:43 +0200
++
++hddtemp (0.3-beta15-23) unstable; urgency=low
++
++ * Added support for WDC WD3200SD-01KNB0 (closes: bug#382449).
++ * Added support for ST3400633 (closes: bug#382546).
++ * Added various Seagate 7200.10 drives, patch by Petr Vandrovec (closes:
++ bug#382490).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 11 Aug 2006 21:46:40 +0200
++
++hddtemp (0.3-beta15-22) unstable; urgency=low
++
++ * Added support for ST3320620AS (closes: bug#382300).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 10 Aug 2006 11:24:58 +0200
++
++hddtemp (0.3-beta15-21) unstable; urgency=low
++
++ * Added support for Toshiba MK1032GSX (closes: bug#382130).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 9 Aug 2006 19:27:36 +0200
++
++hddtemp (0.3-beta15-20) unstable; urgency=low
++
++ * Added support for Maxtor 6V300F0 (closes: bug#382071).
++ * Added support for Seagate ST98823AS (closes: bug#382009).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 8 Aug 2006 18:28:24 +0200
++
++hddtemp (0.3-beta15-19) unstable; urgency=low
++
++ * Added support for ST3250624AS (closes: bug#381837).
++ * Added support for WDC WD3200KS-00PFB0 (closes: bug#381837).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 7 Aug 2006 23:38:39 +0200
++
++hddtemp (0.3-beta15-18) unstable; urgency=low
++
++ * Added support for MHV2060AH.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 5 Aug 2006 21:19:56 +0200
++
++hddtemp (0.3-beta15-17) unstable; urgency=low
++
++ * Added support for WDC WD1500ADFD-00NLR0 (closes: bug#381403).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 5 Aug 2006 17:00:30 +0200
++
++hddtemp (0.3-beta15-16) unstable; urgency=low
++
++ * Updated Japanese debconf template. Thanks to Kenshi Muto (closes:
++ bug#379945).
++ * Added support for ST3808110AS and ST3160812AS (closes: bug#380478).
++ * Added support for ST3160812A (closes: bug#379701).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 30 Jul 2006 22:54:13 +0200
++
++hddtemp (0.3-beta15-15) unstable; urgency=low
++
++ * Added support for WDC WD2500JD-75HBB0 (closes: bug#379024).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 20 Jul 2006 21:47:04 +0200
++
++hddtemp (0.3-beta15-14) unstable; urgency=low
++
++ * Use lsb init-functions in init script. Thanks to Benjamin Leipold for the
++ patch (closes: bug#378118).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 14 Jul 2006 15:08:39 +0200
++
++hddtemp (0.3-beta15-13) unstable; urgency=low
++
++ * Added support for Toshiba MK8032GSX (Closes: #375486).
++ * Update the minimum kernel version (2.6.16) necessary to support
++ SATA in README.
++ * Print all warning/messages to stderr.
++ * Applied patch by Andras Korn (Closes: #374796) to allow the hddtemp
++ daemon to stay in the foreground.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 29 Jun 2006 15:11:47 +0200
++
++hddtemp (0.3-beta15-12) unstable; urgency=low
++
++ * Added Dutch debconf translation, thanks to Kurt De Bree (closes:
++ bug#370072).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 3 Jun 2006 19:45:21 +0200
++
++hddtemp (0.3-beta15-11) unstable; urgency=low
++
++ * Updated Danish debconf template. Thanks to Claus Hindsgaul (closes:
++ bug#368045).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 19 May 2006 17:25:32 +0000
++
++hddtemp (0.3-beta15-10) unstable; urgency=low
++
++ * Updated French debconf translation, thanks to Jean-Luc Coulon (closes:
++ bug#367540).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 16 May 2006 21:42:39 +0200
++
++hddtemp (0.3-beta15-9) unstable; urgency=low
++
++ * debian/templates: Changed How often into in interval. (closes: bug#367382).
++ * debian/templates: fixed the templates to make lintian happy.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 15 May 2006 20:21:49 +0200
++
++hddtemp (0.3-beta15-8) unstable; urgency=low
++
++ * Added support for SAMSUNG HD300LJ (closes: bug#367250).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 14 May 2006 20:08:31 +0200
++
++hddtemp (0.3-beta15-7) unstable; urgency=low
++
++ * Added support for HDS722516VLSA80 (closes: bug#366742).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 11 May 2006 05:46:24 +0200
++
++hddtemp (0.3-beta15-6) unstable; urgency=low
++
++ * Added support for FUJITSU MHV2100BH (closes: bug#366388).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 10 May 2006 06:29:54 +0200
++
++hddtemp (0.3-beta15-5) unstable; urgency=low
++
++ * Added support for WDC WD740GD-00FLA1 (closes: bug#366021).
++ * Bumped Standards-Version to 3.7.2 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 4 May 2006 18:38:15 +0200
++
++hddtemp (0.3-beta15-4) unstable; urgency=low
++
++ * Fix a crash in daemon (syslog) mode when the hard disk is not known
++ (closes: bug#365605).
++ * Added support for WD1200JB-00REA0.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 3 May 2006 20:27:11 +0200
++
++hddtemp (0.3-beta15-3) unstable; urgency=low
++
++ * Added support for WDC WD800JD-75JNC0 (closes: bug#365359).
++ * Added support for WDC WD2500KS and WDC WD2500YD.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 2 May 2006 21:49:37 +0200
++
++hddtemp (0.3-beta15-2) unstable; urgency=low
++
++ * Updated database for Maxtors MaxLineIII series drives (closes:
++ bug#365011).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Apr 2006 14:45:22 +0200
++
++hddtemp (0.3-beta15-1) unstable; urgency=low
++
++ * New upstream version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Apr 2006 05:25:06 +0200
++
++hddtemp (0.3-beta14-12) unstable; urgency=low
++
++ * Added Portuguese translation, thanks to Miguel Figueire (closes:
++ bug#361505).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 11 Apr 2006 00:38:51 +0200
++
++hddtemp (0.3-beta14-11) unstable; urgency=low
++
++ * Added support for WDC WD2500PD-00FZB1, WDC WD2500SD-01KCB0, WDC
++ WD1200JD-00HBC0 and WDC WD4000YR-01PLB0 (closes: bug#357804).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 25 Mar 2006 20:29:42 +0100
++
++hddtemp (0.3-beta14-10) unstable; urgency=low
++
++ * Use F for fahrenheit.
++ * Added support for Hitachi DK23EA-20B (closes: bug#355763).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 18 Mar 2006 11:39:20 +0100
++
++hddtemp (0.3-beta14-9) unstable; urgency=low
++
++ * Update hddtemp.db (closes: bug#355469).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 6 Mar 2006 00:40:35 +0100
++
++hddtemp (0.3-beta14-8) unstable; urgency=low
++
++ * Don't flood syslog if the system clock wraps (closes: bug#354260).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 24 Feb 2006 21:32:36 +0100
++
++hddtemp (0.3-beta14-7) unstable; urgency=low
++
++ * Correctly initialize the structure dsk.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 4 Feb 2006 22:01:07 +0100
++
++hddtemp (0.3-beta14-6) unstable; urgency=low
++
++ * Added support for TOSHIBA MK4026GAX.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 11 Dec 2005 21:13:06 +0100
++
++hddtemp (0.3-beta14-5) unstable; urgency=low
++
++ * Added Swedish translation of hddtemp. Thanks to Daniel Nylander (close:
++ bug#337117).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 3 Nov 2005 01:56:26 +0100
++
++hddtemp (0.3-beta14-4) unstable; urgency=low
++
++ * Fixed the package device patch.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Oct 2005 03:18:43 +0200
++
++hddtemp (0.3-beta14-3) unstable; urgency=low
++
++ * Don't try to read temperature from packet devices drives (closes:
++ bug#316750, bug#335571).
++ * Verify the response length when calling modesense (closes:
++ bug#278345).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Oct 2005 01:02:21 +0200
++
++hddtemp (0.3-beta14-2) unstable; urgency=low
++
++ * Added Swedish debconf translation. Thanks to Daniel Nylander (closes:
++ bug#333713).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 14 Oct 2005 11:22:05 +0200
++
++hddtemp (0.3-beta14-1) unstable; urgency=low
++
++ * New upstream version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 21 Sep 2005 14:48:43 +0200
++
++hddtemp (0.3-beta13-23) unstable; urgency=low
++
++ * Added SAMSUNG SP2014N disk to the database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 14 Sep 2005 11:27:22 +0200
++
++hddtemp (0.3-beta13-22) unstable; urgency=low
++
++ * Updated hddtemp.db (closes: bug#326180, bug#326181).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 6 Sep 2005 03:51:29 +0200
++
++hddtemp (0.3-beta13-21) unstable; urgency=low
++
++ * Added TOSHIBA MK4026GAX disk to the database (closes: bug#325702).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 31 Aug 2005 11:16:55 +0200
++
++hddtemp (0.3-beta13-20) unstable; urgency=low
++
++ * Added Arabic debconf translation. Thanks to Mohammed Adnène Trojette
++ (closes: bug#320766).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 1 Aug 2005 15:40:56 +0200
++
++hddtemp (0.3-beta13-19) unstable; urgency=low
++
++ * Fixed DISKS_NOPROBE when no other disks are detected.
++ * Added a logcheck rule to ignore sleeping drives (closes: bug#316613).
++ * Bumped Standards-Version to 3.6.2 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 6 Jul 2005 19:15:16 +0200
++
++hddtemp (0.3-beta13-18) unstable; urgency=low
++
++ * Added DISKS_NOPROBE option to the /etc/default/hddtemp (closes:
++ bug#316270).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 29 Jun 2005 22:13:53 +0200
++
++hddtemp (0.3-beta13-17) unstable; urgency=low
++
++ * Updated database.
++ * Added support for Western Digital Caviar WD800BB (closes: bug#312247).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 9 Jun 2005 23:16:25 +0200
++
++hddtemp (0.3-beta13-16) unstable; urgency=low
++
++ * Updated Vietnamese debconf translation. Thanks to Clytie Siddall (closes:
++ bug#311893).
++ * Fixed a typo in the debconf template. Thanks to Clytie Siddall (closes:
++ bug#311894).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 4 Jun 2005 17:03:31 +0200
++
++hddtemp (0.3-beta13-15) unstable; urgency=low
++
++ * Updated German debconf translation. Thanks to Erik Schanze (closes:
++ bug#311716).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 3 Jun 2005 00:41:00 +0200
++
++hddtemp (0.3-beta13-14) unstable; urgency=low
++
++ * Added SV4012H to the database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 24 May 2005 00:54:01 +0200
++
++hddtemp (0.3-beta13-13) unstable; urgency=low
++
++ * Added WD800BB-00JHA0 to the database (closes: bug#310301).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 23 May 2005 01:08:43 +0200
++
++hddtemp (0.3-beta13-12) unstable; urgency=low
++
++ * Added HDS722512VLAT80 to the database (closes: bug#309011).
++ * Added Vietnamese debconf translation. Thanks to Clytie Siddall (closes:
++ bug#309451).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 May 2005 16:58:00 +0200
++
++hddtemp (0.3-beta13-11) unstable; urgency=low
++
++ * Added WD2500JB-55GVA0 to the database (closes: bug#307673).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 4 May 2005 23:47:12 +0200
++
++hddtemp (0.3-beta13-10) unstable; urgency=high
++
++ * Daemonization fixed (closes: bug#307113).
++ * Added HDS722525VLSA80 to the database (closes: bug#306691).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 2 May 2005 01:01:54 +0200
++
++hddtemp (0.3-beta13-9) unstable; urgency=low
++
++ * Remove /etc/logcheck.ignore.workstation/hddtemp in postinst.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 22 Apr 2005 18:35:58 +0200
++
++hddtemp (0.3-beta13-8) unstable; urgency=low
++
++ * Really applied Danish debconf template (closes: bug#302353).
++ * Updated Czech debconf template. Thanks to Miroslav Jezbera (closes:
++ bug#304716).
++ * Updated French debconf template. Thanks to Jean-Luc Coulon (closes:
++ bug#303061).
++ * Added WD2000JB-32EVA0 to hddtemp.deb (closes: bug#302760).
++ * Fixed logcheck ignore files (closes: bug#304110).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 15 Apr 2005 06:26:34 +0200
++
++hddtemp (0.3-beta13-7) unstable; urgency=low
++
++ * Updated Danish debconf template. Thanks to Claus Hindsgaul (closes:
++ bug#302353).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 15 Apr 2005 06:15:19 +0200
++
++hddtemp (0.3-beta13-6) unstable; urgency=low
++
++ * Updated Japanese debconf template. Thanks to Kenshi Muto (closes:
++ bug#302322).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 31 Mar 2005 12:26:56 +0200
++
++hddtemp (0.3-beta13-5) unstable; urgency=low
++
++ * Fixed French debconf template.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 22:59:34 +0200
++
++hddtemp (0.3-beta13-4) unstable; urgency=low
++
++ * debian/templates: s/gkrellm-hdtemp/gkrellm/g (closes: bug#302178).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 15:21:10 +0200
++
++hddtemp (0.3-beta13-3) unstable; urgency=medium
++
++ * Don't listen on socket if only syslog is choosen in debconf. Thanks to
++ Mario Holbe for the patch (closes: bug#302065).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 01:25:04 +0200
++
++hddtemp (0.3-beta13-2) unstable; urgency=medium
++
++ * Try to detect cdrom drives using the ide-scsi driver (closes:
++ bug#302061).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 00:38:49 +0200
++
++hddtemp (0.3-beta13-1) unstable; urgency=medium
++
++ * New upstream version which contains the same code as in the previous
++ Debian package.
++ * Use SG_IO only when available (closes: bug#300679).
++ * Added syslog option in debconf (closes: bug#300332).
++ * Fixed the manpage (closes: bug#300332).
++ * Only disable SCSI exceptions if they are already enabled (closes:
++ bug#278345).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 29 Mar 2005 15:56:03 +0200
++
++hddtemp (0.3-beta12-16) unstable; urgency=low
++
++ * Verify SATA magics in the ATA pass through subroutine.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Feb 2005 16:51:48 +0100
++
++hddtemp (0.3-beta12-15) unstable; urgency=low
++
++ * Change the way SATA disks are detected, so that there is no more
++ SCSI errors with SCSI disks.
++ * Print SCSI disks name in a smarter way.
++ * Updated database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 25 Feb 2005 22:59:36 +0100
++
++hddtemp (0.3-beta12-14) unstable; urgency=low
++
++ * Converted SCSI subroutines to SG_IO (closes: bug#235422, bug#275612,
++ bug#292205).
++ * Added support for SATA (closes: bug#227409). A kernel patch for
++ SATA is still need (see /usr/share/doc/hddtemp/README).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 25 Feb 2005 02:16:57 +0100
++
++hddtemp (0.3-beta12-13) unstable; urgency=low
++
++ * Don't display an error message if /proc/sys/dev/cdrom/info doesn't
++ exist (systems without CDROM drives) (closes: bug#295814).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 18 Feb 2005 12:42:18 +0100
++
++hddtemp (0.3-beta12-12) unstable; urgency=low
++
++ * Added Hitachi Deskstar 7K80 40G and 80GB disks.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 6 Feb 2005 17:49:15 +0100
++
++hddtemp (0.3-beta12-11) unstable; urgency=low
++
++ * Uses /proc/sys/dev/cdrom/info instead of hardcoded paths to detect CDROM
++ drives (closes: bug#293542).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 4 Feb 2005 11:15:37 +0100
++
++hddtemp (0.3-beta12-10) unstable; urgency=low
++
++ * Added a README.Debian to explain why the init script could not found
++ some disks.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 25 Jan 2005 16:46:53 +0100
++
++hddtemp (0.3-beta12-9) unstable; urgency=low
++
++ * Updated Brasilian translation. Thanks to Tiago Bortoletto Vaz (closes:
++ bug#283832).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Dec 2004 21:40:42 +0100
++
++hddtemp (0.3-beta12-8) unstable; urgency=low
++
++ * Updated hddtemp.db.
++ * Added MHT2060AH drive (closes: bug#280805).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Dec 2004 19:19:37 +0100
++
++hddtemp (0.3-beta12-7) unstable; urgency=low
++
++ * Updated German debconf translation. Thanks to Erik Schanze (closes:
++ bug#282280).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 21 Nov 2004 16:22:41 +0100
++
++hddtemp (0.3-beta12-6) unstable; urgency=low
++
++ * Don't abord the script if /dev/cdrom doesn't exists.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 25 Oct 2004 14:46:42 +0000
++
++hddtemp (0.3-beta12-5) unstable; urgency=low
++
++ * Added a patch to allow temperatures to be logged to syslog (closes:
++ bug#271508).
++ * Added hddtemp-all.sh to contribs. Thanks to Javier Fernández-Sanguino
++ Peña (closes: bug#276444).
++ * /etc/init.d/hddtemp: skip CD and DVD drives.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 24 Oct 2004 17:30:34 +0200
++
++hddtemp (0.3-beta12-4) unstable; urgency=low
++
++ * Print "done." in the init script when stopping hddtemp (closes:
++ bug#275952).
++ * Updated hddtemp.db with the latest available version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 12 Oct 2004 10:10:01 +0100
++
++hddtemp (0.3-beta12-3) unstable; urgency=medium
++
++ * Added support for WDC 200GB SE (closes: bug#275105).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 7 Oct 2004 21:01:15 +0200
++
++hddtemp (0.3-beta12-2) unstable; urgency=low
++
++ * Added support for Maxtor MaXLine Plus II 250GB (closes: bug#274596).
++ * Added support for Travelstar 5K80 series (closes: bug#274671).
++ * Removed init message when the daemon is disabled.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 3 Oct 2004 19:40:23 +0200
++
++hddtemp (0.3-beta12-1) unstable; urgency=low
++
++ * New upstream version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 2 Oct 2004 01:47:19 +0200
++
++hddtemp (0.3-beta11-17) unstable; urgency=low
++
++ * Detect sleeping drives in the init script (closes: bug#269462).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Sep 2004 18:49:35 +0200
++
++hddtemp (0.3-beta11-16) unstable; urgency=low
++
++ * Added support for Samsung SpinPoint PL40 serie.
++ * Added support for Western Digital 250GB Special Edition 8MB (closes:
++ bug#269342).
++ * Added support for Maxtor DiamondMax Plus 40 drives (closes:
++ bug#269346).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Sep 2004 11:29:55 +0200
++
++hddtemp (0.3-beta11-15) unstable; urgency=low
++
++ * Added Danish debconf translation. Thanks to Claus Hindsgaul (closes:
++ bug#267551).
++ * Added support for Western Digital 160GB Special Edition 8MB (closes:
++ bug#267492).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 31 Aug 2004 11:23:43 +0200
++
++hddtemp (0.3-beta11-14) unstable; urgency=medium
++
++ * Let the kernel decide if we can access the device or not (closes:
++ bug#262742).
++ * Added an option to wake-up the driver if need (closes: #255308).
++ * Added IPv6 support.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 Aug 2004 15:36:00 +0200
++
++hddtemp (0.3-beta11-13) unstable; urgency=low
++
++ * Added Czech debconf translation. Thanks to Miroslav Jezbera (closes:
++ bug#261284).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 31 Jul 2004 16:18:17 +0200
++
++hddtemp (0.3-beta11-12) unstable; urgency=low
++
++ * Fixed manpage installation (closes: bug#258048, #258101).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 8 Jul 2004 02:08:00 +0200
++
++hddtemp (0.3-beta11-11) unstable; urgency=low
++
++ * Print WARNING messages on stderr (closes: bug#254940).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 18 Jun 2004 00:17:08 +0200
++
++hddtemp (0.3-beta11-10) unstable; urgency=low
++
++ * If a debconf answer is empty, ignore it (closes: bug#247026).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 4 May 2004 01:48:26 +0200
++
++hddtemp (0.3-beta11-9) unstable; urgency=low
++
++ * The "Welcome to the 10 new EU members" release.
++ * Added --retry parameter when calling start-stop-daemon (closes:
++ bug#246028).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 1 May 2004 00:49:45 +0200
++
++hddtemp (0.3-beta11-8) unstable; urgency=low
++
++ * Added support for Samsung P80 SATA drives (closes: bug#243464).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 13 Apr 2004 17:34:30 +0200
++
++hddtemp (0.3-beta11-7) unstable; urgency=low
++
++ * Added support for Hitachi Deskstar 7K250 (closes: bug#241493).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 11 Apr 2004 16:37:51 +0200
++
++hddtemp (0.3-beta11-6) unstable; urgency=low
++
++ * Added support for Western Digital WD1600JB-00FUA0 disk (closes:
++ bug#237983).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 16 Mar 2004 13:14:19 +0100
++
++hddtemp (0.3-beta11-5) unstable; urgency=low
++
++ * Minor changes to debian/postinst script.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 8 Feb 2004 00:27:59 +0100
++
++hddtemp (0.3-beta11-4) unstable; urgency=low
++
++ * Updated description (closes: bug#230507).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 1 Feb 2004 17:37:58 +0100
++
++hddtemp (0.3-beta11-3) unstable; urgency=low
++
++ * Don't include asm headers on architectures that don't support
++ backtracing.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 25 Jan 2004 21:57:49 +0100
++
++hddtemp (0.3-beta11-2) unstable; urgency=low
++
++ * Included upstream ChangeLog (closes: bug#226329).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 6 Jan 2004 03:16:37 +0100
++
++hddtemp (0.3-beta11-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated the database to version 03C.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 2 Jan 2004 10:05:21 +0100
++
++hddtemp (0.3-beta10-2) unstable; urgency=low
++
++ * Disable backtracing on non-i386 architectures.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 15 Dec 2003 09:19:48 +0100
++
++hddtemp (0.3-beta10-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated debian/copyright.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 15 Dec 2003 08:24:37 +0100
++
++hddtemp (0.3-beta9-2) unstable; urgency=low
++
++ * Moved ja.po in the right directory.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 12 Dec 2003 09:31:19 +0100
++
++hddtemp (0.3-beta9-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated the database to version 03B.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 12 Dec 2003 09:21:16 +0100
++
++hddtemp (0.3-beta8-7) unstable; urgency=low
++
++ * Added po debconf translations. Thanks to Kenshi Muto. (closes:
++ bug#211954)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 21 Sep 2003 14:03:19 +0200
++
++hddtemp (0.3-beta8-6) unstable; urgency=low
++
++ * Remove the link to /usr/sbin/hddtemp in /usr/bin when removing the
++ package (closes: bug#210609).
++ * Updated Policy standard compliance to 3.6.1 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 12 Sep 2003 16:06:56 +0200
++
++hddtemp (0.3-beta8-5) unstable; urgency=low
++
++ * Removed the single-quoting around the -s parameter in the init script
++ (closes: bug#208542).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 3 Sep 2003 19:02:24 +0200
++
++hddtemp (0.3-beta8-4) unstable; urgency=medium
++
++ * Don't modify the config file in the config script (closes: bug#203583).
++ * Urgency set to medium as the bug breaks upgrade.
++ * The init script also stop manually started daemons.
++ * Added a small patch to make sure hddtemp could not be started in daemon
++ mode by a normal user even if it is SUID root.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 2 Sep 2003 14:52:03 +0200
++
++hddtemp (0.3-beta8-3) unstable; urgency=low
++
++ * Don't strip the comments from the config file when installing the
++ package.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 1 Sep 2003 18:51:33 +0200
++
++hddtemp (0.3-beta8-2) unstable; urgency=low
++
++ * Fixed a typo in the manpage. Thanks to Carlos Valdivia Yagüe. (Closes:
++ bug#205947).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 19 Aug 2003 09:19:04 +0200
++
++hddtemp (0.3-beta8-1) unstable; urgency=low
++
++ * New upstream version.
++ * Recoded the changelog in UTF-8.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 12 Aug 2003 01:14:19 +0200
++
++hddtemp (0.3-beta7-6) unstable; urgency=low
++
++ * Fixed config and postinst scripts (closes: bug#203583).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 5 Aug 2003 09:16:11 +0200
++
++hddtemp (0.3-beta7-5) unstable; urgency=low
++
++ * Fixed a typo in /etc/init.d/hddtemp (closes: bug#203441).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Jul 2003 06:29:45 +0200
++
++hddtemp (0.3-beta7-4) unstable; urgency=low
++
++ * Changed the DAEMON parameter in /etc/default/hddtemp to RUN_DAEMON
++ (closes: bug#203107).
++ * Updated the database to version 036.
++ * Updated Policy standard compliance to 3.6.0.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 28 Jul 2003 02:32:00 +0200
++
++hddtemp (0.3-beta7-3) unstable; urgency=low
++
++ * Updated es debconf translations. Thanks to Carlos Valdivia Yagüe.
++ (closes: bug#198450).
++ * Updated the database to version 033.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 24 Jun 2003 01:12:00 +0200
++
++hddtemp (0.3-beta7-2) unstable; urgency=low
++
++ * Updated fr debconf translations. Thanks to Michel Grentzin.
++ (closes: bug#198155)
++ * Added pt_BR debconf translations. Thanks to Andre Luis Lopes.
++ (closes: bug#198350)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 22 Jun 2003 02:55:59 +0200
++
++hddtemp (0.3-beta7-1) unstable; urgency=low
++
++ * New upstream version with i18n support.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 Jun 2003 22:54:25 +0200
++
++hddtemp (0.3-beta6-9) unstable; urgency=low
++
++ * Updated the database to version 032.
++ * Unmark some untranslatable strings in the master templates file. (closes:
++ bug#197642).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 Jun 2003 19:32:07 +0200
++
++hddtemp (0.3-beta6-8) unstable; urgency=low
++
++ * Updated the database to version 030.
++ * Updated fr debconf translations. Thanks to Michel Grentzin.
++ (closes: bug#196765)
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 9 Jun 2003 20:37:46 +0200
++
++hddtemp (0.3-beta6-7) unstable; urgency=low
++
++ * Changed priority for debconf questions to more reasonable values.
++ * Updated the database to version 02F.
++ * Updated Policy standard compliance to 3.5.10.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 22 May 2003 23:43:24 +0200
++
++hddtemp (0.3-beta6-6) unstable; urgency=low
++
++ * Don't mark /etc/default/hddtemp as a conffile, handle it entirely
++ in maintainer scripts (closes: bug#193466).
++ * Pass --ok-nodo argument to start-stop-daemon in init script when
++ stopping hddtemp (closes: bug#193622).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 18 May 2003 13:09:48 +0200
++
++hddtemp (0.3-beta6-5) unstable; urgency=low
++
++ * Updated the database to version 02E.
++ * Don't save the fact that the daemon is running or not in debconf, but
++ rather in /etc/default/hddemp.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 11 May 2003 15:06:47 +0200
++
++hddtemp (0.3-beta6-4) unstable; urgency=low
++
++ * Updated the upstream project homepage in debian/copyright (closes:
++ bug#190960).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Apr 2003 17:46:53 +0200
++
++hddtemp (0.3-beta6-3) unstable; urgency=low
++
++ * Updated the upstream project homepage in the description (closes:
++ bug#190929).
++ * Updated the database to version 02B.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Apr 2003 11:40:14 +0200
++
++hddtemp (0.3-beta6-2) unstable; urgency=low
++
++ * Added port and separator options to /etc/default/hddtemp.
++ * Added -l option to the manpage.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 3 Apr 2003 09:44:58 +0200
++
++hddtemp (0.3-beta6-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated database.
++ * Updated Policy standard compliance to 3.5.9.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 2 Apr 2003 22:54:01 +0200
++
++hddtemp (0.3-beta5-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated database.
++ * Added an option to listen on a specific interface (closes: bug#186062).
++ * Changed name displayed by /etc/init.d/hddtemp (closes: bug#187041).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 1 Apr 2003 02:24:53 +0200
++
++hddtemp (0.3-beta4-2) unstable; urgency=low
++
++ * The "I have uploaded the wrong version" release.
++ * Fixed a bug in i18n.c. (closes: bug#185328).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 18 Mar 2003 20:32:03 +0100
++
++hddtemp (0.3-beta4-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated database.
++ * Improved /etc/init.d/hddtemp and added a config file in
++ /etc/default (Closes: bug#183843). Thanks to Greg Miller.
++ * Fixed a bug in i18n.c.
++ * Added homepage and author to the description.
++ * Debconf templates are now managed with po-debconf.
++ * Uses debian/compat instead of DH_COMPAT.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 17 Mar 2003 00:29:12 +0100
++
++hddtemp (0.3-beta3-3) unstable; urgency=low
++
++ * Added patch to allow local port reuse in TIME_WAIT.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 25 Jan 2003 01:43:21 +0100
++
++hddtemp (0.3-beta3-2) unstable; urgency=low
++
++ * Don't fail at postinst stage if daemon failed to start. (closes:
++ bug#177660)
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 24 Jan 2003 21:21:41 +0100
++
++hddtemp (0.3-beta3-1) unstable; urgency=low
++
++ * New upstream version including all the previous patches plus some fixes.
++ * Updated database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 19 Jan 2003 21:27:30 +0100
++
++hddtemp (0.3-beta2-4) unstable; urgency=low
++
++ * Added patch from Julien Blache to fix a lot of spelling mistakes.
++ Thanks !
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 19 Jan 2003 09:55:47 +0100
++
++hddtemp (0.3-beta2-3) unstable; urgency=low
++
++ * Added an option to print only the temperature. Thanks to Julien Blache
++ for the patch. (closes: bug#176395)
++ * Fixed some warnings introduced by gcc-3.2.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 12 Jan 2003 12:30:49 +0100
++
++hddtemp (0.3-beta2-2) unstable; urgency=low
++
++ * Merged hddtemp and hddtemp-daemon and added a debconf question
++ because the package was refused by the ftpmaster.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 8 Jan 2003 21:48:09 +0100
++
++hddtemp (0.3-beta2-1) unstable; urgency=low
++
++ * New beta version.
++ * Added daemon mode init script to the new package hddtemp-daemon.
++ * Updated Policy standard compliance to 3.5.8.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 4 Jan 2003 10:04:16 +0100
++
++hddtemp (0.2-18) unstable; urgency=low
++
++ * Updated database (version 021).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 28 Dec 2002 16:59:39 -0500
++
++hddtemp (0.2-17) unstable; urgency=low
++
++ * Fixed copyright file.
++ * Removed debian/conffiles, this is handled by dh_installdeb automatically ;
++ otherwise we end up with each conffile being listed twice...
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 17 Dec 2002 01:39:02 +0100
++
++hddtemp (0.2-16) unstable; urgency=low
++
++ * Updated database (version 01f).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 17 Dec 2002 00:40:07 +0100
++
++hddtemp (0.2-15) unstable; urgency=low
++
++ * Updated database (version 01D).
++ * Added disk model IC35L040AVVN07-0 (closes: bug#172117). Thanks to Henrique
++ de Moraes Holschuh.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 7 Dec 2002 16:47:41 +0100
++
++hddtemp (0.2-14) unstable; urgency=low
++
++ * Corrected a bug affecting the display of the degree sign.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 26 Sep 2002 01:29:10 +0200
++
++hddtemp (0.2-13) unstable; urgency=low
++
++ * Added support for other encodings than iso-8859-1. (closes:bug#158106)
++ * debian/hddtemp.1: corrected description of -f option.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 25 Sep 2002 14:26:20 +0200
++
++hddtemp (0.2-12) unstable; urgency=low
++
++ * Updated database.
++ * Updated Policy standard compliance to 3.5.7
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 11 Sep 2002 14:21:49 +0200
++
++hddtemp (0.2-11) unstable; urgency=low
++
++ * Updated database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 14 Aug 2002 23:01:31 +0200
++
++hddtemp (0.2-10) unstable; urgency=low
++
++ * Updated database. (closes: bug#149313)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 15 Jun 2002 00:00:48 +0200
++
++hddtemp (0.2-9) unstable; urgency=low
++
++ * Corrected a bug affecting the display of the degree sign on some systems.
++ (closes: bug#147136, #147138)
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 11 Jun 2002 19:34:03 +0200
++
++hddtemp (0.2-8) unstable; urgency=low
++
++ * Corrected debconf template. (closes: bug#148146)
++ * Updated HDD database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 25 May 2002 17:11:16 +0200
++
++hddtemp (0.2-7) unstable; urgency=low
++
++ * Corrected the man page.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 19 May 2002 23:54:39 +0200
++
++hddtemp (0.2-6) unstable; urgency=low
++
++ * Updated HDD database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 18 May 2002 13:33:02 +0200
++
++hddtemp (0.2-5) unstable; urgency=low
++
++ * Updated HDD database.
++ * Updated the man page.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 13 May 2002 06:40:08 +0200
++
++hddtemp (0.2-4) unstable; urgency=low
++
++ * Moved /usr/share/hddtemp/hddtemp.db to /etc/hddtemp.db as conffile.
++ (closes: bug#146738)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 12 May 2002 19:50:23 +0200
++
++hddtemp (0.2-3) unstable; urgency=low
++
++ * Added de debconf translations.
++ * Updated HDD database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 12 May 2002 17:15:28 +0200
++
++hddtemp (0.2-2) unstable; urgency=low
++
++ * Fixed typos and erroneous statement in description. (closes: bug#146551)
++ * Fixed manpage. (closes: bug#146554)
++ * A symlink to /usr/bin is made when installing hddtemp SUID root.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 11 May 2002 15:54:42 +0200
++
++hddtemp (0.2-1) unstable; urgency=low
++
++ * Initial Release. (closes: bug#145611)
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 9 May 2002 14:50:35 +0200
++
+--- hddtemp-0.3-beta15.orig/debian/templates
++++ hddtemp-0.3-beta15/debian/templates
+@@ -0,0 +1,63 @@
++# These templates have been reviewed by the debian-l10n-english
++# team
++#
++# If modifications/additions/rewording are needed, please ask
++# debian-l10n-english@lists.debian.org for advice.
++#
++# Even minor modifications require translation updates and such
++# changes should be coordinated with translators and reviewers.
++
++Template: hddtemp/SUID_bit
++Type: boolean
++Default: false
++_Description: Should /usr/sbin/hddtemp be installed SUID root?
++ You have the option of installing hddtemp with the SUID bit set,
++ allowing it to be run (reporting hard drive temperatures) by regular
++ users and not only the superuser.
++ .
++ This could potentially allow hddtemp to be used during an attack
++ against the computer's security. If in doubt, do not choose this option.
++ .
++ This setting can be modified later by running 'dpkg-reconfigure hddtemp'.
++
++Template: hddtemp/syslog
++Type: string
++Default: 0
++_Description: Interval between hard drive temperature checks:
++ The temperature of the hard drive(s) can be logged by hddtemp via
++ the generic system logging interface.
++ .
++ Please enter a value in seconds corresponding to the interval between
++ two checks. To disable this feature, enter 0.
++
++Template: hddtemp/daemon
++Type: boolean
++Default: false
++_Description: Should the hddtemp daemon be started at boot?
++ The hddtemp program can be run as a daemon, listening on port 7634
++ for incoming connections. It is used by some software such as gkrellm to get
++ the temperature of hard drives.
++ .
++ You have the option of starting the hddtemp daemon automatically on
++ system boot. If in doubt, it is suggested to not start it
++ automatically on boot.
++ .
++ This setting can be modified later by running 'dpkg-reconfigure hddtemp'.
++
++Template: hddtemp/interface
++Type: string
++Default: 127.0.0.1
++_Description: Interface to listen on:
++ The hddtemp program can listen for incoming connections on a specific
++ interface, or on all interfaces.
++ .
++ To listen on a specific interface, enter the IP address of that interface
++ (choosing 127.0.0.1 will accept local connections only). To listen on all interfaces,
++ enter 0.0.0.0.
++
++Template: hddtemp/port
++Type: string
++Default: 7634
++_Description: Port to listen on:
++ By default, hddtemp listens for incoming connections on port 7634. This
++ can be changed for another port number.
+--- hddtemp-0.3-beta15.orig/debian/dirs
++++ hddtemp-0.3-beta15/debian/dirs
+@@ -0,0 +1,3 @@
++etc/init.d
++etc/default
++usr/share/doc/hddtemp
+--- hddtemp-0.3-beta15.orig/debian/copyright
++++ hddtemp-0.3-beta15/debian/copyright
+@@ -0,0 +1,26 @@
++This package was debianized by Aurelien Jarno <aurel32@debian.org> on
++Wed, 8 May 2002 01:40:30 +0200.
++
++It was downloaded from http://www.guzu.net/linux/hddtemp.php
++
++Upstream Author: Emmanuel Varagnat <hddtemp@guzu.net>
++
++Copyright: 2002, 2003 Emmanuel Varagnat
++
++ This program is free software; you can redistribute it and/or modify
++ it under the terms of the GNU General Public License as published by
++ the Free Software Foundation; either version 2 of the License, or
++ (at your option) any later version.
++
++ This program is distributed in the hope that it will be useful,
++ but WITHOUT ANY WARRANTY; without even the implied warranty of
++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
++ GNU General Public License for more details.
++
++ You should have received a copy of the GNU General Public License with
++ the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL;
++ if not, write to the Free Software Foundation, Inc., 51 Franklin St,
++ Fifth Floor, Boston, MA 02110-1301 USA
++
++ On Debian systems, the complete text of the GNU General Public
++ License, version 2, can be found in /usr/share/common-licenses/GPL-2.
+--- hddtemp-0.3-beta15.orig/debian/logcheck.ignore.server
++++ hddtemp-0.3-beta15/debian/logcheck.ignore.server
+@@ -0,0 +1,2 @@
++^\w{3} [ :0-9]{11} [._[:alnum:]-]+ hddtemp\[[0-9]+\]: /dev/([hs]d[a-z]|sg[0-9]): .*: [0-9]+ [CF]$
++^\w{3} [ :0-9]{11} [._[:alnum:]-]+ hddtemp\[[0-9]+\]: /dev/([hs]d[a-z]|sg[0-9]): .*: drive is sleeping$
+--- hddtemp-0.3-beta15.orig/debian/config
++++ hddtemp-0.3-beta15/debian/config
+@@ -0,0 +1,51 @@
++#!/bin/sh
++# hddtemp package configuration script
++
++set -e
++
++conffile="/etc/default/hddtemp"
++
++get_config_file()
++{
++ config_field=$1
++ db_field=$2
++
++ if [ -f "$conffile" ] ; then
++ VALUE="$(grep "^[ ]*$config_field" $conffile | sed -e "s/^$config_field *= *\"\(.*\)\"/\1/g")"
++ if [ -n "$VALUE" ] ; then
++ db_set $db_field "$VALUE"
++ fi
++ fi
++}
++
++# Source debconf library -- we have a Depends line
++# to make sure it is there...
++. /usr/share/debconf/confmodule
++db_version 2.0
++
++if [ "$1" = configure -o "$1" = reconfigure ] ; then
++ db_input medium hddtemp/SUID_bit || true
++
++ get_config_file SYSLOG hddtemp/syslog
++ db_input medium hddtemp/syslog || true
++
++ get_config_file DAEMON hddtemp/daemon
++ get_config_file RUN_DAEMON hddtemp/daemon
++ db_input medium hddtemp/daemon || true
++
++ db_go
++
++ db_get hddtemp/daemon
++
++ if [ "$RET" = "true" ] ; then
++ get_config_file INTERFACE hddtemp/interface
++ db_input medium hddtemp/interface || true
++
++ get_config_file PORT hddtemp/port
++ db_input medium hddtemp/port || true
++
++ db_go
++ fi
++fi
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/postinst
++++ hddtemp-0.3-beta15/debian/postinst
+@@ -0,0 +1,146 @@
++#!/bin/sh
++# postinst script for hddtemp
++set -e
++
++conffile="/etc/default/hddtemp"
++
++update_config_file()
++{
++ db_field=$1
++ config_field=$2
++
++ RET=false
++ db_get $db_field
++ if [ -n "$RET" ] ; then
++ if grep -q "^$config_field" $conffile ; then
++ # keep any admin changes, while replacing the variable content
++ sed "s/^[ ]*$config_field=\".*\"/$config_field=\"$RET\"/" < $conffile > $conffile.new &&
++ mv $conffile.new $conffile
++ else
++ echo "$config_field=\"$RET\"" >> $conffile
++ fi
++ fi
++}
++
++# Source debconf library -- we have a Depends line
++# to make sure it is there...
++. /usr/share/debconf/confmodule
++db_version 2.0
++
++case "$1" in
++ configure)
++ if [ -f $conffile ] ; then
++ sed -i -e 's/^[ ]*DAEMON/RUN_DAEMON/g' \
++ -e 's/^[ ]*SYSLOG/RUN_SYSLOG/g' \
++ -e 's/^# Master system-wide hddtemp switch.*/# hddtemp network daemon switch. If set to true, hddtemp will listen/' \
++ -e 's/^# set to true. STOP THE SERVICE.*/# for incoming connections./' \
++ -e 's/^# Logging period.*temperatures.$/# Logging period (in seconds) for the temperatures. If set to a value\n# different than 0, hddtemp will run as a daemon periodically logging\n# the temperatures through syslog/' \
++ $conffile
++ if ! grep -q RUN_SYSLOG $conffile ; then
++ cat << EOF >> $conffile
++
++# Logging period (in seconds) for the temperatures. If set to a value
++# different than 0, hddtemp will run as a daemon periodically logging
++# the temperatures through syslog
++RUN_SYSLOG="0"
++EOF
++ fi
++ if ! grep -q OPTIONS $conffile ; then
++ cat << EOF >> $conffile
++
++# Other options to pass to hddtemp
++OPTIONS=""
++EOF
++ fi
++ if ! grep -q DISKS_NOPROBE $conffile ; then
++ cat << EOF >> $conffile
++
++# List of devices you want to use with hddtemp, but that would not be
++# probed for a working sensor.
++DISKS_NOPROBE=""
++EOF
++ fi
++ else
++ cat << EOF > $conffile
++# Defaults for hddtemp initscript (/etc/init.d/hddtemp)
++# This is a POSIX shell fragment
++
++# [automatically edited by postinst, do not change line format ]
++
++# hddtemp network daemon switch. If set to true, hddtemp will listen
++# for incoming connections.
++RUN_DAEMON="true"
++
++# List of devices you want to use with hddtemp. If none specified,
++# hddtemp will probe standard devices.
++#DISKS="/dev/hda"
++
++# List of devices you want to use with hddtemp, but that would not be
++# probed for a working sensor.
++DISKS_NOPROBE=""
++
++# IP address of the interface on which you want hddtemp to be bound
++# on. If none specified, goes to 127.0.0.1. Use 0.0.0.0 to bind hddtemp
++# on all interfaces.
++INTERFACE="127.0.0.1"
++
++# Port number on which you want hddtemp to listen on. If none specified,
++# the port 7634 is used.
++PORT="7634"
++
++# Database file to use. If none specified, /etc/hddtemp.db is used.
++#DATABASE="/etc/hddtemp.db"
++
++# Separator to use between fields. The default separator is '|'.
++#SEPARATOR="|"
++
++# Logging period (in seconds) for the temperatures. If set to a value
++# different than 0, hddtemp will run as a daemon periodically logging
++# the temperatures through syslog
++RUN_SYSLOG="0"
++
++# Other options to pass to hddtemp
++OPTIONS=""
++EOF
++ fi
++
++ update_config_file hddtemp/daemon RUN_DAEMON
++ update_config_file hddtemp/syslog RUN_SYSLOG
++ update_config_file hddtemp/interface INTERFACE
++ update_config_file hddtemp/port PORT
++
++ if ! dpkg-statoverride --list /usr/sbin/hddtemp 1>/dev/null 2>&1; then
++ # check if we are installing suid or not
++ RET=false
++ db_get hddtemp/SUID_bit
++ if [ "$RET" = "true" ]; then
++ chmod 4755 /usr/sbin/hddtemp
++ ln -sf /usr/sbin/hddtemp /usr/bin/hddtemp
++ ln -sf ../man8/hddtemp.8.gz /usr/share/man/man1/hddtemp.1.gz
++ else
++ chmod 0755 /usr/sbin/hddtemp
++ rm -f /usr/bin/hddtemp
++ rm -f /usr/share/man/man8/hddtemp.1.gz
++ fi
++ fi
++
++ db_stop
++
++ rm -f /etc/logcheck/ignore.d.workstation/hddtemp
++ ;;
++ abort-upgrade|abort-remove|abort-deconfigure)
++ ;;
++
++ *)
++ echo "postinst called with unknown argument \`$1'" >&2
++ exit 1
++ ;;
++esac
++
++
++# dh_installdeb will replace this with shell code automatically
++# generated by other debhelper scripts.
++
++#DEBHELPER#
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/control
++++ hddtemp-0.3-beta15/debian/control
+@@ -0,0 +1,17 @@
++Source: hddtemp
++Section: utils
++Priority: extra
++Maintainer: Aurelien Jarno <aurel32@debian.org>
++Build-Depends: debhelper (>> 5), autotools-dev, gettext (>> 0.10.1)
++Standards-Version: 3.9.3
++Homepage: http://www.guzu.net/linux/hddtemp.php
++
++Package: hddtemp
++Architecture: any
++Depends: ${shlibs:Depends}, ${misc:Depends}, lsb-base (>= 3.0-3)
++Suggests: ksensors
++Conflicts: ksensors (<< 0.7-8), gkrellm-hddtemp (<< 0.1-9)
++Description: hard drive temperature monitoring utility
++ The hddtemp program monitors and reports the temperature of PATA, SATA
++ or SCSI hard drives by reading Self-Monitoring Analysis and Reporting
++ Technology (S.M.A.R.T.) information on drives that support this feature.
+--- hddtemp-0.3-beta15.orig/debian/init
++++ hddtemp-0.3-beta15/debian/init
+@@ -0,0 +1,100 @@
++#!/bin/sh
++#
++# skeleton example file to build /etc/init.d/ scripts.
++# This file should be used to construct scripts for /etc/init.d.
++#
++# Written by Miquel van Smoorenburg <miquels@cistron.nl>.
++# Modified for Debian GNU/Linux
++# by Ian Murdock <imurdock@gnu.ai.mit.edu>.
++#
++# Version: @(#)skeleton 1.8 03-Mar-1998 miquels@cistron.nl
++#
++
++### BEGIN INIT INFO
++# Provides: hddtemp
++# Required-Start: $remote_fs $syslog $network
++# Required-Stop: $remote_fs $syslog $network
++# Default-Start: 2 3 4 5
++# Default-Stop: 0 1 6
++# Short-Description: disk temperature monitoring daemon
++# Description: hddtemp is a disk temperature monitoring daemon
++### END INIT INFO
++
++PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
++NAME=hddtemp
++DAEMON=/usr/sbin/$NAME
++DESC="disk temperature monitoring daemon"
++
++DISKS="/dev/hd[a-z] /dev/hd[a-z][a-z]"
++DISKS="$DISKS /dev/sd[a-z] /dev/sd[a-z][a-z]"
++DISKS="$DISKS /dev/sr[a-z] /dev/sr[a-z][a-z]"
++INTERFACE="0.0.0.0"
++PORT="7634"
++SEPARATOR="|"
++RUN_SYSLOG="0"
++
++# Reads config file (will override defaults above)
++[ -r /etc/default/hddtemp ] && . /etc/default/hddtemp
++
++if [ -n "$RUN_SYSLOG" ] && [ "$RUN_SYSLOG" != "0" ] ; then
++ SYSLOG_ARG="-S $RUN_SYSLOG"
++fi
++
++if [ "$RUN_DAEMON" = "true" ] || [ "$RUN_DAEMON" = "yes" ] ; then
++ DAEMON_ARG="-d -l $INTERFACE -p $PORT -s $SEPARATOR"
++fi
++
++[ -x "$DAEMON" ] || exit 0
++
++. /lib/lsb/init-functions
++
++case "$1" in
++ start)
++ # master switch
++ if [ -n "$DAEMON_ARG" ] || [ -n "$SYSLOG_ARG" ] ; then
++ log_daemon_msg "Starting $DESC" "$NAME:"
++ CDROMS_LIST=$(sed -ne 's/^drive name:\t\+\(.*\)$/ \/dev\/\1/p' /proc/sys/dev/cdrom/info 2>/dev/null) || :
++ CDROMS_LIST="$CDROMS_LIST $(grep -sl '^ide-scsi ' /proc/ide/hd*/driver | awk -F / '{ print "/dev/"$4 }')"
++ for disk in $DISKS ; do
++ echo $CDROMS_LIST | grep -wq $disk && continue
++ echo $DISKS_NOPROBE | grep -wq $disk && continue
++ if $DAEMON -wn $OPTIONS $disk 2>/dev/null | grep -q '^[0-9]\+$' ; then
++ DISKS_LIST="$DISKS_LIST $disk";
++ fi
++ done
++ if [ -n "$DISKS_LIST" ] || [ -n "$DISKS_NOPROBE" ] ; then
++ start-stop-daemon --start --quiet --exec $DAEMON -- $DAEMON_ARG $SYSLOG_ARG $OPTIONS $DISKS_NOPROBE $DISKS_LIST
++ ret=$?
++ log_progress_msg "$DISKS_NOPROBE$DISKS_LIST"
++ log_end_msg $ret
++ else
++ log_progress_msg "no disks with monitoring capability were found."
++ log_end_msg 0
++ fi
++ fi
++ ;;
++ stop)
++ # master switch
++ if [ "$RUN_DAEMON" = "true" ] || [ "$RUN_DAEMON" = "yes" ] || [ "$RUN_SYSLOG" != "0" ] ; then
++ log_daemon_msg "Stopping $DESC" "$NAME"
++ start-stop-daemon --stop --oknodo --exec $DAEMON --retry 30
++ log_end_msg $?
++ fi
++ ;;
++ force-reload|reload)
++ exit 3
++ ;;
++ restart)
++ $0 stop && $0 start
++ ;;
++ status)
++ status_of_proc $DAEMON $NAME
++ exit $?
++ ;;
++ *)
++ echo "Usage: /etc/init.d/$NAME {start|stop|restart|status}" >&2
++ exit 1
++ ;;
++esac
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/compat
++++ hddtemp-0.3-beta15/debian/compat
+@@ -0,0 +1 @@
++5
+--- hddtemp-0.3-beta15.orig/debian/README.Debian
++++ hddtemp-0.3-beta15/debian/README.Debian
+@@ -0,0 +1,14 @@
++README.Debian for hddtemp
++-------------------------
++
++This package include an init script (/etc/init.d/hddtemp) to run hddtemp
++in daemon mode. To enable and configure it, either use
++'dpkg-reconfigure hddtemp' or edit /etc/default/hddtemp.
++
++By default and when enable, the init script tries to find all disk that
++support SMART. If you get an error such as 'no disks with monitoring
++capability were found' or if an hard disk is not monitored, try to run
++'hddtemp /dev/xxx', with /dev/xxx being you hard disk device. You will
++see an explanation about why it fails.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Jul 2008 09:34:39 +0200
+--- hddtemp-0.3-beta15.orig/debian/hddtemp.db
++++ hddtemp-0.3-beta15/debian/hddtemp.db
+@@ -0,0 +1,169 @@
++#
++# Insert a regular expression for support of the model or the serie of your hard drive.
++# If you don't know what to put in the second field, put the number
++# that appears most often for your brand :o)
++# A value of zero meens that we know that the drive doesn't have
++# a temperature sensor (you can set the unit to C or F).
++#
++############################################################################
++# The following list was found at (http://www.almico.com/forumharddisks.php)
++# If your drive is in the list send me a mail.
++#
++# Manufacturer Model Size Notes
++# FUJITSU FUJITSU MPF3102AH 10.0GB
++# FUJITSU FUJITSU MPG3204AH E 20.0GB
++# FUJITSU FUJITSU MPG3307AT 30.0GB
++# FUJITSU FUJITSU MPG3409AH 40.0GB
++# FUJITSU FUJITSU MPG3409AH EF 40.0GB
++# HITACHI HITACHI_DK23CA-10 9.8GB
++# HITACHI HITACHI_DK23CA-15 14.7GB
++# SAMSUNG SAMSUNG SV3012H 29.4GB
++# SEAGATE ST310210A 10.0GB
++# SEAGATE ST310211A 9.8GB
++# SEAGATE ST310215A 10.0GB
++# SEAGATE ST315320A 14.9GB
++# SEAGATE ST320410A 19.6GB
++# SEAGATE ST320413A 19.6GB
++# SEAGATE ST320420A 19.9GB
++# SEAGATE ST330610A 29.3GB
++# SEAGATE ST330620A 29.3GB
++# SEAGATE ST330621A 29.3GB
++# SEAGATE ST330630A 29.9GB
++# SEAGATE ST340016A 39.1GB
++# SEAGATE ST340810ACE 39.1GB
++# SEAGATE ST380020ACE 78.2GB
++# WESTERN DIGITAL WDC AC210200D 10.0GB
++# WESTERN DIGITAL WDC AC29100D 8.9GB
++# WESTERN DIGITAL WDC AC420400D 19.9GB
++# WESTERN DIGITAL WDC WD102AA 10.0GB
++#
++#################################################
++
++########################################
++############# ExcelStor drives
++########################################
++# "ExcelStor Technology CT215" ??? ? "ExcelStor CT215"
++
++
++########################################
++############# Fujitsu drives
++########################################
++"FUJITSU MHM2100AT" 0 C "Fujitsu MHM2100AT"
++
++
++########################################
++############# Hitachi drives
++########################################
++"HITACHI_DK228A-65" 0 C "Hitachi DK228A-65"
++
++
++########################################
++############# IBM drives
++########################################
++
++# DJSA serie is using F0h command to report temperature and also have
++# SMART capabilties but it was reported not to work.
++# "DJSA-2(30|32|10|20|05)" 0 C "IBM Travelstar 20GN, 32GH, 30GT series"
++
++"IBM-DARA-212000" 0 C "IBM Travelstar 12GN"
++"IBM-DTTA-35*" 0 C "IBM Deskstar 16GP serie"
++
++# according to specifications they do not seems to have sensor
++# but I prefer waiting for a report
++#"IBM-DTTA-37*" 0 C "IBM Deskstar 14GXP serie"
++
++"IBM-DJNA-35.*" 231 C "IBM Deskstar 25 GP serie"
++"IBM-DJNA-37.*" 231 C "IBM Deskstar 22 GXP serie"
++"IBM-DHEA-(34330|36480)" 0 C "IBM Deskstar 5 serie"
++"IBM-DHEA-(34331|36481|38451)" 0 C "IBM Deskstar 8 serie"
++"IBM-DPTA-37.*" 231 C "IBM Deskstar 34GXP serie"
++"IBM-DPTA-35.*" 231 C "IBM Deskstar 37GP serie"
++
++
++########################################
++############# Maxtor drives
++########################################
++#"Maxtor 2B0[012][04568]H1" ??? C "Maxtor Fireball 541DX"
++# which one must I trust ?
++#"Maxtor 4D040H2" 9 C "Maxtor DiamondMax D540X-4D"
++#"Maxtor 4D040H2" 0 C "Maxtor 4D040H2"
++#"Maxtor 4D080H4" 12 C "Maxtor DiamondMax D540X-4D"
++#"Maxtor 4D060H3" 12 C "Maxtor DiamondMax D540X-4D"
++#"Maxtor 4D080H4" 9 C "Maxtor DiamondMax D540X-4D"
++"Maxtor 5(1024|1369|2049|2732|3073|4098)U(2|3|4|6|8)" 0 C "Maxtor DiamondMax Plus 40"
++"Maxtor 5T0[24]0H[24]" 0 C "Maxtor DiamondMax Plus 60"
++"Maxtor 94098U8" 11 C "Maxtor DiamondMax 40 94098U8"
++
++
++########################################
++############# Quantum drives
++########################################
++"QUANTUM FIREBALLP AS40.0" 0 C "Quantum Fireball AS40"
++"QUANTUM FIREBALL CX10.2A" 0 C "Quantum Fireball CX10.2A"
++#"QUANTUM FIREBALLlct10 20" 4 C "Quantum Fireball CT10 20GB"
++# I suspect the QUANTUM FIREBALL_TM2110A to have a sensor in field 9...
++# "QUANTUM FIREBALL_TM2110A" 9 C "Quantum Fireball TM2110A"
++
++
++########################################
++############# Samsung drives
++########################################
++# somenone reported a problem with the SP8004H which reports a temperature
++# 10°C below the ambient temperature
++"SAMSUNG SW0434A" 0 C "Samsung SW0434A"
++"SAMSUNG SV0432A" 0 C "Samsung SV0432A"
++"SAMSUNG SV3002H" 0 C "Samsung SpinPoint V30 serie"
++#"SAMSUNG SV(0221|0602|0813|1204)H" 9 C "Samsung SpinPoint V60 serie"
++
++
++########################################
++############# Seagate drives
++########################################
++"Seagate Technology 1275MB - ST31276A" 0 C "Seagate ST31276A"
++"ST3412A" 0 C "Seagate ST3412A"
++"ST38641A" 0 C "Seagate ST38641A"
++"ST310210A" 0 C "Seagate ST310210A"
++"ST310220A" 0 C "Seagate ST310220A"
++# SEAGATE ST313021A 13.0GB
++"ST313021A" 0 C "Seagate U8 ST313021A"
++"ST310240A" 0 C "Seagate Medalist 10240 Ultra ATA-3"
++"ST320423A" 0 C "Seagate U10 20423, Ultra ATA/66"
++
++
++########################################
++############# TOSHIBA Laptops
++########################################
++"MK4313MAT" 220 C "Toshiba MK4313MAT"
++"TOSHIBA MK1517GAP" 0 C "Toshiba MK1517GAP"
++"TOSHIBA MK2018GAS" 226 F "Toshiba MK2018GAS"
++
++"TOSHIBA MK3017GAP" 0 C "Toshiba MK3017GAP"
++
++#"TOSHIBA MK4019GAX" 222 C "Toshiba MK4019GAX"
++
++
++########################################
++############# Western Digital drives
++########################################
++# WDC AC310100B and WDC AC2850F are reported not working
++# no more informations were given
++"WDC AC22000L" 0 C "Western Digital Caviar AC22000"
++"WDC AC420400D" 231 C "Western Digital Caviar AC420400D"
++"WDC AC418000D" 231 C "Western Digital AC418000D"
++"WDC WD135BA" 231 C "Western Digital WD135BA"
++
++"WDC WD100EB-00BHF0" 0 C "Western Digital 100EB-00BHF0"
++"WDC WD200BB-00AUA1" 0 C "Western Digital Caviar WD200BB"
++#"WDC WD200BB-60DGA0" 0 C "Western Digital Caviar WD200BB"
++"WDC WD300BB-00CAA0" 0 C "Western Digital WD300BB"
++"WDC WD400BB-00CAA0" 0 C "Western Digital 400BB-00CAA0"
++#"WDC WD400BB-00GFA0" 0 C ""
++"WDC WD400BB-(18CA|00DE)A0" 0 C "Western Digital Caviar WD400BB"
++"WDC WD400EB-00CPF0" 0 C "Western Digital 400EB-00CPF0"
++"WDC WD600BB-32BSA0" 0 C "Western Digital 600BB-32BSA0"
++"WDC WD800BB-00CAA1" 0 C "Western Digital WD800BB-00CAA1"
++"WDC WD800JB-00CRA1" 0 C "Western Digital Caviar WD800JB"
++
++# not sure for next
++# "WDC WD1200JB-00CRA1" 9 C "Western Digital 1200JB-00CRA1"
++# "WDC WD273BA" 9 C "Western Digital WD273BA"
+--- hddtemp-0.3-beta15.orig/debian/po/cs.po
++++ hddtemp-0.3-beta15/debian/po/cs.po
+@@ -0,0 +1,159 @@
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-05 21:54+0100\n"
++"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
++"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Má se /usr/sbin/hddtemp nainstalovat jako SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Máte možnost nainstalovat hddtemp s nastaveným SUID bitem, což znamená, že "
++"jej kromÄ správce budou moci spouÅ¡tÄt i bÄžnà uživatelé (a zjišťovat teplotu "
++"pevného disku)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Takto nastavený hddtemp může být potenciálnÄ využit ke kompromitovánà "
++"poÄÃtaÄe. Pokud si nejste jisti, pak je lepšà tuto možnost zamÃtnout."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "ZmÄnÃte-li pozdÄji názor, staÄà spustit âdpkg-reconfigure hddtempâ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Interval mezi kontrolami teploty pevného disku:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"hddtemp může zaznamenávat teplotu pevného disku (pevných disků) pÅes obecné "
++"logovacà rozhranà systému."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Zadejte poÄet sekund odpovÃdajÃcà dobÄ mezi po sobÄ jdoucÃmi mÄÅenÃmi. Pro "
++"zakázánà této vlastnosti jednoduše zadejte 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Má se daemon hddtemp spouÅ¡tÄt pÅi startu poÄÃtaÄe?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Program hddtemp může bÄžet jako daemon a Äekat na portu 7634 na pÅÃchozà "
++"spojenÃ. Takto může být využÃván programy typu gkrellm pro zjiÅ¡tÄnà aktuálnà "
++"teploty pevných disků."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Máte možnost spouÅ¡tÄt daemona hddtemp automaticky pÅi startu systému. Pokud "
++"si nejste jisti, pak jej radÄji pÅi startu systému nespouÅ¡tÄjte."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "RozhranÃ, na kterém naslouchat:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Program hddtemp může oÄekávat pÅÃchozà spojenà na konkrétnÃm rozhranà nebo "
++"na vÅ¡ech rozhranÃch."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Aby poslouchal na konkrétnÃm rozhranÃ, zadejte IP adresu daného rozhranà "
++"(127.0.0.1 znamená, že bude pÅijÃmat pouze lokálnà spojenÃ). Pokud chcete, "
++"aby poslouchal na vÅ¡ech rozhranÃch, zadejte 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, na kterém naslouchat:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"hddtemp standardnÄ oÄekává pÅÃchozà spojenà na portu 7634. Pokud vám tento "
++"port nevyhovuje, můžete zadat jiný."
+--- hddtemp-0.3-beta15.orig/debian/po/fr.po
++++ hddtemp-0.3-beta15/debian/po/fr.po
+@@ -0,0 +1,159 @@
++# Translation of hddtemp debconf templates to French
++# Copyright (C) 2008 Christian Perrier <bubulle@debian.org>
++# This file is distributed under the same license as the hddtemp package.
++#
++# Michel Grentzinger <mic.grentz@online.fr>, 2003.
++# Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>
++# Christian Perrier <bubulle@debian.org>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: \n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-10 12:20+0100\n"
++"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
++"Language-Team: French <debian-l10n-french@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"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Faut-il exécuter hddtemp avec les privilèges du superutilisateur ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Il est possible d'installer hddtemp avec le bit « setuid » positionné, ce qui "
++"lui permet d'être exécuté (et donc d'indiquer la température des disques "
++"durs) par les utilisateurs non privilégiés et pas seulement le "
++"superutilisateur."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Cela peut théoriquement permettre d'utiliser hddtemp pour une attaque visant "
++"à compromettre la sécurité du système. Dans le doute, il est conseillé ne de "
++"pas activer cette option."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Ce choix peut être modifié ultérieurement avec la commande « dpkg-reconfigure "
++"hddtemp »."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervalle entre deux contrôles de température :"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"La température des disques durs peut être enregistrée par hddtemp et "
++"restituée par l'interface standard de journalisation du système."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Veuillez choisir l'intervalle en secondes entre deux mesures. Indiquez 0 "
++"pour désactiver cette fonctionnalité."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Faut-il lancer automatiquement le démon hddtemp au démarrage ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Le programme hddtemp peut être lancé en tant que démon, à l'écoute sur le "
++"port 7634. Ce démon est utilisé par certains logiciels tel que gkrellm pour "
++"obtenir la température des disques durs."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Ce démon peut être lancé automatiquement au démarrage de l'ordinateur. Dans "
++"le doute, il est suggéré de ne pas activer cette option."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interface où hddtemp sera à l'écoute :"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Le programme hddtemp peut être à l'écoute de connexions entrantes sur une "
++"interface spécifique ou sur toutes les interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Pour écouter sur une interface spécifique, indiquez l'adresse IP de cette "
++"interface (en choisissant 127.0.0.1, seules les connexions locales seront "
++"acceptées). Pour écouter sur toutes les interfaces, saisissez simplement "
++"0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port sur lequel hddtemp sera à l'écoute :"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Par défaut, hddtemp attend les connexions entrantes sur le port 7634. Ce "
++"port peut être modifié si nécessaire."
+--- hddtemp-0.3-beta15.orig/debian/po/vi.po
++++ hddtemp-0.3-beta15/debian/po/vi.po
+@@ -0,0 +1,154 @@
++# Vietnamese Translation for hddtemp.
++# Copyright © 2008 Free Software Foundation, Inc.
++# Clytie Siddall <clytie@riverland.net.au>, 2005-2008.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta15-36\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-13 21:06+1030\n"
++"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
++"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=utf-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=1; plural=0;\n"
++"X-Generator: LocFactoryEditor 1.7b3\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Có nên cà i Äặt SUID root « /usr/sbin/hddtemp » không?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Bạn có tùy chá»n cà i Äặt phần má»m hddtemp vá»i bit SUID Äã Äặt, do Äó cho phép "
++"nó ÄÆ°á»£c chạy bá»i các ngưá»i dùng bình thưá»ng, không phải chá» siêu ngưá»i dùng."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Tuy nhiên, Äặt bit SUID cÅ©ng có thá» cho phép ngưá»i hiá»m Äá»c dùng hddtemp khi "
++"tấn công bảo máºt cá»§a máy tÃnh nà y. Vì váºy nếu bạn chưa chắc chắn, Äừng báºt "
++"tùy chá»n nà y."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"CÅ©ng có thá» sá»a Äá»i thiết láºp nà y vá» sau, bằng cách chạy lá»nh cấu hình lại « "
++"dpkg-reconfigure hddtemp »."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Khoảng giữa hai lần kiá»m tra nhiá»t Äá» cá»§a ÄÄ©a cứng:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Nhiá»t Äá» cá»§a những ÄÄ©a cứng có thá» ÄÆ°á»£c ghi lưu bá»i hddtemp thông qua giao "
++"diá»n ghi lưu há» thá»ng chung."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Hãy nháºp má»t giá trá» theo giây mà tương ứng vá»i khoảng thá»i gian giữa hai "
++"lần kiá»m tra. Äá» tắt tÃnh nÄng nà y, chá» ÄÆ¡n giản nháºp sá» 0 á» Äây."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Có nên khá»i chạy trình ná»n hddtemp khi khá»i Äá»ng há» thá»ng không?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Chương trình hddtemp cÅ©ng có thá» chạy dưá»i dạng trình ná»n (daemon), lắng "
++"nghe trên cá»ng 7634 tìm kết ná»i gá»i Äến. Trình ná»n nà y ÄÆ°á»£c dùng bá»i má»t sá» "
++"phần má»m (v.d. gkrellm) Äá» lấy nhiá»t Äá» cá»§a các ÄÄ©a cứng."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Tùy chá»n bạn có thá» tá»± Äá»ng khá»i chạy trình ná»n hddtemp khi khá»i Äá»ng há» "
++"thá»ng. Chưa chắc chắc thì khuyên bạn không báºt tùy chá»n nà y."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Giao diá»n trên Äó cần lắng nghe:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Chương trình hddtemp có thá» lắng nghe kết ná»i gá»i Äến trên má»t giao diá»n dứt "
++"khoát, hoặc trên má»i giao diá»n."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Äá» lắng nghe trên má»t giao diá»n cụ thá», hãy nháºp Äá»a chá» IP cá»§a giao diá»n Äó "
++"(giá trỠ« 127.0.0.0 » sẽ chá» chấp nháºn kết ná»i cục bá»). Äá» lắng nghe trên "
++"má»i giao diá»n, chá» ÄÆ¡n giản hãy nháºp Äá»a chỠ« 0.0.0.0 »."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Cá»ng trên Äó cần lắng nghe:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Mặc Äá»nh là hddtemp lắng nghe kết ná»i gá»i Äến trên cá»ng 7634. CÅ©ng có thá» "
++"thay Äá»i nó thà nh má»t cá»ng khác."
+--- hddtemp-0.3-beta15.orig/debian/po/pt_BR.po
++++ hddtemp-0.3-beta15/debian/po/pt_BR.po
+@@ -0,0 +1,205 @@
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta7-1\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2007-12-11 15:33+0100\n"
++"Last-Translator: Tiago Bortoletto Vaz <tiago@debian-ba.org>\n"
++"Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-1\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#, fuzzy
++#| msgid "Do you want /usr/sbin/hddtemp to be installed SUID root?"
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Deseja que o /usr/sbin/hddtemp seja instalado SUID root ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#, fuzzy
++#| msgid "Do you want to start the hddtemp daemon on startup?"
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Deseja iniciar o daemon hddtemp na inicialização do sistema ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#, fuzzy
++#| msgid ""
++#| "hddtemp can be run as a daemon, listening on port 7634 for incoming "
++#| "connections. It is used some by software such as gkrellm to get the "
++#| "temperature of the hard drives."
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"O hddtemp pode ser executado com um daemon, ouvindo na porta 7634 por "
++"conexões entrantes. O mesmo é usado por alguns softwares como o gkrellm-"
++"hddtemp para obter a temperatura dos discos rígidos."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#, fuzzy
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Você tem a opção de iniciar o daemon hddtemp automaticamente na "
++"inicialização de seu computador. Caso esteja em dúvida, é sugerido que você "
++"não inicie o hddtemp automaticamente na inicialização de seu computador. "
++"Caso você mude de idéia posteriormente você poderá executar o comando 'dpkg-"
++"reconfigure hddtemp' para mudar essa configuração."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#, fuzzy
++#| msgid ""
++#| "hddtemp can listen for incoming connections on a specific interface, or "
++#| "on all interfaces."
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"O hddtemp pode ouvir por conexões entrantes em uma interface específica ou "
++"em todas as interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#, fuzzy
++#| msgid ""
++#| "To listen on a specific interface, enter the IP address of that "
++#| "interface (127.0.0.1 which is the default value corresponds to the lo "
++#| "interface). To listen on all interfaces, simply enter 0.0.0.0."
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para ouvir em uma interface específica, informe o endereço IP da interface "
++"em questão (o endereço padrão 127.0.0.1 corresponde a interface lo). Para "
++"ouvir e todas as interfaces, simplesmente informe o endereço 0.0.0.0 ."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:6001
++#, fuzzy
++#| msgid ""
++#| "By default, hddtemp listen for incoming connections on port 7634. However "
++#| "if you don't find this port appropriate, you can enter an other one."
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Por padrão, o hddtemp escuta por conexões entrantes na porta 7634. Porém "
++"caso você ache que essa não seja a porta apropriada, você pode informar uma "
++"outra porta."
++
++#~ msgid "You have the option of installing hddtemp with the SUID bit set."
++#~ msgstr "Você tem a opção de instalar o hddtemp com o bit de SUID ligado."
++
++#~ msgid ""
++#~ "If you make hddtemp SUID, unprivileged users of your systems will be able "
++#~ "to run it. This could, however, potentially allow hddtemp to be used "
++#~ "during a security attack on your computer. If in doubt, it is suggested "
++#~ "to install it without SUID. If you later change your mind, you can run: "
++#~ "'dpkg-reconfigure hddtemp'."
++#~ msgstr ""
++#~ "Caso você permita que o hdddtemp seja instalado com o bit de SUID ligado, "
++#~ "usuários não privilegiados de seu sistema serão capazes de executá-lo. "
++#~ "Isso pode, porém, potencialmente permitir que o hddtemp seja usado "
++#~ "durante um ataque contra a segurança de seu computador. Caso esteja em "
++#~ "dúvida, é sugerido que vcê instale o hddtemp sem o bit de SUID ligado. "
++#~ "Caso você mude de idéia posteriormente, você poderá executar o comando "
++#~ "'dpkg-reconfigure hddtemp' para mudar essa suaconfiguração."
++
++#, fuzzy
++#~ msgid "At which interval do you want to log the temperatures?"
++#~ msgstr "Em qual interface você deseja que o hddtemp escute ?"
++
++#~ msgid "On which interface do you want hddtemp to listen on?"
++#~ msgstr "Em qual interface você deseja que o hddtemp escute ?"
++
++#~ msgid "On which port do you want hddtemp to listen on?"
++#~ msgstr "Em qual porta você deseja que o hddtemp escute ?"
+--- hddtemp-0.3-beta15.orig/debian/po/ru.po
++++ hddtemp-0.3-beta15/debian/po/ru.po
+@@ -0,0 +1,156 @@
++# 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 <kozlov.y@gmail.com>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: 0.3-beta15-39\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-27 19:15+0300\n"
++"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\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: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "УÑÑановиÑÑ /usr/sbin/hddtemp как SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"ÐÑ Ð¼Ð¾Ð¶ÐµÑе вÑбÑаÑÑ ÑÑÑÐ°Ð½Ð¾Ð²ÐºÑ hddtemp Ñ Ð²ÐºÐ»ÑÑÑннÑм SUID биÑом, ÑÑÐ¾Ð±Ñ ÐµÑ Ð¼Ð¾Ð¶Ð½Ð¾ "
++"бÑло запÑÑкаÑÑ Ð¿ÑоÑÑÑм полÑзоваÑелÑм (Ð´Ð»Ñ Ð¿Ð¾Ð»ÑÑÐµÐ½Ð¸Ñ ÑемпеÑаÑÑÑ Ð¶ÑÑÑкиÑ
"
++"диÑков), а не ÑолÑко ÑÑпеÑполÑзоваÑелÑ."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"ÐоÑенÑиалÑно, ÑÑо Ð¼Ð¾Ð¶ÐµÑ Ð¿Ð¾Ð·Ð²Ð¾Ð»Ð¸ÑÑ Ð¸ÑполÑзоваÑÑ hddtemp Ð´Ð»Ñ Ð½Ð°ÑÑÑÐµÐ½Ð¸Ñ "
++"компÑÑÑеÑной безопаÑноÑÑи. ÐÑли не ÑвеÑенÑ, оÑвеÑÑÑе оÑÑиÑаÑелÑно."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"ÐÑÑ Ð½Ð°ÑÑÑÐ¾Ð¹ÐºÑ Ð¼Ð¾Ð¶Ð½Ð¾ позже измениÑÑ Ð·Ð°Ð¿ÑÑÑив 'dpkg-reconfigure hddtemp'."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "ÐнÑеÑвал Ð¼ÐµÐ¶Ð´Ñ Ð¿ÑовеÑками ÑемпеÑаÑÑÑÑ Ð¶ÑÑÑкого диÑка:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"ТемпеÑаÑÑÑа жÑÑÑкого диÑка(ов) Ð¼Ð¾Ð¶ÐµÑ Ð±ÑÑÑ Ð¿ÑоÑоколиÑоваÑÑÑÑ hddtemp Ñ "
++"помоÑÑÑ ÑÑандаÑÑного ÑиÑÑемного инÑеÑÑейÑа пÑоÑоколиÑованиÑ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"ÐведиÑе знаÑение инÑеÑвала в ÑекÑндаÑ
Ð¼ÐµÐ¶Ð´Ñ Ð¿ÑовеÑками. ÐÐ»Ñ Ð²ÑклÑÑÐµÐ½Ð¸Ñ "
++"пÑовеÑок введиÑе 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "ÐапÑÑкаÑÑ ÑеÑÐ²Ð¸Ñ hddtemp пÑи ÑÑаÑÑе компÑÑÑеÑа?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"ÐÑогÑамма hddtemp Ð¼Ð¾Ð¶ÐµÑ ÑабоÑаÑÑ Ð² виде ÑеÑвиÑа, пÑÐ¸Ð½Ð¸Ð¼Ð°Ñ Ð·Ð°Ð¿ÑоÑÑ Ð½Ð° поÑÑÑ "
++"7634. ÐÑо иÑполÑзÑеÑÑÑ Ð½ÐµÐºÐ¾ÑоÑÑм ÐÐ, напÑÐ¸Ð¼ÐµÑ gkrellm, Ð´Ð»Ñ Ð¿Ð¾Ð»ÑÑÐµÐ½Ð¸Ñ "
++"ÑемпеÑаÑÑÑÑ Ð¶ÑÑÑкиÑ
диÑков."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"СейÑÐ°Ñ Ð²Ñ Ð¼Ð¾Ð¶ÐµÑе вклÑÑиÑÑ Ð°Ð²ÑомаÑиÑеÑкий запÑÑк ÑеÑвиÑа hddtemp во вÑÐµÐ¼Ñ "
++"загÑÑзки ÑиÑÑемÑ. ÐÑли не ÑвеÑенÑ, вÑбеÑиÑе не запÑÑкаÑÑ ÑÑÑ Ð¿ÑогÑÐ°Ð¼Ð¼Ñ Ð²Ð¾ "
++"вÑÐµÐ¼Ñ Ð·Ð°Ð³ÑÑзки."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "ÐнÑеÑÑÐµÐ¹Ñ Ð¿ÑиÑма запÑоÑов:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"ÐÑогÑамма hddtemp Ð¼Ð¾Ð¶ÐµÑ Ð¿ÑинимаÑÑ Ð²Ñ
одÑÑие запÑоÑÑ Ð½Ð° опÑеделÑнном "
++"инÑеÑÑейÑе или Ñо вÑеÑ
инÑеÑÑейÑов."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"ÐÐ»Ñ Ð¿ÑиÑма на конкÑеÑном инÑеÑÑейÑа введиÑе IP-адÑÐµÑ ÑÑого инÑеÑÑейÑа (ввод "
++"127.0.0.1 обеÑпеÑÐ¸Ñ Ð¿ÑиÑм ÑолÑко локалÑнÑÑ
запÑоÑов). ÐÐ»Ñ Ð¿ÑиÑма запÑоÑов Ñо "
++"вÑеÑ
инÑеÑÑейÑов, введиÑе 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "ÐоÑÑ Ð¿ÑиÑма запÑоÑов:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Ðо ÑмолÑаниÑ, hddtemp пÑÐ¸Ð½Ð¸Ð¼Ð°ÐµÑ Ð²Ñ
одÑÑие запÑоÑÑ Ñ Ð¿Ð¾ÑÑа 7634. ÐдеÑÑ Ð¼Ð¾Ð¶Ð½Ð¾ "
++"задаÑÑ Ð´ÑÑгой Ð½Ð¾Ð¼ÐµÑ Ð¿Ð¾ÑÑа."
+--- hddtemp-0.3-beta15.orig/debian/po/sv.po
++++ hddtemp-0.3-beta15/debian/po/sv.po
+@@ -0,0 +1,127 @@
++# 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.
++# , fuzzy
++#
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta14-1\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-07-27 09:49+0200\n"
++"Last-Translator: Martin Bagge <brother@bsnet.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\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Vill du att /usr/sbin/hddtemp ska installeras som SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "You have the option of installing hddtemp with the SUID bit set, allowing it to be run (reporting hard drive temperatures) by regular users and not only the superuser."
++msgstr "Du kan installera hddtemp med SUID, då kan programmet köras av vanliga användare och inte bara superanvändare."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "This could potentially allow hddtemp to be used during an attack against the computer's security. If in doubt, do not choose this option."
++msgstr "Detta kan bidra till att intrång kan genomföras om det skulle finnas fel i hddtemp som någon nyttjar för att skaffa otillåten åtkomst. Om du är minsta osäker ska du inte aktivera detta alternativ."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#: ../templates:4001
++msgid "This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "Denna inställning kan ändras senare genom att köra 'dpkg-reconfige hddtemp'"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervall mellan temperaturmätningar:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "The temperature of the hard drive(s) can be logged by hddtemp via the generic system logging interface."
++msgstr "Temperaturen för hårddisken/hårddiskarna kan loggas i det vanliga loggningssystemet."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Please enter a value in seconds corresponding to the interval between two checks. To disable this feature, enter 0."
++msgstr "Ange ett värde i sekunder som anger intervallen mellan två mätningar. För att inaktivera den här funktionen, ange 0 som värde."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Vill du starta hddtemp-tjänsten när systemet startas upp?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "The hddtemp program can be run as a daemon, listening on port 7634 for incoming connections. It is used by some software such as gkrellm to get the temperature of hard drives."
++msgstr "hddtemp kan köras som en tjänst som lyssnar på port 7634 efter inkommande anslutningar. Den används av programvara såsom gkrellm för att läsa av temperaturen på hårddiskarna."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "You have the option of starting the hddtemp daemon automatically on system boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr "Du har alternativet att starta hddtemp-tjänsten automatiskt när datorn startas upp. Om du är osäker föreslår jag att du inte startar den automatiskt vid uppstarten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Gränssnitt att lyssna på:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "The hddtemp program can listen for incoming connections on a specific interface, or on all interfaces."
++msgstr "hddtemp kan lyssna efter inkommande anslutningar på specifika nätverksgränssnitt eller på gränssnitt."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"För att lyssna på ett specifik nätverkgränssnitt, ange IP-adressen på det "
++"gränssnittet (127.0.0.1, vilket är standardvärdet för gränssnittet lo). För "
++"att lyssna på alla, ange 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port att lyssna på:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Som standard lyssnar hddtemp efter inkommande anslutningar på port 7634. Om "
++"du anser att denna port inte är lämplig kan du ange en annan port här."
++
+--- hddtemp-0.3-beta15.orig/debian/po/da.po
++++ hddtemp-0.3-beta15/debian/po/da.po
+@@ -0,0 +1,158 @@
++# Danish translation hddtemp.
++# Copyright (C) 2010 hddtemp & nedenstående oversættere.
++# This file is distributed under the same license as the hddtemp package.
++# Claus Hindsgaul <claus_h@image.dk>, 2004, 2005.
++# Claus Hindsgaul <claus.hindsgaul@gmail.com>, 2006.
++# Joe Hansen (joedalton2@yahoo.dk), 2010.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2010-11-10 12:42+0000\n"
++"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
++"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1);\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Skal /usr/sbin/hddtemp installeres SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Du har muligheden for at installere hddtemp med sættet SUID bit, og tillade "
++"den at blive kørt (rapportering af temperaturer for harddiske) af normale "
++"brugere og ikke kun superbrugeren."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Dette kan potentielt tillade hddtemp at blive brugt under et angreb mod "
++"computerens sikkerhed. Hvis du er i tvivl, så vælg ikke denne indstilling."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Denne indstilling kan ændres senere ved at køre »dpkg-reconfigure hddtemp«."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Tidsrum mellem to tjek af temperaturen på harddisken:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Temperaturen på harddiskene kan logges af hddtemp via den generiske "
++"grænseflade til systemlogning."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Indtast venligst en værdi i sekunder, der angiver intervallet mellem to tjek. "
++"Du kan deaktivere denne funktion ved at skrive 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Skal hddtemp-dæmonen igangsættes ved opstart?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Programmet hddtemp kan køres som en dæmon, der lytter på port 7634 efter "
++"indkommende forbindelser. Programmet bruges af bestemte programmer såsom "
++"gkrellm til at hente harddiskenes temperaturer."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Du har mulighed for at igangsætte hddtemp-dæmonen automatisk under opstart. "
++"Hvis du er i tvivl, foreslås det, at du ikke igangsætter den automatisk under "
++"opstarten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Netkort, der skal lyttes på:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Programmet hddtemp kan lytte efter indkommende forbindelser på et bestemt "
++"netkort eller på alle netkort."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"For at lytte til et bestemt netkort, skal du angive IP-adressen på dette "
++"(valg af 127.0.0.1 vil kun acceptere lokale forbindelser). For at "
++"lytte på alle netkort indtastes 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, der skal lyttes på:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Som udgangspunkt vil hddtemp lytte efter indkommende forbindelser på port "
++"7634. Dette kan ændres til et andet nummer."
++
++
+--- hddtemp-0.3-beta15.orig/debian/po/pt.po
++++ hddtemp-0.3-beta15/debian/po/pt.po
+@@ -0,0 +1,158 @@
++# translation of pt.po to portugues
++# Portuguese translation for hddtemp
++# Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
++# This file is distributed under the same license as the hddtemp package.
++#
++# Miguel Figueiredo <elmig@debianpt.org>, 2006, 2007.
++# Bruno Queiros <brunomiguelqueiros@sapo.pt>, 2007.
++# Bruno Queiros <bqueiros@gmail.com>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: pt\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-10 19:48+0000\n"
++"Last-Translator: Bruno Queiros <bqueiros@gmail.com>\n"
++"Language-Team: portugues <pt@li.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"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Deve o /usr/sbin/hddtemp ser instalado com SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Você tem a opção de instalar o hddtemp com o SUID, permitindo-o ser "
++"executado (relatar temperaturas do disco rigido) por utilizadores normais e "
++"não apenas pelo super utilizador."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Isto pode potencialmente permitir que o hddtemp seja utilizado num ataque "
++"contra a segurança do computador. Em caso de dúvida, não escolha esta opção."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Esta opção pode ser modificada mais tarde executando 'dpkg-reconfigure "
++"hddtemp'."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervalo entre verificações da temperatura do disco rigido:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"A temperatura do(s) disco(s) rÃgido(s) podem ser guardados pelo hddtemp "
++"através da interface genérica do sistema para guardar registos."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Por favor introduza um valor em segundos correspondendo ao intervalo entre "
++"duas verificações. Para desactivar esta opção, introduza 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Deseja iniciar o daemon hddtemp no arranque?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"O programa hddtemp pode ser executado como um daemon, Ã escuta na porta "
++"7634. Ã utilizada por alguns programas como o gkrellm para obter a "
++"temperatura dos discos rÃgidos."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Você tem a opção de executar o daemon hddtemp automaticamente no arranque do "
++"sistema. Se estiver em dúvida, é sugerido que não o inicie automaticamente "
++"no arranque."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interface para utilizar na escuta:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"O programa hddtemp pode escutar por ligações de entrada numa interface "
++"especÃfica, ou em todas as interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para escutar numa interface especÃfica, introduza o endereço IP dessa "
++"interface (escolhendo 127.0.0.1 irá aceitar apenas ligações locais). Para "
++"escutar em todas as interfaces, introduza 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Porta a utilizar na escuta:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"O hddtemp escuta por ligações de entrada na porta 7634 por pré-definição. "
++"Isto pode ser alterado para outra porta."
+--- hddtemp-0.3-beta15.orig/debian/po/eu.po
++++ hddtemp-0.3-beta15/debian/po/eu.po
+@@ -0,0 +1,111 @@
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++# Piarres Beobide <pi+debian@beobide.net>, 2008.
++
++
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp-debconf\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-14 12:11+0100\n"
++"Last-Translator: Piarres Beobide <pi+debian@beobide.net>\n"
++"Language-Team: Euskara <Librezale@librezale.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=utf-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "/usr/sbin/hddtemp SUID bit-a gaiturik duela instalatu behar da?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "You have the option of installing hddtemp with the SUID bit set, allowing it to be run (reporting hard drive temperatures) by regular users and not only the superuser."
++msgstr "Zuk hddtemp SUID bit-a ezarria duela instalatzeko aukera duzu supererabiltzaileak bakarrik beharrean erabiltzaile arrunti exekutatzeko (disko gogor tenperaturak erreportatzeko) baimena emanez."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "This could potentially allow hddtemp to be used during an attack against the computer's security. If in doubt, do not choose this option."
++msgstr "Honek ordenagailuari eraso batetan hddtemp erabiltzeko aukera ematen du. Zalantzarik baduzu ez hautatu aukera hau."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#: ../templates:4001
++msgid "This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "Ezarpen hau beranduago aldatu daiteke 'dpkg-reconfigure hddtemp' abiaraziz."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Disko gogor tenperatura arakatzeen arteko denbora tartea:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "The temperature of the hard drive(s) can be logged by hddtemp via the generic system logging interface."
++msgstr "Hddtemp-ek disko gorren tenperatura sistemako erregistro interfaze orokorraren bidez erregistratu dezake."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Please enter a value in seconds corresponding to the interval between two checks. To disable this feature, enter 0."
++msgstr "Mesedez idatzi bi arakatzeen arteko denbora tartea segunduetan. Ezaugarri hau ezgaitzeko 0 ezarri."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Hddtemp deabrua sistema abiaraztean abiarazi behar al da?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "The hddtemp program can be run as a daemon, listening on port 7634 for incoming connections. It is used by some software such as gkrellm to get the temperature of hard drives."
++msgstr "Hddtemp programa deabru bat bezala erabili daiteke, sarrera konexioak 7624 atakan entzungo ditu. Hau gkrellm bezalako zenbait softwarek disko gogorren tenperatura eskuratzeko erabiltzen dute."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "You have the option of starting the hddtemp daemon automatically on system boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr "Zuk hddtemp deabrua sistema abiaraztean automatikoki abiarazteko aukera duzu. Zalantzarik baduzu abioan ez automatikoki abiaraztea gomendatzen da."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Entzungo den interfazea:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "The hddtemp program can listen for incoming connections on a specific interface, or on all interfaces."
++msgstr "Hddtemp programak sarrera konexioak interfaze zehatz batetan bakarrik edo guztietan entzuteko aukera du."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "To listen on a specific interface, enter the IP address of that interface (choosing 127.0.0.1 will accept local connections only). To listen on all interfaces, enter 0.0.0.0."
++msgstr "Interfaze zehatz batetan entzuteko, idatzi interfaze horren IP helbidea (127.0.0.1 ipiniaz konexioa lokalak bakarrik onartuko dira). Interfaze guztietan entzuteko , 0.0.0.0 idatzi."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Entzuteko ataka:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "By default, hddtemp listens for incoming connections on port 7634. This can be changed for another port number."
++msgstr "Lehenetspen modura hddtemp-ek sarrera konexioak 7634 atakan entzungo ditu. Auker ahonen bidez betste ataka bat ezartzeko auekra dago."
++
+--- hddtemp-0.3-beta15.orig/debian/po/it.po
++++ hddtemp-0.3-beta15/debian/po/it.po
+@@ -0,0 +1,155 @@
++# Italian translation of the hddtemp debconf template
++# This file is distributed under the same license as the hddtemp package
++# Copyright (C) 2008 Free Software Foundation, Inc.
++# Luca Monducci <luca.mo@tiscali.it>, 2008.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-09 21:52+0100\n"
++"Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n"
++"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Installare /usr/sbin/hddtemp con il SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Ã possibile installare hddtemp con il bit SUID attivo, questo consente a un "
++"utente normale, e non solo al superuser, di eseguire il programma "
++"(riportando le temperature dei dischi)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Questo potrebbe permettere l'uso di hddtemp durante un attacco alla "
++"sicurezza del sistema. In caso di dubbi, non attivare questa opzione."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"In seguito, per modificare questa impostazione si può usare \"dpkg-"
++"reconfigure hddtemp\"."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervallo fra due controlli della temperatura dei dischi:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"La temperatura dei dischi può essere registrata da hddtemp tramite "
++"l'interfaccia generica offerta dal log di sistema."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Inserire il valore in secondi corrispondente all'intervallo fra due "
++"controlli. Per non utilizzare questa funzionalità inserire 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Far partire il demone hddtemp all'avvio del sistema?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Il programma hddtemp può essere avviato come un demone in ascolto di "
++"connessioni in arrivo sulla porta 7634. Viene usato da programmi come "
++"gkrellm per recuperare la temperatura dei dischi fissi."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Ã possibile far partire automaticamente il demone hddtemp all'avvio del "
++"sistema. In caso di dubbi, si suggerisce di non far partire il demone "
++"all'avvio."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interfaccia su cui ascoltare:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Il programma hddtemp può mettersi in ascolto di connessioni in arrivo su una "
++"particolare interfaccia oppure su tutte."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Per ascoltare su una specifica interfaccia, inserire l'indirizzo IP di tale "
++"interfaccia (con 127.0.0.1 saranno accettate solo connesioni locali). Per "
++"ascoltare su tutte le interfacce inserire 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Porta su cui ascoltare:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Con la configurazione predefinita hddtemp si mette in ascolto di connessioni "
++"in arrivo sulla porta 7634. Ã possibile cambiare questo valore con un altro "
++"numero di porta."
+--- hddtemp-0.3-beta15.orig/debian/po/de.po
++++ hddtemp-0.3-beta15/debian/po/de.po
+@@ -0,0 +1,164 @@
++# translation of hddtemp_0.3-beta15-39_de.po to German
++#
++# 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.
++#
++# Erik Schanze <eriks@debian.org>, 2004-2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta15-39_de\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-27 21:18+0100\n"
++"Last-Translator: Erik Schanze <eriks@debian.org>\n"
++"Language-Team: German <debian-l10n-german@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=2; plural=(n != 1);\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Soll /usr/sbin/hddtemp mit Root-Rechten ausgestattet werden?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Sie haben die Möglichkeit, Hddtemp bei der Installation mit Root-Rechten "
++"auszustatten. Damit kann es von jedem normalen Benutzer (und nicht nur von "
++"Root) gestartet werden, um die Festplattentemperatur zu melden."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Dadurch könnte es aber möglich sein, die Sicherheit des Rechners "
++"anzugreifen. Wenn Sie sich nicht sicher sind, lehnen Sie hier ab."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Diese Einstellung kann später durch den Befehl 'dpkg-reconfigure hddtemp' "
++"geändert werden."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Zeitraum zwischen den Ãberprüfungen der Festplattentemperatur:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Die Temperatur der Festplatte(n) kann von Hddtemp mittels der allgemeinen "
++"System-Protokollierschnittstelle fortlaufend gespeichert werden."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Bitte geben Sie die Zeitspanne zwischen zwei Ãberprüfungen in Sekunden ein. "
++"Um diese Funktion abzuschalten, geben Sie 0 ein."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Den Hddtemp-Dienst beim Hochfahren des Systems starten?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Hddtemp kann als Dienst betrieben werden und wartet am Port 7634 auf "
++"ankommende Verbindungen. Das wird von einigen Programmen wie Gkrellm "
++"genutzt, um die Temperatur der Festplatten abzufragen."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Sie haben die Möglichkeit, den Dienst Hddtemp beim Hochfahren des Systems "
++"automatisch zu starten. Wenn Sie sich nicht sicher sind, starten Sie den "
++"Dienst nicht automatisch beim Hochfahren."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Schnittstelle, an der auf Anfragen gewartet wird:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Hddtemp kann an einer speziellen oder an allen Schnittstelle auf ankommende "
++"Verbindungen warten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Um an einer einzelnen Schnittstelle auf Anfragen zu warten, geben Sie deren "
++"IP-Adresse ein (Falls Sie 127.0.0.1 wählen, sind nur lokale Verbindungen "
++"erlaubt). Um alle Schnittstellen zu verwenden, geben Sie 0.0.0.0 ein."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, an dem auf Anfragen gewartet wird:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Normalerweise wartet Hddtemp am Port 7634 auf ankommende Verbindungen. Sie "
++"können auch eine andere Port-Nummer eingeben."
+--- hddtemp-0.3-beta15.orig/debian/po/gl.po
++++ hddtemp-0.3-beta15/debian/po/gl.po
+@@ -0,0 +1,176 @@
++# Galician translation of hddtemp's debconf templates
++# This file is distributed under the same license as the hddtemp package.
++# Jacobo Tarrio <jtarrio@debian.org>, 2007, 2008.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-28 19:08+0000\n"
++"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n"
++"Language-Team: Galician <proxecto@trasno.net>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "¿Quere instalar /usr/sbin/hddtemp con \"setuid\" root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Ten a posibilidade de instalar hddtemp co bit SUID establecido, o que o "
++"permite executar (para que informe da temperatura dos discos duros) por "
++"parte de usuarios normais, e non só o administrador."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Con isto é posible que se empregue hddtemp durante un ataque contra a "
++"seguridade do ordenador. Se non está seguro, non escolla esta opción."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Esta elección pódese cambiar a posteriori executando \"dpkg-reconfigure "
++"hddtemp\"."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervalo entre comprobacións da temperatura do disco duro:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"O programa hddtemp pode manter un rexistro da temperatura do(s) disco(s) duro"
++"(s) empregando a interface xenérica de rexistro do sistema."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Introduza un valor en segundos correspondente ao intervalo entre "
++"comprobacións. Para desactivar esta caracterÃstica, introduza un 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "¿Quere iniciar o servizo de hddtemp co sistema?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Pódese executar o programa hddtemp coma un servizo que espera conexións "
++"entrantes no porto 7634. Emprégao algún software coma gkrellm para obter a "
++"temperatura dos discos duros."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Ten a posibilidade de arrincar o servizo hddtemp automaticamente ao iniciar "
++"o sistema. Se ten dúbidas, suxÃrese que non o arrinque automaticamente ao "
++"iniciar o sistema."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interface na que escoitar:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"O programa hddtemp pode esperar conexións entrantes nunha interface "
++"determinada ou en tódalas interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para escoitar nunha interface determinada, introduza o enderezo IP desa "
++"interface (se escolle 127.0.0.1 hanse aceptar só conexións locais). Para "
++"escoitar en tódalas interfaces, introduza 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Porto no que escoitar:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Por defecto, hddtemp espera conexións entrantes no porto 7634. Pódese "
++"cambiar por outro porto."
++
++#~ msgid "You have the option of installing hddtemp with the SUID bit set."
++#~ msgstr "Ten a posibilidade de instalar hddtemp co bit SUID activado."
++
++#~ msgid ""
++#~ "If you make hddtemp SUID, unprivileged users of your systems will be able "
++#~ "to run it. This could, however, potentially allow hddtemp to be used "
++#~ "during a security attack on your computer. If in doubt, it is suggested "
++#~ "to install it without SUID. If you later change your mind, you can run: "
++#~ "'dpkg-reconfigure hddtemp'."
++#~ msgstr ""
++#~ "Se lle pon o bit SUID a hddtemp, os usuarios sen privilexios dos seus "
++#~ "sistemas han poder executalo. Nembargantes, isto pode permitir que se "
++#~ "empregue hddtemp durante un ataque á seguridade do seu ordenador. Se ten "
++#~ "dúbidas, é mellor que o instale sen SUID. Se cambia de opinión máis "
++#~ "adiante, pode executar \"dpkg-reconfigure hddtemp\"."
++
++#~ msgid ""
++#~ "hddtemp can periodically log the temperature of the hard drive(s) via the "
++#~ "SYSLOG interface."
++#~ msgstr ""
++#~ "hddtemp pode rexistrar periodicamente a temperatura das unidades de disco "
++#~ "mediante a interface SYSLOG."
+--- hddtemp-0.3-beta15.orig/debian/po/ar.po
++++ hddtemp-0.3-beta15/debian/po/ar.po
+@@ -0,0 +1,209 @@
++# translation of ar.po to
++#
++# 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.
++#
++# Ossama M. Khayat, 2005.
++# Ossama M. Khayat <okhayat@yahoo.com>, 2010.
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta13-19\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2010-09-09 04:48+0300\n"
++"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
++"Language-Team: Arabic <support@arabeyes.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"X-Generator: Lokalize 1.0\n"
++"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
++"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#| msgid "Do you want /usr/sbin/hddtemp to be installed SUID root?"
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "ÙÙ ÙØ¬Ø¨ ØªØ«Ø¨ÙØª /usr/sbin/hddtemp Ù
ع ØµÙØ§ØÙØ© SUID ÙÙÙ
ستخدÙ
rootØ"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"ÙØ¯ÙÙ Ø®ÙØ§Ø± ØªØ«Ø¨ÙØª hddtemp Ù
ع ØµÙØ§ØÙØ© SUIDØ Ù
Ù
ا ÙØ³Ù
Ø"
++"ÙÙÙ
ستخدÙ
ÙÙ Ø§ÙØ¹Ø§Ø¯ÙÙ٠تشغÙÙÙ (ØªÙØ±Ùر درجات ØØ±Ø§Ø±Ø© اÙÙØ±Øµ Ø§ÙØµÙب) ÙÙÙØ³ ÙÙØ· "
++"اÙÙ
ستخدÙ
Ø§ÙØ®Ø§Ø±Ù."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"ÙØ¯ ÙØªØ³Ø¨Ø¨ ÙØ°Ø§ باستخداÙ
hddtemp Ø£Ø«ÙØ§Ø¡ اÙÙØ¬ÙÙ
عÙÙ"
++"Ø£Ù
Ù Ø§ÙØ¬Ùاز. Ø¥Ù ÙÙØª ÙÙ Ø´ÙØ ÙØ§ ØªÙØªÙ ÙØ°Ø§ Ø§ÙØ®Ùار."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "ÙÙ
Ù٠تعدÙÙ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØ§ØÙا٠بتÙÙÙØ° Ø§ÙØ£Ù
ر 'dpkg-reconfigure hddtemp'."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "اÙÙØ§ØµÙ Ø§ÙØ²Ù
ÙÙ ÙÙØªØÙÙ Ù
Ù ØØ±Ø§Ø±Ø© اÙÙØ±Øµ Ø§ÙØµÙب:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"ÙØ³ØªØ·Ùع hddtemp تسجÙÙ ØØ±Ø§Ø±Ø© Ø§ÙØ£Ùراص Ø§ÙØµÙبة عبر "
++"ÙØ§Ø¬ÙØ© Ø³Ø¬ÙØ§Øª اÙÙØ¸Ø§Ù
Ø§ÙØ§Ø¹ØªÙØ§Ø¯ÙØ©."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++#| msgid ""
++#| "Please enter a value in seconds corresponding to the interval between two "
++#| "checks. To disable this feature, simply enter 0."
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Ø§ÙØ±Ø¬Ø§Ø¡ إدخا٠ÙÙÙ
Ø© Ø¨Ø§ÙØ«ÙاÙÙ ØªØØ¯Ø¯ اÙÙØ§ØµÙ Ø§ÙØ²Ù
Ù٠بÙÙ ÙÙ "
++"عÙ
ÙÙØ©. ÙØªØ¹Ø·ÙÙ ÙØ°Ù اÙÙ
ÙØ²Ø©Ø أدخ٠0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#| msgid "Do you want to start the hddtemp daemon on startup?"
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "ÙÙ ØªØ±ÙØ¯ تشغÙÙ Ø¹ÙØ±Ùت hddtemp Ø¹ÙØ¯ Ø§ÙØ¥ÙÙØ§Ø¹Ø"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#| msgid ""
++#| "hddtemp can be run as a daemon, listening on port 7634 for incoming "
++#| "connections. It is used some by software such as gkrellm to get the "
++#| "temperature of the hard drives."
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"ÙÙ
Ù٠تشغÙÙ Ø¨Ø±ÙØ§Ù
ج hddtemp ÙØ¹ÙØ±ÙØªØ ÙÙØµØºÙ ÙÙÙ
ÙÙØ° 7634 ÙØ£Ù"
++"Ø§ØªØµØ§ÙØ§Øª ÙØ§Ø±Ø¯Ø©. ÙÙØ³ØªØ®Ø¯Ù
Ø§ÙØ¨Ø±ÙاÙ
ج Ù
Ù ÙØ¨Ù بعض Ø§ÙØ¨Ø±Ø§Ù
ج Ø§ÙØ£Ø®Ø±Ù Ù
ث٠gkrellm "
++"ÙÙ
Ø±Ø§ÙØ¨Ø© "
++"درجة ØØ±Ø§Ø±Ø© Ø§ÙØ£Ùراص Ø§ÙØµÙبة."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#| msgid ""
++#| "You have the option of starting the hddtemp daemon automatically on the "
++#| "computer startup. If in doubt, it is suggested to not start it "
++#| "automatically on startup. If you later change your mind, you can run: "
++#| "'dpkg-reconfigure hddtemp'."
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"ÙØ¯ÙÙ Ø®ÙØ§Ø± تشغÙÙ Ø¹ÙØ±Ùت hddtemp Ø¢ÙÙØ§Ù Ø¹ÙØ¯ Ø¥ÙÙØ§Ø¹ "
++"اÙÙØ¸Ø§Ù
. Ø¥Ù ÙÙØª ÙÙ Ø´ÙØ ÙÙØªØ±Ø عدÙ
تشغÙÙ٠آÙÙØ§Ù Ø¹ÙØ¯ Ø§ÙØ¥ÙÙØ§Ø¹."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "اÙÙØ§Ø¬ÙØ© Ø§ÙØªÙ ÙØµØºÙ Ø¥ÙÙÙØ§:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#| msgid ""
++#| "hddtemp can listen for incoming connections on a specific interface, or "
++#| "on all interfaces."
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"ÙØ³ØªØ·Ùع Ø¨Ø±ÙØ§Ù
ج hddtemp Ø§ÙØ¥ØµØºØ§Ø¡ ÙÙØ§ØªØµØ§Ùات اÙÙØ§Ø±Ø¯Ø© عÙÙ ÙØ§Ø¬ÙØ© "
++"Ù
ØØ¯Ø¯Ø©Ø أ٠جÙ
ÙØ¹ اÙÙØ§Ø¬Ùات."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#| msgid ""
++#| "To listen on a specific interface, enter the IP address of that "
++#| "interface (127.0.0.1 which is the default value corresponds to the lo "
++#| "interface). To listen on all interfaces, simply enter 0.0.0.0."
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"ÙÙØ¥ØµØºØ§Ø¡ Ø¥ÙÙ ÙØ§Ø¬ÙØ© Ù
ØØ¯Ø¯Ø©Ø أدخ٠عÙÙØ§Ù IP ÙØªÙ٠اÙÙØ§Ø¬ÙØ© "
++"(Ø§Ø®ØªÙØ§Ø± 127.0.0.1 سÙÙ ÙØ³ØªÙØ¨Ù Ø§ÙØ§ØªØµØ§Ùات اÙÙ
ØÙÙØ© ÙÙØ·). ÙÙØ¥ØµØºØ§Ø¡ ÙØ¬Ù
ÙØ¹ "
++"اÙÙØ§Ø¬ÙØ§ØªØ Ø£Ø¯Ø®Ù Ø§ÙÙÙÙ
Ø© 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "اÙÙ
ÙÙØ° Ø§ÙØ°Ù ÙØµØºÙ Ø¥ÙÙÙ:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++#| msgid ""
++#| "By default, hddtemp listen for incoming connections on port 7634. However "
++#| "if you don't find this port appropriate, you can enter an other one."
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"بشÙÙ Ø§ÙØªØ±Ø§Ø¶ÙØ ÙØ³ØªÙ
ع hddtemp ÙÙØ§ØªØµØ§Ùات اÙÙØ§Ø±Ø¯Ø© عÙ٠اÙÙ
ÙÙØ° 7634. ÙÙÙ
ÙÙ"
++"تغÙÙØ± ÙØ°Ø§ Ø§ÙØ±ÙÙ
Ø¥Ù٠آخر."
++
++#~ msgid "You have the option of installing hddtemp with the SUID bit set."
++#~ msgstr "ÙØ¯ÙÙ Ø®ÙØ§Ø± ØªØ«Ø¨ÙØª hddtemp بتعÙÙ٠بت SUID."
++
++#~ msgid ""
++#~ "If you make hddtemp SUID, unprivileged users of your systems will be able "
++#~ "to run it. This could, however, potentially allow hddtemp to be used "
++#~ "during a security attack on your computer. If in doubt, it is suggested "
++#~ "to install it without SUID. If you later change your mind, you can run: "
++#~ "'dpkg-reconfigure hddtemp'."
++#~ msgstr ""
++#~ "Ø¥Ù ÙÙ
ت بتعÙÙÙ hddtemp SUIDØ ÙØ³ÙØ³ØªØ·ÙØ¹ اÙÙ
ستخدÙ
ÙÙ Ø§ÙØºÙر Ù
Ø®ÙÙÙÙ ÙÙØ¸Ø§Ù
Ù "
++#~ "تشغÙÙÙ. ÙØ¯ ÙØªØ³Ø¨Ø¨ ÙØ°Ø§ عÙÙ Ø£Ù ØØ§Ù Ø¨Ø§ÙØ³Ù
Ø§Ø Ø¨Ø§Ø³ØªØ®Ø¯Ø§Ù
hddtemp Ø£Ø«ÙØ§Ø¡ اÙÙØ¬ÙÙ
"
++#~ "Ø§ÙØ£Ù
Ù٠عÙÙ ØØ§Ø³Ø¨Ù. Ø¥Ù ÙÙØª ÙÙ Ø´ÙØ Ø£ÙØªØ±Ø ØªØ«Ø¨ÙØªÙ دÙ٠تعÙÙÙ SUID. Ø¥Ù Ø¨Ø¯ÙØª رأÙÙ "
++#~ "ÙØ§ØÙØ§ÙØ ÙÙ
ÙÙ٠تشغÙÙ: 'dpkg-reconfigure hddtemp'."
++
++#~ msgid ""
++#~ "hddtemp can periodically log the temperature of the hard drive(s) via the "
++#~ "SYSLOG interface."
++#~ msgstr ""
++#~ "ÙØ³ØªØ·Ùع hddtemp تسجÙÙ ØØ±Ø§Ø±Ø© Ø§ÙØ£Ùراص Ø§ÙØµÙبة بشÙÙ Ø¯ÙØ±Ù عبر ÙØ§Ø¬ÙØ© SYSLOG."
+--- hddtemp-0.3-beta15.orig/debian/po/ja.po
++++ hddtemp-0.3-beta15/debian/po/ja.po
+@@ -0,0 +1,138 @@
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-05-29 13:50+0900\n"
++"Last-Translator: Kenshi Muto <kmuto@debian.org>\n"
++"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "/usr/sbin/hddtemp ã SUID root ã§ã¤ã³ã¹ãã¼ã«ãã¾ãã?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr "SUID ããããè¨å®ã㦠hddtemp ãã¤ã³ã¹ãã¼ã«ãããã©ããã鏿ãã¾ããããã¯ãã¹ã¼ãã¼ã¦ã¼ã¶ã ãã§ãªãä¸è¬ã¦ã¼ã¶ã§ã (ãã¼ããã©ã¤ãã®æ¸©åº¦ã®å ±åã) å®è¡ãããã¨ã許å¯ãããã¨ã«ãªãã¾ãã"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr "ããã¯æ½å¨çã«ã¯ã³ã³ãã¥ã¼ã¿ã®ã»ãã¥ãªãã£ã«å¯¾ããæ»æã«ä½¿ãããå¯è½æ§ã hddtemp ã«è¨±ããã¨ã«ãªãã¾ããçããããã°ããããããã¨çãã¦ãã ããã"
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "ãã®è¨å®ã¯ãã¨ã§ 'dpkg-reconfigure hddtemp' ãå®è¡ãããã¨ã§å¤æ´ã§ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "ãã¼ããã©ã¤ãã®æ¸©åº¦ãã§ãã¯ã®ééã¤ã³ã¿ã¼ãã«:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr "hddtemp ã§ãã¼ããã©ã¤ãã®æ¸©åº¦ãä¸è¬çãªã·ã¹ãã ãã®ã³ã°ã¤ã³ã¿ã¼ãã§ã¤ã¹ãéãã¦è¨é²ã§ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr "2ã¤ã®ãã§ãã¯ã®éã®ã¤ã³ã¿ã¼ãã«ã«ç¸å½ããç§æ°ãå
¥åãã¦ãã ããããã®æ©è½ãç¡å¹ã«ããã«ã¯ã0 ã¨å
¥åãã¦ãã ããã"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "èµ·åæã« hddtemp ãã¼ã¢ã³ãéå§ãã¾ãã?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr "hddtemp ããã°ã©ã ã¯ãå
¥åæ¥ç¶ã®ããã®ãã¼ã 7634 ããªã¹ã³ãããã¼ã¢ã³ã¨ãã¦å®è¡ã§ãã¾ãããã¼ããã©ã¤ãã®æ¸©åº¦ãå¾ãããã«ãgkrellm ã®ãããªããã¤ãã®ã½ããã¦ã§ã¢ã«ãã£ã¦ä½¿ããã¾ãã"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr "ã³ã³ãã¥ã¼ã¿ã®èµ·åæã« hddtemp ãã¼ã¢ã³ãèªåçã«éå§ãã鏿è¢ã§ããçãããã®ã§ããã°ãèµ·åæã«èªåçã«ã¯éå§ããªããã¨ãææ¡ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "ãªã¹ã³ããã¤ã³ã¿ã¼ãã§ã¤ã¹:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr "hddtemp ããã°ã©ã ã¯ãç¹å®ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ã¾ãã¯ãã¹ã¦ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ã®å
¥åæ¥ç¶ããªã¹ã³ã§ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr "ç¹å®ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ããªã¹ã³ããã«ã¯ãã¤ã³ã¿ã¼ãã§ã¤ã¹ã® IP ã¢ãã¬ã¹ãå
¥åãã¦ãã ãã (127.0.0.1 ãé¸ã¶ã¨ããã¼ã«ã«ã®æ¥ç¶ã®ã¿ã許å¯ããããã«ãªãã¾ã)ããã¹ã¦ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ããªã¹ã³ããã«ã¯ã0.0.0.0 ã¨å
¥åãã¦ãã ããã"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "ãªã¹ã³ãããã¼ã:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr "ããã©ã«ãã§ã¯ãhddtemp ã¯ãã¼ã 7634 ã§å
¥åæ¥ç¶ããªã¹ã³ãã¾ããããã¯å¥ã®ãã¼ãçªå·ã«å¤æ´ã§ãã¾ãã"
+--- hddtemp-0.3-beta15.orig/debian/po/fi.po
++++ hddtemp-0.3-beta15/debian/po/fi.po
+@@ -0,0 +1,151 @@
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-04 12:18+0200\n"
++"Last-Translator: Esko Arajärvi <edu@iki.fi>\n"
++"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"X-Poedit-Language: Finnish\n"
++"X-Poedit-Country: FINLAND\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Tulisiko /usr/sbin/hddtemp asentaa asetuksella SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Ohjelma hddtemp voidaan asentaa SUID-bitti asetettuna, jolloin pääkäyttäjien "
++"lisäksi myös tavalliset käyttäjät voivat ajaa ohjelman (saaden tietää "
++"kovalevyjen lämpötilat)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Tämä saattaa mahdollistaa hddtempin käytön tietoturvahyökkäyksessä konetta "
++"vastaan. Jos olet epävarma, älä valitse tätä vaihtoehtoa."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Tätä asetusta voidaan myöhemmin muuttaa ajamalla komento âdpkg-reconfigure "
++"hddtempâ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Aikaväli kovalevyjen lämpötilojen tarkistusten välillä:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Kovalevyjen lämpötilat voidaan kirjoittaa yleiseen järjestelmälokiin "
++"hddtempin toimesta."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Anna tarkistusten välinen aika sekunneissa. Syötä 0 poistaaksesi tämän "
++"ominaisuuden käytöstä."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Tulisiko hddtemp-taustaohjelma käynnistää käynnistettäessä tietokone?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Ohjelma hddtemp voidaan ajaa taustaohjelmana, joka kuuntelee yhteydenottoja "
++"portissa 7634. Jotkin ohjelmat, kuten gkrellm, käyttävät tätä hakeakseen "
++"kovalevyjen lämpötilat."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"hddtemp-taustaohjelma voidaan käynnistää automaattisesti käynnistettäessä "
++"järjestelmä. Jos olet epävarma, ohjelmaa ei suositella käynnistettäväksi "
++"automaattisesti."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Kuunneltavat liitynnät:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Ohjelma hddtemp voi kuunnella yhteydenottoja tietystä liitynnästä tai "
++"kaikista liitynnöistä."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Voit määrittää tietyn liitynnän antamalla sen IP-osoitteen (asetus 127.0.0.1 "
++"hyväksyy vain paikalliset yhteydet). Kaikki liitynnät määritetään "
++"asetuksella 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Kuunneltava portti:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Oletuksena hddtemp kuuntelee yhteydenottoja portissa 7634. Tämä portin "
++"numero voidaan vaihtaa."
+--- hddtemp-0.3-beta15.orig/debian/po/templates.pot
++++ hddtemp-0.3-beta15/debian/po/templates.pot
+@@ -0,0 +1,131 @@
++# 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: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\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"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=CHARSET\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
+--- hddtemp-0.3-beta15.orig/debian/po/es.po
++++ hddtemp-0.3-beta15/debian/po/es.po
+@@ -0,0 +1,172 @@
++# hddtemp debconf translation to spanish
++# Copyright (C) 2003, 2006, 2008 Software in the Public Interest
++# This file is distributed under the same license as the hddtemp package.
++#
++# Changes:
++# - Initial translation
++# Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>, 2003
++# - Revisions:
++# Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>, 2006, 2008
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta15-39:\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-31 16:50+0100\n"
++"Last-Translator: Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>\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: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "¿Desea instalar «/usr/sbin/hddtemp» con el bit SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Puede instalar hddtemp con el bit SUID activado, permitiendo asà su "
++"ejecución (informando de la temperatura de los discos duros) por parte de "
++"usuarios normales y no sólo del superusuario."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Esto podrÃa permitir que se utilizara hddtemp para comprometer la seguridad "
++"del sistema durante un ataque. Si está en duda, se recomienda que no active "
++"el bit SUID."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Esta elección puede modificarse posteriormente ejecutando «dpkg-reconfigure "
++"hddtemp»."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "PerÃodo entre dos comprobaciones de temperatura:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"La temperatura del disco o discos duros puede ser registrada por hddtemp "
++"mediante la interfaz de registro genérica del sistema."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Introduzca un valor en segundos para el perÃodo entre dos comprobaciones "
++"sucesivas. Para desactivar esta caracterÃstica, introduzca 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "¿Desea iniciar el demonio de hddtemp en el arranque del sistema?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"hddtemp puede ejecutarse en modo demonio, escuchando conexiones entrantes en "
++"el puerto 7634. Algunos programas, como gkrellm, lo utilizan para obtener la "
++"temperatura de los discos duros."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Puede iniciar el demonio de hddtemp automáticamente cada vez que arranque el "
++"sistema. Si está en duda, se recomienda que no lo inicie automáticamente al "
++"arrancar."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interfaz en la que escuchar:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"hddtemp puede escuchar conexiones entrantes en una interfaz concreta, o bien "
++"en todas."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para escuchar en una interfaz determinada, introduzca la dirección IP de "
++"dicha interfaz (si elige 127.0.0.1 sólo se aceptarán conexiones locales). "
++"Para escuchar en todas las interfaces, introduzca 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Puerto en el que escuchar:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"De manera predeterminada hddtemp escucha en el puerto 7634, pero puede "
++"cambiarlo por otro."
+--- hddtemp-0.3-beta15.orig/debian/po/sk.po
++++ hddtemp-0.3-beta15/debian/po/sk.po
+@@ -0,0 +1,155 @@
++# Slovak translations for hddtemp package
++# Slovenské preklady pre balÃk hddtemp.
++# Copyright (C) 2011 THE hddtemp'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the hddtemp package.
++# Automatically generated, 2011.
++# Slavko <linux@slavino.sk>, 2011.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta15-48\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2011-08-30 16:30+0200\n"
++"Last-Translator: Slavko <linux@slavino.sk>\n"
++"Language-Team: Slovak <nomail>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Language: sk\n"
++"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Má byť /usr/sbin/hddtemp nainštalovaný s SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Môžete si zvoliť inštaláciu hddtemp s nastaveným bitom SUID, ktorý dovoľuje "
++"jeho spustenie (hlásenie stavu teploty pevných diskov) obyÄajným "
++"použÃvateľom a nie len super-použÃvateľovi."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Toto môže potenciálne umožniÅ¥, aby bol hddtemp použitý poÄas útoku na "
++"bezpeÄnosÅ¥ poÄÃtaÄa. Ak si nie ste istý, nevyberajte túto možnosÅ¥."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "Môžete to zmeniÅ¥ aj neskôr, spustenÃm âdpkg-reconfigure hddtempâ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Interval medzi kontrolami teploty pevného disku:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Teplota pevného disko(ov) môže hddtemp zaznamenávaÅ¥ pomocou spoloÄného "
++"rozhrania systémových záznamov."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"ProsÃm, zadajte hodnotu v sekundách, ktorá zodpovedá intervalu medzi dvomi "
++"meraniami. Na zakázanie tejto funkcie zadajte 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Má byť démon hddtemp spustený pri zavedenà systému?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Program hddtemp môže byÅ¥ spustený ako démon, naÄúvajúci prÃchodzÃm spojeniam "
++"na porte 7634. Je to použÃvané niektorými programami, napr. gkrellm, na "
++"zÃskanie teploty pevných diskov."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Môžete si zvoliť automatické spúšťanie démona hddtemp pri zavedenà systému. "
++"Ak si nie ste istý, odporúÄame nespúšťaÅ¥ ho automaticky pri azvedenÃ."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Rozhranie, na ktorom naÄúvaÅ¥:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Program hddtemp môže oÄakávaÅ¥ prÃchodzie spojenia na zadanom rozhranà alebo "
++"na všetkých rozhraniach."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Aby naÄúval na zadanom rozhranÃ, zadajte IP adresu daného rozhrania (zadanÃm "
++"127.0.0.1 budú prijÃmané len lokálne spojenia). Na naÄúvanie na vÅ¡etkých "
++"rozhraniach, zadajte 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, na ktorom naÄúvaÅ¥:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Predvolene hddtemp oÄakáva prÃchodzie spojenia na porte 7634. Môžete to "
++"zmeniÅ¥ na akékoľvek iné ÄÃslo portu."
+--- hddtemp-0.3-beta15.orig/debian/po/POTFILES.in
++++ hddtemp-0.3-beta15/debian/po/POTFILES.in
+@@ -0,0 +1 @@
++[type: gettext/rfc822deb] templates
+--- hddtemp-0.3-beta15.orig/debian/po/nl.po
++++ hddtemp-0.3-beta15/debian/po/nl.po
+@@ -0,0 +1,159 @@
++# Dutch translation of hddtemp debconf templates.
++# Copyright (C) 2006-2011 THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the hddtemp package.
++# Kurt De Bree <kdebree@telenet.be>, 2006.
++# Jeroen Schot <schot@a-eskwadraat.nl>, 2011.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 3.3-beta15-46\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2011-06-01 08:31+0200\n"
++"Last-Translator: Jeroen Schot <schot@a-eskwadraat.nl>\n"
++"Language-Team: Debian l10n Dutch <debian-l10n-dutch@lists.debian.org>\n"
++"Language: nl\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Wilt u /usr/sbin/hddtemp als SUID root installeren?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"U heeft de keuze om hddtemp te installeren met de SUID-bit ingesteld. Dit "
++"zorgt ervoor dat het kan worden uitgevoerd (en hardeschijf-temperatuur "
++"meldt) door gewone gebruikers en niet enkel de beheerder."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Hierdoor zou hddtemp mogelijk gebruikt kunnen worden bij aan aanval om de "
++"beveiling van de computer te omzeilen. Als u twijfelt, kies dan niet voor "
++"deze optie."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Deze instelling kan later worden gewijzigd door 'dpkg-reconfigure hddtemp' "
++"uit te voeren."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Interval tussen controles van de hardeschijf-temperatuur:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"De temperatuur van de harde schijven kan worden bijgehouden via de algemene "
++"systeemloginterface."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Geef een waarde (in seconden) overeenkomend met de interval tussen twee "
++"controles. '0' schakelt deze functie uit."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr ""
++"Wilt u dat hddtemp-achtergronddienst wordt gestart bij de systeemstart?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Het hddtemp-programma kan worden uitgevoerd als achtergronddienst, "
++"luisterend naar inkomende verbindingen op poort 7634. Dit wordt gebruikt "
++"door sommige toepassingen zoals gkrellm om de temperatuur van de harde "
++"schijven op te halen."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"U heeft de optie om de hddtemp-achtergronddienst automatisch op te starten "
++"bij de systeemstart. Bij twijfel wordt aangeraden om de dienst niet "
++"automatisch op te starten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "De interface waarop hddtemp moet luisteren:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Het hddtemp-programma kan naar inkomende verbindingen luisteren op één "
++"specifieke interface, of op alle interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Om op één specifieke interface te luisteren, voer het IP-addres van deze "
++"interface in (als u 127.0.0.1 kiest zullen alleen lokale verbindingen worden "
++"geaccepeert). Om op alle interfaces te luisteren, voer 0.0.0.0. in."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "De poort waarop hddtemp moet luisteren:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Standaard luistert hddtemp naar inkomende verbindingen op poort 7634. Dit "
++"kan veranderd worden in een ander poortnummer."
+--- hddtemp-0.3-beta15.orig/debian/po/nb.po
++++ hddtemp-0.3-beta15/debian/po/nb.po
+@@ -0,0 +1,152 @@
++# translation of hddtemp_nb.po to Norwegian Bokmål
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Bjørn Steensrud <bjornst@skogkatt.homelinux.org>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_nb\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-27 17:39+0100\n"
++"Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n"
++"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\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"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Skal /usr/sbin/hddtemp installeres med SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Du kan installere hddtemp med SUID-biten satt, slik at vanlige brukere og "
++"ikke bare superbrukeren kan kjøre det for å undersøke temperatur på "
++"harddisken(e)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Dette kan kanskje tillate at hddtemp blir brukt i et angrep mot systemets "
++"sikkerhet. Er du i tvil, så ikke velg dette."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Denne innstillingen kan endres senere ved å kjøre «dpkg-reconfigure hddtemp»."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervall mellom sjekker på disktemperaturen:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"hddtemp kan logge disken(e)s temperatur via systemets eget log-grensesnitt."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Oppgi en verdi i sekunder som tilsvarer intervallet mellom to sjekker. Dette "
++"blir slått av hvis verdien er 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Skal hddtemp-daemonen startes ved oppstart?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"hddtemp-programmet kan kjøres som en daemon som lytter på port 7634. Dette "
++"brukes av noen programmer slik som gkrellm for å finne temperaturen på "
++"harddisker."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Du kan velge å starte hddtemp-daemonen automatisk når systemet starter opp. "
++"Er du i tvil, foreslår vi at den ikke startes automatisk ved oppstart."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Grensesnitt det skal lyttes på:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"hddtemp-programmet kan lytte etter inkommende tilkoblinger på et bestemt "
++"grensesnitt, eller alle grensesnitt."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Oppgi grensesnittets IP-adresse for å lytte på det grensesnittet. (127.0.0.1 "
++"godtar bare lokale tilkoblinger). Oppgi 0.0.0.0 for å lytte på alle "
++"grensesnitt."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port å lytte på:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Standardporten der hddtemp lytter etter innkommende tilkoblinger er port "
++"7634. Dette kan endres til et annet portnummer."
+--- hddtemp-0.3-beta15.orig/doc/hddtemp.8
++++ hddtemp-0.3-beta15/doc/hddtemp.8
+@@ -58,6 +58,10 @@
+ .B \-f, \-\-file=\fIfile\fI
+ Specify the database file to use.
+ .TP
++.B \-F, \-\-foreground
++Don't fork into the background even in daemon mode. This is useful
++when running under a process supervisor.
++.TP
+ .B \-l, \-\-listen=\fIaddr\fR
+ Listen on a specific address. \fIaddr\fR is a string containing a
+ host name or a numeric host address string. The numeric host address
+@@ -80,6 +84,9 @@
+ .B \-q, \-\-quiet
+ Don't check if the drive is supported.
+ .TP
++.B \-u, \-\-unit=\fIC|F\fR
++Force output temperature either in Celsius or Fahrenheit.
++.TP
+ .B \-v, \-\-version
+ Display hddtemp version number.
+ .TP
+@@ -96,7 +103,7 @@
+ .SH "DRIVE DATABASE"
+ If you know your drive has a temperature sensor but it is being
+ reported unsupported, tell me which model and which manufacturer it
+-is, and/or just add a new entry in /usr/share/misc/hddtemp.db. Each
++is, and/or just add a new entry in /etc/hddtemp.db. Each
+ line of hddtemp.db is either a comment, a blank line or a line
+ containing:
+ .TP
+@@ -112,7 +119,7 @@
+ Feedback is welcome (see the REPORT section below).
+
+ .SH "TCP/IP DAEMON MODE"
+-Exemple of type forcing:
++Example of type forcing:
+ .PP
+ # hddtemp SATA:/dev/sda PATA:/dev/hda
+ .PP
+@@ -120,7 +127,7 @@
+ .B hddtemp
+ in daemon mode, start it like this:
+ .PP
+-# hddtemp -d /dev/hd[abcd]
++# hddtemp \-d /dev/hd[abcd]
+ .PP
+ .PP
+ and use
+@@ -165,8 +172,8 @@
+ investigation they do not. But fields 194 (which is the standard
+ field for temperature) and 231 are good candidates.
+ .PP
+-Then, you can send me a report with outputs from `hddtemp --debug ...',
+-`smartctl' or `hdparm -i ...', and/or add an entry in hddtemp.db
++Then, you can send me a report with outputs from `hddtemp \-\-debug ...',
++`smartctl' or `hdparm \-i ...', and/or add an entry in hddtemp.db
+ yourself.
+
+ .SH "BUGS"
+@@ -183,5 +190,5 @@
+ .PP
+ Emmanuel Varagnat (hddtemp@guzu.net).
+ .PP
+-This manual page was originaly written by Aurelien Jarno <aurel32@debian.org>,
++This manual page was originally written by Aurelien Jarno <aurel32@debian.org>,
+ for the Debian GNU/Linux system (but may be used by others).
+--- hddtemp-0.3-beta15.orig/po/fr.po
++++ hddtemp-0.3-beta15/po/fr.po
+@@ -7,9 +7,9 @@
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: fr\n"
+-"Report-Msgid-Bugs-To: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
+-"PO-Revision-Date: 2003-06-03 00:58GMT+1\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
++"PO-Revision-Date: 2011-08-30 16:38+0200\n"
+ "Last-Translator: Aurelien Jarno <aurelien@aurel32.net>\n"
+ "Language-Team: FRANCAIS <fr@li.org>\n"
+ "MIME-Version: 1.0\n"
+@@ -17,23 +17,7 @@
+ "Content-Transfer-Encoding: 8bit\n"
+ "X-Generator: KBabel 1.0.1\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"Regexp%s| Valeur | Description\n"
+-"------%s----------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr "%s%s| %5d | %s\n"
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -46,7 +30,7 @@
+ "Modèle: %s\n"
+ "\n"
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -60,75 +44,60 @@
+ "net).\n"
+ "ATTENTION : Voir les options --help, --debug et --drivebase.\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s : pas de capteur\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"ATTENTION : Le lecteur %s n'apparait pas dans la base de données des "
+-"lecteurs supportés\n"
+-"ATTENTION : Mais en utilisant une valeur courante, il renvoie quelque "
+-"chose.\n"
+-"ATTENTION : Notez que la température renvoyée peut être erronée.\n"
+-"ATTENTION : Voir les options --help, --debug et --drivebase.\n"
+-"ATTENTION : Et n'oubliez pas d'ajouter votre lecteur au fichier hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s : %d%sC ou %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s : le lecteur est en veille\n"
+
+-#: src/hddtemp.c:217
++#: src/hddtemp.c:242
+ #, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr ""
+ "%s: %s: lecteur connu, mais il ne possède pas de capteur de température.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "ERREUR : %s : %s : status inconnu\n"
+
+-#: src/hddtemp.c:235
++#: src/hddtemp.c:261
+ #, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "ERREUR : séparateur invalide.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "ERREUR : numéro de port invalide.\n"
+
+-#: src/hddtemp.c:329
+-#, fuzzy, c-format
++#: src/hddtemp.c:371
++#, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -138,6 +107,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -145,6 +115,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -153,11 +125,14 @@
+ "\n"
+ "Report bugs or new drives to <hddtemp@guzu.net>.\n"
+ msgstr ""
+-" Utilisation: hddtemp [OPTIONS] DISQUE1 [DISQUE2]...\n"
++" Utilisation: hddtemp [OPTIONS] [TYPE:]DISQUE1 [[TYPE:]DISQUE2]...\n"
+ "\n"
+ " hddtemp affiche la température des lecteurs passés en argument.\n"
+ " Les lecteurs doivent avoir le support S.M.A.R.T.\n"
+ "\n"
++" TYPE peut être SATA, PATA ou SCSI. Si le type est omis, hddtemp essaiera\n"
++" de le deviner.\n"
++"\n"
+ " -b --drivebase : affiche le contenu du fichier de base de donnée "
+ "qui \n"
+ " permet à hddtemp de reconnaître les lecteurs "
+@@ -172,6 +147,7 @@
+ "défaut).\n"
+ " -f --file=FILE : specifie le fichier à utiliser comme base de "
+ "données.\n"
++" -F --foreground : ne pas démoniser, rester au premier plan.\n"
+ " -l --listen=addr : écoute sur une interface spécifique (en mode démon "
+ "TCP/IP).\n"
+ " -n --numeric : affiche seulement la température.\n"
+@@ -180,6 +156,8 @@
+ "démon TCP/IP).\n"
+ " -S --syslog=s : enregistre la température dans syslog tous les s "
+ "secondes.\n"
++" -u --unit=[C|F] : affiche la température en degrés Celsius ou "
++"Fahrenheit.\n"
+ " -q --quiet : ne vérifie pas si le lecteur est supporté.\n"
+ " -v --version : affiche la version de hddtemp.\n"
+ " -w --wake-up : réveiller le lecteur si nécessaire.\n"
+@@ -188,62 +166,95 @@
+ "\n"
+ "Report bugs or new drives to <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "hddtemp version %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "ERREUR : intervalle invalide.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr "Trop peu d'arguments : vous devez spécifier au moins un lecteur.\n"
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr ""
+ "ERREUR: impossible d'utiliser les options --debug et --daemon ou --syslog en "
+ "même temps.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr ""
+ "ERREUR: %s: impossible de déterminer le type de bus (ou ce type de bus est "
+ "inconnu)\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "inconnu"
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "champ(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. non disponible"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Valeur | Description\n"
++"------%s----------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: ne peut ouvrir %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "ERREUR: erreur de syntaxe à la ligne %1$d: %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr " ERREUR: ligne exécdant %1$d caractères dans %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr "echec de 'log sense' : %s "
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "ATTENTION : Le lecteur %s n'apparait pas dans la base de données des "
++#~ "lecteurs supportés\n"
++#~ "ATTENTION : Mais en utilisant une valeur courante, il renvoie quelque "
++#~ "chose.\n"
++#~ "ATTENTION : Notez que la température renvoyée peut être erronée.\n"
++#~ "ATTENTION : Voir les options --help, --debug et --drivebase.\n"
++#~ "ATTENTION : Et n'oubliez pas d'ajouter votre lecteur au fichier hddtemp."
++#~ "db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "champ(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/ru.po
++++ hddtemp-0.3-beta15/po/ru.po
+@@ -6,8 +6,8 @@
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: hddtemp 0.3-beta3\n"
+-"Report-Msgid-Bugs-To: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: 2003-03-08 16:42+0300\n"
+ "Last-Translator: Michael Shigorin <mike@altlinux.ru>\n"
+ "Language-Team: Russian <ru@li.org>\n"
+@@ -15,23 +15,7 @@
+ "Content-Type: text/plain; charset=koi8-r\n"
+ "Content-Transfer-Encoding: 8bit\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"òÅÇÜËÓ%s| úÎÁÞ. | ïÐÉÓÁÎÉÅ \n"
+-"------%s---------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr ""
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -40,7 +24,7 @@
+ "\n"
+ msgstr ""
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -53,72 +37,59 @@
+ "÷îéíáîéå: åÓÌÉ ×Ù ÔÏÞÎÏ ÚÎÁÅÔÅ, ÞÔÏ ÄÁÔÞÉË ÅÓÔØ, ÎÁÐÉÛÉÔÅ hddtemp@guzu.net\n"
+ "÷îéíáîéå: (ÓÍ. ÏÐÃÉÉ --help, --debug É --drivebase).\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s: ÎÅÔ ÄÁÔÞÉËÁ\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"÷îéíáîéå: äÉÓË %s ÎÅ ×ËÌÀÞÅÎ × ÂÁÚÕ ÄÁÎÎÙÈ ÐÏÄÄÅÒÖÉ×ÁÅÍÙÈ ÐÒÉ×ÏÄÏ×.\n"
+-"÷îéíáîéå: îÏ Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ ÒÁÓÐÒÏÓÔÒÁÎÅÎÎÙÈ ÐÁÒÁÍÅÔÒÏ× ÏÎ ÞÔÏ-ÔÏ ×ÙÄÁÅÔ.\n"
+-"÷îéíáîéå: úÁÍÅÔØÔÅ, ÞÔÏ ÐÏËÁÚÁÎÎÁÑ ÔÅÍÐÅÒÁÔÕÒÁ ÍÏÖÅÔ ÔÁËÏ×ÏÊ ÎÅ Ñ×ÌÑÔØÓÑ.\n"
+-"÷îéíáîéå: óÍ. ÏÐÃÉÉ --help, --debug É --drivebase.\n"
+-"÷îéíáîéå: é ÎÅ ÚÁÂÕÄØÔÅ, ÞÔÏ ÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÒÉ×ÏÄ × hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s: %d%sC ÉÌÉ %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s: ÎÅÔ ÄÁÔÞÉËÁ\n"
+
+-#: src/hddtemp.c:217
+-#, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++#: src/hddtemp.c:242
++#, fuzzy, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr "%s: %s: ÉÚ×ÅÓÔÎÙÊ ÄÉÓË, ÎÅ ÓÏÄÅÒÖÁÝÉÊ ÄÁÔÞÉËÁ ÔÅÍÐÅÒÁÔÕÒÙ.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "ïûéâëá: %s: %s: ÎÅÉÚ×ÅÓÔÎÙÊ ÓÔÁÔÕÓ ×ÏÚ×ÒÁÔÁ\n"
+
+-#: src/hddtemp.c:235
++#: src/hddtemp.c:261
+ #, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "ïûéâëá: ÎÅ×ÅÒÎÙÊ ÒÁÚÄÅÌÉÔÅÌØ.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "ïýéâëá: ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÏÒÔÁ.\n"
+
+-#: src/hddtemp.c:329
++#: src/hddtemp.c:371
+ #, fuzzy, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -128,6 +99,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -135,6 +107,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -168,59 +142,90 @@
+ "\n"
+ "óÏÏÂÝÅÎÉÑ Ï ÏÛÉÂËÁÈ É ÄÁÎÎÙÅ ÄÌÑ ÄÉÓËÏ× ÏÔÐÒÁ×ÌÑÊÔÅ ÎÁ <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "÷ÅÒÓÉÑ hddtemp: %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, fuzzy, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "ïûéâëá: ÎÅ×ÅÒÎÙÊ ÒÁÚÄÅÌÉÔÅÌØ.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:557
+-#, fuzzy
++#: src/hddtemp.c:448
++#, fuzzy, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr "ïûéâëá: ÏÄÎÏ×ÒÅÍÅÎÎÏÅ ÉÓÐÏÌØÚÏ×ÁÎÉÅ --debug É --daemon ÎÅÄÏÐÕÓÔÉÍÏ.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr "ïûéâëá: %s: ÎÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÔÉÐ ÛÉÎÙ\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "ÎÅÉÚ×."
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "ÐÏÌÅ(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. ÎÅÄÏÓÔÕÐÅÎ"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"òÅÇÜËÓ%s| úÎÁÞ. | ïÐÉÓÁÎÉÅ \n"
++"------%s---------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr ""
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ïûéâëá × ÓÔÒÏËÅ %1$d ÆÁÊÌÁ %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr "ïûéâëá: ÓÔÒÏËÁ ÄÌÉÎÎÅÅ %1$d ÓÉÍ×ÏÌÏ× × %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr ""
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "÷îéíáîéå: äÉÓË %s ÎÅ ×ËÌÀÞÅÎ × ÂÁÚÕ ÄÁÎÎÙÈ ÐÏÄÄÅÒÖÉ×ÁÅÍÙÈ ÐÒÉ×ÏÄÏ×.\n"
++#~ "÷îéíáîéå: îÏ Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ ÒÁÓÐÒÏÓÔÒÁÎÅÎÎÙÈ ÐÁÒÁÍÅÔÒÏ× ÏÎ ÞÔÏ-ÔÏ "
++#~ "×ÙÄÁÅÔ.\n"
++#~ "÷îéíáîéå: úÁÍÅÔØÔÅ, ÞÔÏ ÐÏËÁÚÁÎÎÁÑ ÔÅÍÐÅÒÁÔÕÒÁ ÍÏÖÅÔ ÔÁËÏ×ÏÊ ÎÅ "
++#~ "Ñ×ÌÑÔØÓÑ.\n"
++#~ "÷îéíáîéå: óÍ. ÏÐÃÉÉ --help, --debug É --drivebase.\n"
++#~ "÷îéíáîéå: é ÎÅ ÚÁÂÕÄØÔÅ, ÞÔÏ ÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÒÉ×ÏÄ × hddtemp.db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "ÐÏÌÅ(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/sv.po
++++ hddtemp-0.3-beta15/po/sv.po
+@@ -6,8 +6,8 @@
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: hddtemp 0.3-beta14-4\n"
+-"Report-Msgid-Bugs-To: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: 2005-11-02 19:03+0100\n"
+ "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
+ "Language-Team: Swedish <sv@li.org>\n"
+@@ -17,23 +17,7 @@
+ "X-Poedit-Language: swe\n"
+ "X-Poedit-Country: swe\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"Regexp%s| Värde | Beskrivning\n"
+-"------%s---------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr "%s%s| %5d | %s\n"
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -46,7 +30,7 @@
+ "Modell: %s\n"
+ "\n"
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -60,76 +44,63 @@
+ "net).\n"
+ "VARNING: Se --help, --debug och --drivebase flaggorna.\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s: ingen sensor\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"VARNING: Disken %s verkar inte finnas i databasen över diskar som stöds\n"
+-"VARNING: Men använder man ett vanligt värde rapporterar den något.\n"
+-"VARNING: Notera att temperaturen som visas kan vara felaktig.\n"
+-"VARNING: Se --help, --debug och --drivebase flaggorna.\n"
+-"VARNING: Och glöm inte att du kan lägga till din disk till hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s: %d%sC eller %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s: disken sover\n"
+
+-#: src/hddtemp.c:217
+-#, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++#: src/hddtemp.c:242
++#, fuzzy, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr "%s: %s: känd disk men den har ingen temperatursensor.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "FEL: %s: %s: okänd returnerad status\n"
+
+-#: src/hddtemp.c:235
+-#, c-format
++#: src/hddtemp.c:261
++#, fuzzy, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+ "\n"
+ "Om ett av fältvärdena verkar matcha temperaturen, var säker på att du\n"
+ "läst manualsidan för hddtemp före du skickar en rapport till mig (sektionen\n"
+ "REPORT). Tack.\n"
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "FEL: ogiltig separator.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "FEL: ogiltigt portnummer.\n"
+
+-#: src/hddtemp.c:329
+-#, c-format
++#: src/hddtemp.c:371
++#, fuzzy, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -139,6 +110,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -146,6 +118,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -184,61 +158,91 @@
+ "\n"
+ "Rapportera buggar eller nya hårddiskar till <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "hddtemp version %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "FEL: ogiltigt intervall.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr "För få argument: du måste specificera åtminstone en disk.\n"
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr ""
+ "FEL: kan inte använda --debug och --daemon eller --syslog flaggorna "
+ "tillsammans.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr ""
+ "FEL: %s: kan inte fastställa busstyp (eller så är denna busstyp okänd)\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "okänd"
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "fält(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. är inte tillgänglig"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Värde | Beskrivning\n"
++"------%s---------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: kan inte öppna %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "FEL: syntaxfel på rad %1$d i %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr " FEL: raden överstiger %1$d tecken i %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr "igenkänning av logg misslyckades : %s"
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "VARNING: Disken %s verkar inte finnas i databasen över diskar som stöds\n"
++#~ "VARNING: Men använder man ett vanligt värde rapporterar den något.\n"
++#~ "VARNING: Notera att temperaturen som visas kan vara felaktig.\n"
++#~ "VARNING: Se --help, --debug och --drivebase flaggorna.\n"
++#~ "VARNING: Och glöm inte att du kan lägga till din disk till hddtemp.db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "fält(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/pt.po
++++ hddtemp-0.3-beta15/po/pt.po
+@@ -7,7 +7,7 @@
+ msgstr ""
+ "Project-Id-Version: hddtemp 0.3-beta14\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: 2006-03-29 23:22+0000\n"
+ "Last-Translator: Miguel Figueiredo <elmig@debianp.org>\n"
+ "Language-Team: Portuguese <traduz@debianpt.org>\n"
+@@ -15,23 +15,7 @@
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"Regexp%s| Valor | Descrição\n"
+-"------%s-------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr "%s%s| %5d | %s\n"
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -44,7 +28,7 @@
+ "Modelo: %s\n"
+ "\n"
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -54,79 +38,68 @@
+ msgstr ""
+ "AVISO: O disco %s não parece ter um sensor de temperatura.\n"
+ "AVISO: Isto não significa que não tem nenhum.\n"
+-"AVISO: Se tem a certeza que tem um, por favor contacte-me (hddtemp@guzu.net).\n"
++"AVISO: Se tem a certeza que tem um, por favor contacte-me (hddtemp@guzu."
++"net).\n"
+ "AVISO: Veja as opções --help, --debug e --drivebase.\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s: sem sensor\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"AVISO: O disco %s não parece estar na base de dados de discos suportados\n"
+-"AVISO: Mas ao utilizar um valor usual, relata alguma coisa.\n"
+-"AVISO: Note que a temperatura mostrada pode estar errada.\n"
+-"AVISO: Veja as opções --help, --debug e --frivebase.\n"
+-"AVISO: E não se esqueça de adicionar o seu disco a hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s: %d%sC ou %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s: o disco está adormecido\n"
+
+-#: src/hddtemp.c:217
+-#, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++#: src/hddtemp.c:242
++#, fuzzy, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr "%s: %s: disco conhecido, mas não tem um sensor de temperatura.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "ERRO: %s: %s: estado devolvido desconhecido\n"
+
+-#: src/hddtemp.c:235
+-#, c-format
++#: src/hddtemp.c:261
++#, fuzzy, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+ "\n"
+-"Se um dos campos de valores parecer coincidir com a temperatura, assegure-se\n"
++"Se um dos campos de valores parecer coincidir com a temperatura, assegure-"
++"se\n"
+ "que lê a página do manual hddtemp antes de me enviar um relatório (secção\n"
+ "REPORT). Obrigado.\n"
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "ERRO: separador inválido.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "ERRO: número de port inválido\n"
+
+-#: src/hddtemp.c:329
+-#, c-format
++#: src/hddtemp.c:371
++#, fuzzy, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -136,6 +109,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -143,6 +117,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -156,19 +132,23 @@
+ " hddtemp mostra a temperatura dos discos indicados no argumento.\n"
+ " Os discos têm de suportar S.M.A.R.T.\n"
+ "\n"
+-" -b --drivebase : mostrar o conteúdo do ficheiro de base de dados que\n"
++" -b\t --drivebase : mostrar o conteúdo do ficheiro de base de dados que\n"
+ " permite ao hddtemp reconhecer os discos suportados.\n"
+-" -D --debug : mostrar vários campos S.M.A.R.T. e os seus valores.\n"
+-" Ãtil para encontrar um valor que pareça coincidir com "
+-" a temperatura e/ou para me enviar um relatório.\n"
++" -D\t --debug : mostrar vários campos S.M.A.R.T. e os seus valores.\n"
++" Ãtil para encontrar um valor que pareça coincidir "
++"com a temperatura e/ou para me enviar um relatório.\n"
+ " (feito para cada disco indicado).\n"
+-" -d --daemon : correr o hddtemp no modo daemon TCP/IP\n (porto %d por omissão.)\n"
++" -d --daemon : correr o hddtemp no modo daemon TCP/IP\n"
++" (porto %d por omissão.)\n"
+ " -f --file=FILE : especificar o ficheiro de base de dados a utilizar.\n"
+-" -l --listen=addr : escutar um interface especÃfico (no modo daemon TCP/IP).\n"
++" -l --listen=addr : escutar um interface especÃfico (no modo daemon TCP/"
++"IP).\n"
+ " -n --numeric : escrever apenas a temperatura.\n"
+ " -p --port=# : port para escutar (no modo daemon TCP/IP).\n"
+-" -s --separator=C : separador a utilizar entre campos (no modo daemon TCP/IP).\n"
+-" -S --syslog=s : registar a temperatura para o syslog a cada s segundos.\n"
++" -s --separator=C : separador a utilizar entre campos (no modo daemon "
++"TCP/IP).\n"
++" -S --syslog=s : registar a temperatura para o syslog a cada s "
++"segundos.\n"
+ " -q --quiet : não verificar se o disco é suportado.\n"
+ " -v --version : mostrar o número da versão do hddtemp.\n"
+ " -w --wake-up : acordar o disco se necessário.\n"
+@@ -177,58 +157,93 @@
+ "\n"
+ "Relatar bugs ou novos discos para <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "hddtemp versão %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "ERRO: intervalo inválido.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+-msgstr "Número de argumentos insuficiente: tem de especificar pelo menos um disco.\n"
++msgstr ""
++"Número de argumentos insuficiente: tem de especificar pelo menos um disco.\n"
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+-msgstr "ERRO: não pode utilizar em conjunto as opções --debug e --daemon ou --syslog.\n"
++msgstr ""
++"ERRO: não pode utilizar em conjunto as opções --debug e --daemon ou --"
++"syslog.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+-msgstr "ERRO: %s: não é possÃvel determinar o tipo do bus (ou este tipo de bus é desconhecido)\n"
++msgstr ""
++"ERRO: %s: não é possÃvel determinar o tipo do bus (ou este tipo de bus é "
++"desconhecido)\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "desconhecido"
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "campo(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. não está disponÃvel"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Valor | Descrição\n"
++"------%s-------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: não pode abrir %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "ERRO: erro de sintaxe na linha %1$d em %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr " ERRO: a linha execedeu %1$d caracteres em %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr "detecção de log falhou: %s"
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "AVISO: O disco %s não parece estar na base de dados de discos suportados\n"
++#~ "AVISO: Mas ao utilizar um valor usual, relata alguma coisa.\n"
++#~ "AVISO: Note que a temperatura mostrada pode estar errada.\n"
++#~ "AVISO: Veja as opções --help, --debug e --frivebase.\n"
++#~ "AVISO: E não se esqueça de adicionar o seu disco a hddtemp.db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "campo(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/de.po
++++ hddtemp-0.3-beta15/po/de.po
+@@ -0,0 +1,250 @@
++# German translation of hddtemp.
++# Copyright (C) 2008 Free Software Foundation, Inc.
++# This file is distributed under the same license as the hddtemp package.
++# Vinzenz Vietzke <vinz@v1nz.org>, 2008.
++# ,
++#
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta15-44\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
++"PO-Revision-Date: 2011-08-30 16:40+0200\n"
++"Last-Translator: Vinzenz Vietzke <vinz@v1nz.org>\n"
++"Language-Team: <debian-l10n-german@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit"
++
++#: src/hddtemp.c:156
++#, c-format
++msgid ""
++"\n"
++"================= hddtemp %s ==================\n"
++"Model: %s\n"
++"\n"
++msgstr ""
++"\n"
++"================= hddtemp %s ==================\n"
++"Modell: %s\n"
++"\n"
++
++#: src/hddtemp.c:189
++#, c-format
++msgid ""
++"WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
++"WARNING: This doesn't mean it hasn't got one.\n"
++"WARNING: If you are sure it has one, please contact me (hddtemp@guzu."
++"net).\n"
++"WARNING: See --help, --debug and --drivebase options.\n"
++msgstr ""
++"WARNUNG: Laufwerk %s scheint keinen Temperatur-Sensor zu haben.\n"
++"WARNUNG: Das bedeutet nicht, dass es keinen besitzt.\n"
++"WARNUNG: Falls Sie sicher sind, dass es einen besitzt, kontaktieren Sie "
++"mich bitte (hddtemp@guzu.net).\n"
++"WARNUNG: Siehe Optionen --help, --debug und --drivebase.\n"
++
++#: src/hddtemp.c:197
++#, c-format
++msgid "%s: %s: no sensor\n"
++msgstr "%s: %s: kein Sensor\n"
++
++#: src/hddtemp.c:211
++#, c-format
++msgid "%s: %s: %d%sC or %sF\n"
++msgstr "%s: %s: %d%s°C oder %s°F\n"
++
++#: src/hddtemp.c:235
++#, c-format
++msgid "%s: %s: drive is sleeping\n"
++msgstr "%s: %s: Laufwerk schläft\n"
++
++#: src/hddtemp.c:242
++#, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
++msgstr ""
++"%s: %s: Laufwerk unterstützt, aber es hat keinen Temperatur-Sensor.\n"
++
++#: src/hddtemp.c:246
++#, c-format
++msgid "ERROR: %s: %s: unknown returned status\n"
++msgstr "FEHLER: %s: %s: zurückgegebener Status unbekannt\n"
++
++#: src/hddtemp.c:261
++#, c-format
++msgid ""
++"\n"
++"If one of the field value seems to match the temperature, be sure to read\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
++msgstr ""
++"\n"
++"Falls einer der Feldwerte der Temperatur zu entsprechen scheint, stellen "
++"Sie\n"
++"sicher, die hddtemp-Handbuchseite gelesen zu haben, bevor Sie einen "
++"Bericht\n"
++"senden (Abschnitt BERICHT). Danke.\n"
++
++#: src/hddtemp.c:338
++#, c-format
++msgid "ERROR: invalid separator.\n"
++msgstr "FEHLER: ungültiges Trennzeichen.\n"
++
++#: src/hddtemp.c:349
++#, c-format
++msgid "ERROR: invalid port number.\n"
++msgstr "FEHLER: ungültige Portnummer.\n"
++
++#: src/hddtemp.c:371
++#, c-format
++msgid ""
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
++"\n"
++" hddtemp displays the temperature of drives supplied in argument.\n"
++" Drives must support S.M.A.R.T.\n"
++"\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
++" -b --drivebase : display database file content that allow hddtemp "
++"to\n"
++" recognize supported drives.\n"
++" -D --debug : display various S.M.A.R.T. fields and their "
++"values.\n"
++" Useful to find a value that seems to match the\n"
++" temperature and/or to send me a report.\n"
++" (done for every drive supplied).\n"
++" -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
++"default.)\n"
++" -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
++" -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
++"mode).\n"
++" -n --numeric : print only the temperature.\n"
++" -p --port=# : port to listen to (in TCP/IP daemon mode).\n"
++" -s --separator=C : separator to use between fields (in TCP/IP daemon "
++"mode).\n"
++" -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
++" -q --quiet : do not check if the drive is supported.\n"
++" -v --version : display hddtemp version number.\n"
++" -w --wake-up : wake-up the drive if need.\n"
++" -4 : listen on IPv4 sockets only.\n"
++" -6 : listen on IPv6 sockets only.\n"
++"\n"
++"Report bugs or new drives to <hddtemp@guzu.net>.\n"
++msgstr ""
++" Verwendung: hddtemp [OPTIONEN] [TYP:]LAUFWERK1 [[TYP:]LAUFWERK2]...\n"
++"\n"
++" hddtemp zeigt die Temperatur der via Argument angegeben Laufwerke.\n"
++" Laufwerke müssen S.M.A.R.T. unterstützen.\n"
++"\n"
++" TYP kann SATA, PATA oder SCSI sein. Falls ausgelassen, wird hddtemp \n"
++" versuchen, diesen zu erraten.\n"
++"\n"
++" -b --drivebase : Datenbank-Datei-Inhalt anzeigen, der hddtemp "
++"erlaubt\n"
++" unterstützte Laufwerke zu erkennen.\n"
++" -D --debug : verschiedene S.M.A.R.T.-Felder und deren Werte "
++"anzeigen.\n"
++" Nützlich, um Werte zu finden, die der Temperatur "
++"entsprechen\n"
++" und/oder um mir einen Bericht zu senden.\n"
++" (bereits erledigt für jedes bereitgestellte "
++"Laufwerk).\n"
++" -d --daemon : hddtemp im TCP/IP-Daemon-Modus ausführen "
++"(StandardmäÃig Port %d)\n"
++" -f --file=DATEI : zu verwendende Datenbank-Datei festlegen.\n"
++" -F --foreground : nicht daemonisieren, im Vordergrund bleiben.\n"
++" -l --listen=addr : auf einer bestimmten Schnittstelle auf Anfragen "
++"warten (im TCP/IP-Daemon-Modus).\n"
++" -n --numeric : nur die Temperatur ausgeben.\n"
++" -p --port=# : Port, auf dem auf Anfragen gewartet werden soll "
++"(im TCP/IP-Daemon-Modus).\n"
++" -s --separator=C : Trennzeichen zur Verwendung zwischen Feldern (im "
++"TCP/IP-Daemon-Modus).\n"
++" -S --syslog=s : Temperatur alle s Sekunden in das syslog "
++"eintragen.\n"
++" -u --unit=[C|F] : Ausgabe der Temperatur entweder in Celsius oder "
++"Fahrenheit erzwingen.\n"
++" -q --quiet : nicht prüfen, ob das Laufwerk unterstützt wird.\n"
++" -v --version : Versionsnummer von hddtemp anzeigen.\n"
++" -w --wake-up : Laufwerk bei Bedarf aufwecken.\n"
++" -4 : nur auf IPv4-Sockets auf Anfragen warten.\n"
++" -6 : nur auf IPv6-Sockets auf Anfragen warten.\n"
++"\n"
++"Fehler oder neue Laufwerke an <hddtemp@guzu.net> melden.\n"
++
++#: src/hddtemp.c:402
++#, c-format
++msgid "hddtemp version %s\n"
++msgstr "hddtemp Version %s\n"
++
++#: src/hddtemp.c:418
++#, c-format
++msgid "ERROR: invalid interval.\n"
++msgstr "FEHLER: ungültiges Intervall.\n"
++
++#: src/hddtemp.c:438
++#, c-format
++msgid "Too few arguments: you must specify one drive, at least.\n"
++msgstr "Zu wenige Argumente: Sie müssen mindestens ein Laufwerk angeben.\n"
++
++#: src/hddtemp.c:448
++#, c-format
++msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
++msgstr ""
++"FEHLER: kann Optionen --debug und --daemon oder --syslog nicht zusammen "
++"verwenden.\n"
++
++#: src/hddtemp.c:505
++#, c-format
++msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
++msgstr ""
++"FEHLER: %s: kann Bus-Typ nicht ermitteln (oder dieser Bus-Typ ist "
++"unbekannt)\n"
++
++#: src/ata.c:66 src/scsi.c:64
++msgid "unknown"
++msgstr "unbekannt"
++
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
++#, c-format
++msgid "S.M.A.R.T. not available"
++msgstr "S.M.A.R.T. nicht verfügbar"
++
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Wert | Beschreibung\n"
++"------%s---------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
++#, c-format
++msgid "hddtemp: can't open %1$s: %2$s\n"
++msgstr "hddtemp: kann %1$s nicht öffnen: %2$s\n"
++
++#: src/db.c:250
++#, c-format
++msgid "ERROR: syntax error at line %1$d in %2$s\n"
++msgstr "FEHLER: Syntaxfehler in Zeile %1$d in %2$s\n"
++
++#: src/db.c:257
++#, c-format
++msgid " ERROR: line exceed %1$d characters in %2$s.\n"
++msgstr " FEHLER: Zeile überschreitet %1$d Zeichen in %2$s.\n"
++
++#: src/scsi.c:111 src/scsi.c:129
++#, c-format
++msgid "log sense failed : %s"
++msgstr "Protokoll-Erkennung fehlgeschlagen : %s"
+--- hddtemp-0.3-beta15.orig/po/LINGUAS
++++ hddtemp-0.3-beta15/po/LINGUAS
+@@ -1,2 +1,2 @@
+ # Set of available languages.
+-fr pt ru sv
++de fr pt ru sv
+--- hddtemp-0.3-beta15.orig/po/hddtemp.pot
++++ hddtemp-0.3-beta15/po/hddtemp.pot
+@@ -1,35 +1,22 @@
+-
+-# Copyright (C) 2006 Free Software Foundation, Inc.
+-# This file is distributed under the same license as the 'hddtemp' package.
+-# Emmanuel VARAGNAT <hddtemp@guzu.net>, 2006.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR Free Software Foundation, Inc.
++# 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: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+-"Last-Translator: Emmanuel Varagnat <hddtemp@guzu.net>\n"
++"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+ "Language-Team: LANGUAGE <LL@li.org>\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=CHARSET\n"
+ "Content-Transfer-Encoding: 8bit\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr ""
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -38,7 +25,7 @@
+ "\n"
+ msgstr ""
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -47,67 +34,59 @@
+ "WARNING: See --help, --debug and --drivebase options.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:192
+-#, c-format
+-msgid "%s: %s: no sensor\n"
+-msgstr ""
+-
+ #: src/hddtemp.c:197
+ #, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
++msgid "%s: %s: no sensor\n"
+ msgstr ""
+
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr ""
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr ""
+
+-#: src/hddtemp.c:217
++#: src/hddtemp.c:242
+ #, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr ""
+
+-#: src/hddtemp.c:235
++#: src/hddtemp.c:261
+ #, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:329
++#: src/hddtemp.c:371
+ #, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -117,6 +96,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -124,6 +104,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -133,58 +115,69 @@
+ "Report bugs or new drives to <hddtemp@guzu.net>.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr ""
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr ""
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr ""
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
++msgid "S.M.A.R.T. not available"
+ msgstr ""
+
+-#: src/ata.c:167
+-msgid "S.M.A.R.T. not available"
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
+ msgstr ""
+
+-#: src/db.c:180
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr ""
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr ""
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr ""
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr ""
+--- hddtemp-0.3-beta15.orig/src/sata.c
++++ hddtemp-0.3-beta15/src/sata.c
+@@ -118,11 +118,22 @@
+ int i;
+ u16 * p;
+
+- if(dsk->db_entry && dsk->db_entry->attribute_id == 0) {
++ if(dsk->db_entry->attribute_id == 0) {
+ close(dsk->fd);
+ dsk->fd = -1;
+ return GETTEMP_NOSENSOR;
+ }
++
++ switch(ata_get_powermode(dsk->fd)) {
++ case PWM_STANDBY:
++ case PWM_SLEEPING:
++ if (!wakeup)
++ return GETTEMP_DRIVE_SLEEP;
++ case PWM_UNKNOWN:
++ case PWM_ACTIVE: /* active or idle */
++ default:
++ break;
++ }
+
+ /* get SMART values */
+ if(sata_enable_smart(dsk->fd) != 0) {
+@@ -154,24 +165,15 @@
+ }
+
+ /* temperature */
+- if(dsk->db_entry && dsk->db_entry->attribute_id > 0)
+- field = sata_search_temperature(values, dsk->db_entry->attribute_id);
+- else
+- field = sata_search_temperature(values, DEFAULT_ATTRIBUTE_ID);
++ field = sata_search_temperature(values, dsk->db_entry->attribute_id);
+
+ if(field)
+ dsk->value = *(field+3);
+
+ if(dsk->db_entry && dsk->value != -1)
+ return GETTEMP_KNOWN;
+- else {
+- if(dsk->value != -1) {
+- return GETTEMP_GUESS;
+- }
+- else {
+- return GETTEMP_UNKNOWN;
+- }
+- }
++ else
++ return GETTEMP_UNKNOWN;
+
+ /* never reached */
+ }
+--- hddtemp-0.3-beta15.orig/src/satacmds.c
++++ hddtemp-0.3-beta15/src/satacmds.c
+@@ -39,7 +39,7 @@
+ #include <sys/ioctl.h>
+ #include <scsi/sg.h>
+ #include <linux/hdreg.h>
+-#include <netinet/in.h>
++#include <byteswap.h>
+
+ // Application specific includes
+ #include "satacmds.h"
+@@ -80,8 +80,8 @@
+
+ ret = scsi_SG_IO(device, cdb, sizeof(cdb), buffer, cmd[3] * 512, sense, sizeof(sense), dxfer_direction);
+
+- /* Verify SATA magics */
+- if (sense[0] != 0x72 || sense[7] != 0x0e || sense[9] != 0x0e || sense[10] != 0x00)
++ /* Verify SATA magic */
++ if (sense[0] != 0x72)
+ return 1;
+ else
+ return ret;
+@@ -95,10 +95,10 @@
+ p = s;
+ end = &s[bytecount & ~1]; /* bytecount must be even */
+
+- /* convert from big-endian to host byte order */
++ /* convert from big-endian to string order */
+ for (p = end ; p != s;) {
+ unsigned short *pp = (unsigned short *) (p -= 2);
+- *pp = ntohs(*pp);
++ *pp = bswap_16(*pp);
+ }
+
+ /* strip leading blanks */
+--- hddtemp-0.3-beta15.orig/src/backtrace.c
++++ hddtemp-0.3-beta15/src/backtrace.c
+@@ -16,9 +16,10 @@
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
++#define _GNU_SOURCE
+ #include <features.h>
+
+-#if defined(__i386__) && defined(__GLIBC__)
++#if (defined(__i386__) || defined(__x86_64__)) && defined(__GLIBC__)
+
+ #include <execinfo.h>
+
+@@ -31,8 +32,12 @@
+ #include <bits/sigcontext.h>
+ #include <sys/param.h>
+
+-#define __USE_GNU
+ #include <ucontext.h>
++#if defined(__i386__)
++# define REG_IP REG_EIP
++#elif defined(__x86_64__)
++# define REG_IP REG_RIP
++#endif
+
+ #define MAX_BTSIZE 64
+
+@@ -42,7 +47,6 @@
+ static char **messages = NULL;
+ static size_t btsize = 0;
+ static size_t i;
+- static unsigned int old_eip, old_ebp;
+ static char *strerr = "???";
+ static FILE *fstrm;
+
+@@ -61,10 +65,10 @@
+ SIC_CASE(SEGV_MAPERR);
+ SIC_CASE(SEGV_ACCERR);
+ }
+- fprintf(fstrm, "=== SEGFAULT (%s) : invalid access to %p, in 0x%08x\n",
++ fprintf(fstrm, "=== SEGFAULT (%s) : invalid access to %p, in %p\n",
+ strerr,
+ ist->si_addr,
+- puc->uc_mcontext.gregs[REG_EIP]);
++ (void*)puc->uc_mcontext.gregs[REG_IP]);
+ break;
+ case SIGILL:
+ switch(ist->si_code) {
+@@ -77,10 +81,10 @@
+ SIC_CASE(ILL_COPROC);
+ SIC_CASE(ILL_BADSTK);
+ }
+- fprintf(fstrm, "=== ILLEGAL INSTR (%s) : invalid access to %p, in 0x%08x\n",
++ fprintf(fstrm, "=== ILLEGAL INSTR (%s) : invalid access to %p, in %p\n",
+ strerr,
+ ist->si_addr,
+- puc->uc_mcontext.gregs[REG_EIP]);
++ (void*)puc->uc_mcontext.gregs[REG_IP]);
+ break;
+ case SIGBUS:
+ switch(ist->si_code) {
+@@ -88,10 +92,10 @@
+ SIC_CASE(BUS_ADRERR);
+ SIC_CASE(BUS_OBJERR);
+ }
+- fprintf(fstrm, "=== BUS ERROR (%p) : invalid access to %p, in 0x%08x\n",
++ fprintf(fstrm, "=== BUS ERROR (%p) : invalid access to %p, in %p\n",
+ strerr,
+ ist->si_addr,
+- puc->uc_mcontext.gregs[REG_EIP]);
++ (void*)puc->uc_mcontext.gregs[REG_IP]);
+ break;
+ }
+ fflush(fstrm);
+@@ -101,7 +105,7 @@
+ /*
+ old_eip = *(unsigned int*)((void*)&n-4);
+ old_ebp = *(unsigned int*)((void*)&n-8);
+- *(unsigned int*)((void*)&n-4) = puc->uc_mcontext.gregs[REG_EIP];
++ *(unsigned int*)((void*)&n-4) = puc->uc_mcontext.gregs[REG_IP];
+ *(unsigned int*)((void*)&n-8) = puc->uc_mcontext.gregs[REG_EBP];
+
+ btsize = backtrace(btinfo, MAX_BTSIZE);
+@@ -111,14 +115,14 @@
+ */
+
+ btsize = backtrace(btinfo, MAX_BTSIZE);
+- btinfo[1] = (void*) puc->uc_mcontext.gregs[REG_EIP];
++ btinfo[1] = (void*) puc->uc_mcontext.gregs[REG_IP];
+
+ messages = backtrace_symbols(btinfo, btsize);
+
+ for(i = 1;
+ i < btsize;
+ i++)
+- fprintf(fstrm, "[%d] #%d: %s\n", getpid(), i, messages[i]);
++ fprintf(fstrm, "[%d] #%zu: %s\n", getpid(), i, messages[i]);
+ fflush(fstrm);
+ fclose(fstrm);
+
+--- hddtemp-0.3-beta15.orig/src/daemon.c
++++ hddtemp-0.3-beta15/src/daemon.c
+@@ -163,19 +163,16 @@
+
+ switch(dsk->ret) {
+ case GETTEMP_NOT_APPLICABLE:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cNA%c*",
+ dsk->drive, separator,
+ dsk->model, separator,
+- "NA", separator,
+- '*');
++ separator);
+ break;
+- case GETTEMP_GUESS:
+ case GETTEMP_UNKNOWN:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cUNK%c*",
+ dsk->drive, separator,
+- dsk->model, separator,
+- "UNK", separator,
+- '*');
++ dsk->model, separator,
++ separator);
+ break;
+ case GETTEMP_KNOWN:
+ n = snprintf(msg, sizeof(msg), "%s%c%s%c%d%c%c",
+@@ -185,26 +182,23 @@
+ get_unit(dsk));
+ break;
+ case GETTEMP_NOSENSOR:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cNOS%c*",
+ dsk->drive, separator,
+ dsk->model, separator,
+- "NOS", separator,
+- '*');
++ separator);
+ break;
+ case GETTEMP_DRIVE_SLEEP:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cSLP%c*",
+ dsk->drive, separator,
+ dsk->model, separator,
+- "SLP", separator,
+- '*');
++ separator);
+ break;
+ case GETTEMP_ERROR:
+ default:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cERR%c*",
+ dsk->drive, separator,
+ (dsk->model) ? dsk->model : "???", separator,
+- "ERR", separator,
+- '*');
++ separator);
+ break;
+ }
+ write(cfd,&separator, 1);
+@@ -222,14 +216,11 @@
+ for(dsk = ldisks; dsk; dsk = dsk->next) {
+ switch(dsk->ret) {
+ case GETTEMP_KNOWN:
+- case GETTEMP_GUESS:
+- value_to_unit(dsk);
+-
+ syslog(LOG_INFO, "%s: %s: %d %c",
+ dsk->drive,
+ dsk->model,
+- dsk->value,
+- dsk->db_entry->unit);
++ value_to_unit(dsk),
++ get_unit(dsk));
+ break;
+ case GETTEMP_DRIVE_SLEEP:
+ syslog(LOG_WARNING, _("%s: %s: drive is sleeping"),
+@@ -270,28 +261,30 @@
+ fd_set deffds;
+ time_t next_time;
+
+- switch(fork()) {
+- case -1:
+- perror("fork");
+- exit(2);
+- break;
+- case 0:
+- break;
+- default:
+- exit(0);
+- }
+-
+- setsid();
+-
+- switch(fork()) {
+- case -1:
+- perror("fork");
+- exit(2);
+- break;
+- case 0:
+- break;
+- default:
+- exit(0);
++if (!foreground) {
++ switch(fork()) {
++ case -1:
++ perror("fork");
++ exit(2);
++ break;
++ case 0:
++ break;
++ default:
++ exit(0);
++ }
++
++ setsid();
++
++ switch(fork()) {
++ case -1:
++ perror("fork");
++ exit(2);
++ break;
++ case 0:
++ break;
++ default:
++ exit(0);
++ }
+ }
+ chdir("/");
+ umask(0);
+--- hddtemp-0.3-beta15.orig/src/hddtemp.c
++++ hddtemp-0.3-beta15/src/hddtemp.c
+@@ -75,7 +75,7 @@
+ char separator = SEPARATOR;
+
+ struct bustype * bus[BUS_TYPE_MAX];
+-int tcp_daemon, debug, quiet, numeric, wakeup, af_hint;
++int tcp_daemon, debug, quiet, numeric, wakeup, foreground, af_hint;
+
+ static enum { DEFAULT, CELSIUS, FAHRENHEIT } unit;
+
+@@ -194,23 +194,7 @@
+ if (numeric && quiet)
+ printf("0\n");
+ else
+- printf(_("%s: %s: no sensor\n"), dsk->drive, dsk->model);
+-
+- break;
+- case GETTEMP_GUESS:
+-
+- if(!quiet)
+- fprintf(stderr,
+- _("WARNING: Drive %s doesn't appear in the database of supported drives\n"
+- "WARNING: But using a common value, it reports something.\n"
+- "WARNING: Note that the temperature shown could be wrong.\n"
+- "WARNING: See --help, --debug and --drivebase options.\n"
+- "WARNING: And don't forget you can add your drive to hddtemp.db\n"), dsk->drive);
+-
+- if (! numeric)
+- printf(_("%s: %s: %d%sC or %sF\n"), dsk->drive, dsk->model, dsk->value, degree, degree);
+- else
+- printf("%d\n", value_to_unit(dsk));
++ fprintf(stderr, _("%s: %s: no sensor\n"), dsk->drive, dsk->model);
+
+ break;
+ case GETTEMP_KNOWN:
+@@ -232,14 +216,14 @@
+ if (numeric && quiet)
+ printf("0\n");
+ else
+- printf(_("%s: %s: drive is sleeping\n"), dsk->drive, dsk->model);
++ fprintf(stderr, _("%s: %s: drive is sleeping\n"), dsk->drive, dsk->model);
+
+ break;
+ case GETTEMP_NOSENSOR:
+ if (numeric && quiet)
+ printf("0\n");
+ else
+- printf(_("%s: %s: drive supported, but it doesn't have a temperature sensor.\n"), dsk->drive, dsk->model);
++ fprintf(stderr, _("%s: %s: drive supported, but it doesn't have a temperature sensor.\n"), dsk->drive, dsk->model);
+
+ break;
+ default:
+@@ -268,8 +252,9 @@
+
+ int main(int argc, char* argv[]) {
+ int i, c, lindex = 0, db_loaded = 0;
++ int ret = 0;
+ int show_db;
+- struct disk * ldisks;
++ struct disk * ldisks;
+
+ backtrace_sigsegv();
+ backtrace_sigill();
+@@ -279,7 +264,7 @@
+ bindtextdomain (PACKAGE, LOCALEDIR);
+ textdomain (PACKAGE);
+
+- show_db = debug = numeric = quiet = wakeup = af_hint = syslog_interval = 0;
++ show_db = debug = numeric = quiet = wakeup = af_hint = syslog_interval = foreground = 0;
+ unit = DEFAULT;
+ portnum = PORT_NUMBER;
+ listen_addr = NULL;
+@@ -294,6 +279,7 @@
+ {"drivebase", 0, NULL, 'b'},
+ {"debug", 0, NULL, 'D'},
+ {"file", 1, NULL, 'f'},
++ {"foreground", 0, NULL, 'F'},
+ {"listen", 1, NULL, 'l'},
+ {"version", 0, NULL, 'v'},
+ {"port", 1, NULL, 'p'},
+@@ -305,7 +291,7 @@
+ {0, 0, 0, 0}
+ };
+
+- c = getopt_long (argc, argv, "bDdf:l:hp:qs:u:vnw46S:", long_options, &lindex);
++ c = getopt_long (argc, argv, "bDdf:l:hp:qs:u:vnw46FS:", long_options, &lindex);
+ if (c == -1)
+ break;
+
+@@ -382,12 +368,13 @@
+ " (done for every drive supplied).\n"
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++ " -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon mode).\n"
+ " -n --numeric : print only the temperature.\n"
+ " -p --port=# : port to listen to (in TCP/IP daemon mode).\n"
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
+- " -u --unit=[C|F] : force output temperature either in Celius or Fahrenheit.\n"
++ " -u --unit=[C|F] : force output temperature either in Celsius or Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -418,6 +405,9 @@
+ }
+ }
+ break;
++ case 'F':
++ foreground = 1;
++ break;
+ default:
+ exit(1);
+ }
+@@ -489,6 +479,7 @@
+ if( (dsk->fd = open(dsk->drive, O_RDONLY | O_NONBLOCK)) < 0) {
+ snprintf(dsk->errormsg, MAX_ERRORMSG_SIZE, "open: %s\n", strerror(errno));
+ dsk->type = ERROR;
++ ret = 1;
+ continue;
+ }
+
+@@ -501,6 +492,7 @@
+
+ ldisks = dsk->next;
+ free(dsk);
++ ret = 1;
+ continue;
+ }
+
+@@ -514,11 +506,17 @@
+ db_loaded = 1;
+ }
+
++ dsk->db_entry = (struct harddrive_entry *)malloc(sizeof(struct harddrive_entry));
+ dbe = is_a_supported_drive(dsk->model);
+- if(dbe) {
+- dsk->db_entry = (struct harddrive_entry *)malloc(sizeof(struct harddrive_entry));
++ if(dbe)
+ memcpy(dsk->db_entry, dbe, sizeof(struct harddrive_entry));
+- }
++ else {
++ dsk->db_entry->regexp = "";
++ dsk->db_entry->description = "";
++ dsk->db_entry->attribute_id = DEFAULT_ATTRIBUTE_ID;
++ dsk->db_entry->unit = 'C';
++ dsk->db_entry->next = NULL;
++ }
+ }
+ }
+
+@@ -530,5 +528,5 @@
+ do_direct_mode(ldisks);
+ }
+
+- return 0;
++ return ret;
+ }
+--- hddtemp-0.3-beta15.orig/src/ata.c
++++ hddtemp-0.3-beta15/src/ata.c
+@@ -75,7 +75,7 @@
+ int i;
+ u16 * p;
+
+- if(dsk->db_entry && dsk->db_entry->attribute_id == 0) {
++ if(dsk->db_entry->attribute_id == 0) {
+ close(dsk->fd);
+ dsk->fd = -1;
+ return GETTEMP_NOSENSOR;
+@@ -140,24 +140,15 @@
+ */
+
+ /* temperature */
+- if(dsk->db_entry && dsk->db_entry->attribute_id > 0)
+- field = ata_search_temperature(values, dsk->db_entry->attribute_id);
+- else
+- field = ata_search_temperature(values, DEFAULT_ATTRIBUTE_ID);
++ field = ata_search_temperature(values, dsk->db_entry->attribute_id);
+
+ if(field)
+ dsk->value = *(field+3);
+
+- if(dsk->db_entry && dsk->value != -1)
++ if(dsk->value != -1)
+ return GETTEMP_KNOWN;
+- else {
+- if(dsk->value != -1) {
+- return GETTEMP_GUESS;
+- }
+- else {
+- return GETTEMP_UNKNOWN;
+- }
+- }
++ else
++ return GETTEMP_UNKNOWN;
+
+ /* never reached */
+ }
+--- hddtemp-0.3-beta15.orig/src/hddtemp.h
++++ hddtemp-0.3-beta15/src/hddtemp.h
+@@ -39,8 +39,6 @@
+ GETTEMP_ERROR, /* Error */
+ GETTEMP_NOT_APPLICABLE, /* */
+ GETTEMP_UNKNOWN, /* Drive is not in database */
+- GETTEMP_GUESS, /* Not in database, but something was guessed, user must
+- check that the temperature returned is correct */
+ GETTEMP_KNOWN, /* Drive appear in database */
+ GETTEMP_NOSENSOR, /* Drive appear in database but is known to have no sensor */
+ GETTEMP_DRIVE_SLEEP /* Drive is sleeping */
+@@ -78,7 +76,7 @@
+
+ extern struct bustype * bus[BUS_TYPE_MAX];
+ extern char errormsg[MAX_ERRORMSG_SIZE];
+-extern int tcp_daemon, debug, quiet, wakeup, af_hint;
++extern int tcp_daemon, debug, quiet, wakeup, af_hint, foreground;
+ extern char separator;
+ extern long portnum, syslog_interval;
+ extern char * listen_addr;
+--- hddtemp-0.3-beta15.orig/src/scsicmds.c
++++ hddtemp-0.3-beta15/src/scsicmds.c
+@@ -147,6 +147,7 @@
+ return 1;
+ else {
+ scsi_fixstring(buffer + 8, 24);
++ buffer[32] = 0;
+ return 0;
+ }
+ }
diff --git a/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb b/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb
new file mode 100644
index 0000000..fc38d86
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb
@@ -0,0 +1,30 @@
+SUMMARY = "Hard disk temperature monitor daemon"
+SECTION = "console/network"
+LICENSE = "GPLv2+"
+
+SRC_URI = "http://download.savannah.nongnu.org/releases/hddtemp/hddtemp-0.3-beta15.tar.bz2 \
+ file://hddtemp-no-nls-support.patch \
+ file://hddtemp_0.3-beta15-52.diff \
+ file://hddtemp-0.3-beta15-autodetect-717479.patch \
+ file://hddtemp-db.patch;striplevel=0 \
+ file://hddtemp.db \
+ "
+
+SRC_URI[md5sum] = "8b829339e1ae9df701684ec239021bb8"
+SRC_URI[sha256sum] = "618541584054093d53be8a2d9e81c97174f30f00af91cb8700a97e442d79ef5b"
+
+LIC_FILES_CHKSUM = "file://GPL-2;md5=eb723b61539feef013de476e68b5c50a"
+
+inherit autotools gettext update-rc.d
+
+FILES_${PN} += "/usr/share/misc/hddtemp.db"
+
+do_install_append() {
+ install -d ${D}/usr/share/misc/
+ install -m 0644 ${WORKDIR}/hddtemp.db ${D}/usr/share/misc/hddtemp.db
+ install -d ${D}${sysconfdir}/init.d
+ install -m 0644 debian/init ${D}${sysconfdir}/init.d/hddtemp
+}
+
+INITSCRIPT_NAME = "hddtemp"
+INITSCRIPT_PARAMS = "start 99 2 3 4 5 . stop 20 0 1 6 ."
--
1.7.9.5
^ permalink raw reply related [flat|nested] 9+ messages in thread* [meta-oe][PATCH] hddtemp: add from OE-Classic and update
@ 2012-10-19 16:46 Paul Eggleton
2012-10-20 11:54 ` Otavio Salvador
2012-10-20 15:07 ` Otavio Salvador
0 siblings, 2 replies; 9+ messages in thread
From: Paul Eggleton @ 2012-10-19 16:46 UTC (permalink / raw)
To: openembedded-devel
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 316739 bytes --]
hddtemp is unmaintained upstream so we have to do a bit of patching. All
patches sourced from Debian/Fedora, except hddtemp-no-nls-support.patch
which came from OE-Classic.
Other improvements:
* Install initscript
* Make LICENSE more accurate
* Add LIC_FILES_CHKSUM
* inherit gettext to avoid error during configure
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
.../hddtemp-0.3-beta15-autodetect-717479.patch | 90 +
.../recipes-support/hddtemp/files/hddtemp-db.patch | 133 +
.../hddtemp/files/hddtemp-no-nls-support.patch | 66 +
meta-oe/recipes-support/hddtemp/files/hddtemp.db | 523 ++
.../hddtemp/files/hddtemp_0.3-beta15-52.diff | 7545 ++++++++++++++++++++
.../recipes-support/hddtemp/hddtemp_0.3-beta15.bb | 30 +
6 files changed, 8387 insertions(+)
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp.db
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
create mode 100644 meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch b/meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch
new file mode 100644
index 0000000..19f8380
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch
@@ -0,0 +1,90 @@
+Auto-detect disks if none specified
+
+Refer to:
+https://bugzilla.redhat.com/show_bug.cgi?id=717479
+
+diff -up hddtemp-0.3-beta15/doc/hddtemp.8~ hddtemp-0.3-beta15/doc/hddtemp.8
+--- hddtemp-0.3-beta15/doc/hddtemp.8~ 2011-08-18 00:36:05.689001470 +0300
++++ hddtemp-0.3-beta15/doc/hddtemp.8 2011-08-18 00:44:46.753006253 +0300
+@@ -19,7 +19,7 @@
+ hddtemp \- Utility to monitor hard drive temperature
+ .SH SYNOPSIS
+ .B hddtemp
+-.RI [ options ] " [type:]disk" ...
++.RI [ options ] " [[type:]disk]" ...
+ .SH "DESCRIPTION"
+ .PP
+ .B hddtemp
+@@ -35,7 +35,8 @@ You can specify one or more device drive
+ with a
+ .B type
+ like PATA, SATA or SCSI to force hddtemp too use one of these type
+-(because detection can fail).
++(because detection can fail). If no paths are specified, autodetection of
++installed drives is attempted.
+
+
+ .SH "OPTIONS"
+diff -up hddtemp-0.3-beta15/src/hddtemp.c~ hddtemp-0.3-beta15/src/hddtemp.c
+--- hddtemp-0.3-beta15/src/hddtemp.c~ 2011-08-18 00:36:05.638996861 +0300
++++ hddtemp-0.3-beta15/src/hddtemp.c 2011-08-18 00:35:55.485060798 +0300
+@@ -54,6 +54,7 @@
+ #include <linux/hdreg.h>
+ #include <ctype.h>
+ #include <assert.h>
++#include <glob.h>
+
+ // Application specific includes
+ #include "ata.h"
+@@ -255,6 +256,7 @@ int main(int argc, char* argv[]) {
+ int ret = 0;
+ int show_db;
+ struct disk * ldisks;
++ glob_t diskglob;
+
+ backtrace_sigsegv();
+ backtrace_sigill();
+@@ -419,11 +421,6 @@ int main(int argc, char* argv[]) {
+ exit(0);
+ }
+
+- if(argc - optind <= 0) {
+- fprintf(stderr, _("Too few arguments: you must specify one drive, at least.\n"));
+- exit(1);
+- }
+-
+ if(debug) {
+ /* argc = optind + 1;*/
+ quiet = 1;
+@@ -434,6 +431,23 @@ int main(int argc, char* argv[]) {
+ exit(1);
+ }
+
++ memset(&diskglob, 0, sizeof(glob_t));
++ if(argc - optind <= 0) {
++ if(glob("/dev/[hs]d[a-z]", 0, NULL, &diskglob) == 0) {
++ argc = diskglob.gl_pathc;
++ argv = diskglob.gl_pathv;
++ optind = 0;
++ } else {
++ argc = 0;
++ }
++ }
++
++ if(argc - optind <= 0) {
++ globfree(&diskglob);
++ fprintf(stderr, _("Too few arguments: you must specify one drive, at least.\n"));
++ exit(1);
++ }
++
+ init_bus_types();
+
+ /* collect disks informations */
+@@ -527,6 +541,7 @@ int main(int argc, char* argv[]) {
+ else {
+ do_direct_mode(ldisks);
+ }
++ globfree(&diskglob);
+
+ return ret;
+ }
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch b/meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch
new file mode 100644
index 0000000..a71a9dd
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch
@@ -0,0 +1,133 @@
+hddtemp database update
+
+Patch from Fedora 18 SRPM.
+
+--- ../hddtemp.db~ 2007-09-14 21:11:37.000000000 +0300
++++ ../hddtemp.db 2008-02-09 22:10:31.000000000 +0200
+@@ -80,6 +80,8 @@
+
+ "FUJITSU MHV2100AH" 194 C "FUJITSU MHV2100AH"
+ "FUJITSU MHV2100AT" 194 C "FUJITSU MHV2100AT"
++"FUJITSU MHV2100BH" 194 C "FUJITSU MHV2100BH"
++"FUJITSU MHV2060AH" 194 C "FUJITSU MHV2060AH"
+ "FUJITSU MHV2080[AB]H" 194 C "FUJITSU MHV2080AH"
+
+ "FUJITSU MPF3204AH" 194 C "Fujitsu MPF3204AH"
+@@ -325,11 +327,14 @@
+ "ST3120026A" 194 C "Seagate Barracuda V ST3120026A"
+ "ST3160021A" 194 C "Seagate Barracuda 7200.7 - ST3160021A"
+ "ST3160023(A|AS)" 194 C "Seagate Barracuda V ST3160023A and AS (160Gb, ATA100 or Serial ATA)"
++"ST316081[12](A|AS)" 194 C "Seagate Barracuda 7200.9 160GB"
+ "ST3160827AS" 194 C "Seagate Barracuda 7200.7 160GB (Serial ATA)"
+ "ST3200021A" 194 C "Seagate Barracuda 7200.7 Plus 200GB"
+ "ST3200822(A|AS)" 194 C "Seagate Barracuda 7200.7 Plus 200GB (PATA or SATA)"
+-"ST3200826A" 194 C "Seagate Barracuda 7200.8 200Gb"
++"ST3200826A" 194 C "Seagate Barracuda 7200.8 200GB"
+ "ST3250623A" 194 C "Seagate Barracuda 7200.16 250GB"
++"ST3250624AS" 194 C "Seagate Barracuda 7200.9 250GB SATA"
++"ST3250624NS" 194 C "Seagate NL35 SATA (RAID-Edition) 7200 250GB"
+ "ST3250823A" 194 C "Seagate Barracuda 7200.8 250GB"
+ "ST3250823A" 194 C "Seagate Barracuda 7200.7 Plus 250GB"
+ "ST3250823NS" 194 C "Seagate NL35 SATA (RAID-Edition) 7200 250GB"
+@@ -338,9 +343,7 @@
+ "ST3400633(A|AS)" 194 C "Seagate Barracuda 7200.7 400 GB"
+ "ST3500630NS" 194 C "Seagate"
+ "ST3400632NS" 194 C "Seagate"
+-"ST3320620AS" 194 C "Seagate Barracuda 7200.7 320 GB"
+-"ST3500630AS" 194 C "Seagate Barracuda 7200.7 500 GB"
+-"ST3802110A" 194 C "Seagate Barracuda 7200.9 80 GB"
++"ST380[28]110(A|AS)" 194 C "Seagate Barracuda 7200.9 80 GB"
+ "ST910021A" 194 C "Seagate Momentus 7200.1 100GB"
+ "ST910082[35]A" 194 C "Seagate Momentus 5400.2 100GB"
+ "ST9120821A" 194 C "Seagate Momentus 5400.2 120GB"
+@@ -351,12 +354,14 @@
+ "ST960822A" 194 C "Seagate Momentus 5400.2 60GB"
+ "ST96812AS" 194 C "Seagate Momentus 5400.2 60GB SATA"
+ "ST9808211A" 194 C "Seagate Momentus 5400.2 80GB"
++"ST98823AS" 194 C "Seagate Momentus 5400.2 80GB SATA"
+
+ ########################################
+ ############# TOSHIBA Laptops
+ ########################################
+ "MK4313MAT" 220 C "Toshiba MK4313MAT"
+ "TOSHIBA MK1032GAX" 194 C "Toshiba MK1032GAX"
++"TOSHIBA MK1032GSX" 194 C "Toshiba MK1032GSX"
+ "TOSHIBA MK1517GAP" 0 C "Toshiba MK1517GAP"
+ "TOSHIBA MK2018GAS" 226 F "Toshiba MK2018GAS"
+ "TOSHIBA MK2023GAS" 194 C "Toshiba MK2023GAS"
+@@ -377,6 +382,7 @@
+ "TOSHIBA MK6026GAX" 194 C "Toshiba MK6026GAX"
+ "TOSHIBA MK8025GAS" 194 C "Toshiba MK8025GAS"
+ "TOSHIBA MK8026GAX" 194 C "Toshiba MK8026GAX"
++"TOSHIBA MK8032GSX" 194 C "Toshiba MK8032GSX"
+
+ "MK4025GAS" 194 C "Toshiba MK4025GAS"
+
+@@ -397,7 +403,7 @@
+ "WDC WD300BB-00CAA0" 0 C "Western Digital WD300BB"
+ "WDC WD360GD-00FNA0" 194 C "Western Digital SATA Raptor 36.7GB"
+ "WDC WD400BB-00CAA0" 0 C "Western Digital 400BB-00CAA0"
+-"WDC WD400BB-00J[KH]A0" 194 C "Western Digital Caviar WD400BB"
++"WDC WD400BB-00[DJ][KH]A0" 194 C "Western Digital Caviar WD400BB"
+ "WDC WD400BB-23JHC0" 194 C "Western Digital 23JHC0"
+ #"WDC WD400BB-00GFA0" 0 C ""
+ "WDC WD400BB-55HEA0" 194 C "Western Digital Caviar WD400BB"
+@@ -416,7 +422,7 @@
+ "WDC WD600VE-75HDT0" 194 C "Western Digital 600VE-75HDT0"
+ "WDC WD600VE-00HDT0" 194 C "Western Digital 600VE-00HDT0"
+ "WDC WD740GD-00FL21.0" 194 C "Western Digital SATA Raptor"
+-"WDC WD740GD-([05]0FL[AC]0|75FLA1)" 194 C "Western Digital SATA Raptor 74GB 8MB"
++"WDC WD740GD-([05]0FL[AC][01]|75FLA1)" 194 C "Western Digital SATA Raptor 74GB 8MB"
+ "WDC WD800BB-00CAA1" 0 C "Western Digital WD800BB-00CAA1"
+ "WDC WD800BB-(00|22)DKA0" 194 C "Western Digital WD800BB 80 Go"
+ "WDC WD800BB-32CCB0" 194 C "Western Digital 800BB-32CCB0"
+@@ -428,14 +434,13 @@
+ "WDC WD800JB-00CRA1" 0 C "Western Digital Caviar WD800JB"
+ "WDC WD800JB-00(ET|FM|FS)A0" 194 C "Western Digital Caviar 80GB Special Edition 8MB"
+ "WDC WD800JB-00JJ[AC]0" 194 C "Western Digital WD800JB"
+-"WDC WD800JD-(00|55)(HK|JR)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+-"WDC WD800JD-00(HK|JN)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
++"WDC WD800JD-(00|55|75)(HK|JR|JN)[AC]0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+ "WDC WD800LB-(00|55)DNA0" 194 C "Western Digital Caviar WD800LB 80 Go ATA-100"
+ "WDC WD800VE-07HDT0" 194 C "Western Digital 800VE-07HDT0"
+ "WDC WD1200BB-00(FTA|GUA)0" 194 C "Western Digital Caviar EIDE 2MB Cache"
+-"WDC WD1200JB-00(EV|FU|GV)A0" 194 C "Western Digital Caviar 120GB Special Edition 8MB"
++"WDC WD1200JB-00(EV|FU|GV|RE)A0" 194 C "Western Digital Caviar 120GB Special Edition 8MB"
+ "WDC WD1200JB-22GVA0" 194 C "Western Digital Caviar 120GB"
+-"WDC WD1200JD-00(GBB|HBC)0" 194 C "Western Digital WD1200JD"
++"WDC WD1200JD-00(FYB|GBB|HBC)0" 194 C "Western Digital WD1200JD"
+ "WDC WD1200LB-55EDA0" 194 C "Western Digital WD1220LB"
+ "WDC WD1200SB-01KB[AC]0" 194 C "Western Digital Caviar RE (Raid Edition) 120 GB"
+ "WDC WD1600BB-00DWA0" 194 C "Western Digital Caviar WD1600BB"
+@@ -443,10 +448,11 @@
+ "WDC WD2000BB-00FTA0" 194 C "Western Digital WD2000BB"
+ "WDC WD2000JB-(00EV|32EV|34EV|00FU|00GV|55GV|98GV|00KF)A0" 194 C "Western Digital Caviar 200GB Special Edition 8MB"
+ "WDC WD2000JB-00GVC0" 194 C "Western Digital WD2000JB"
++"WDC WD2000JD-00FYB0" 194 C "Western Digital WD2000JD"
+ "WDC WD2000JS-00MHB1" 194 C "Western Digital SATA 200GB"
+ "WDC WD2500JB-(00RE|00EV|00FU|32FU|00GV|55GV)A0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+ "WDC WD2500JB-00GVC0" 194 C "Western Digital 250GB"
+-"WDC WD2500JD-(00G|32H)BB0" 194 C "Western Digital SATA Caviar 250GB Special Edition 8MB"
++"WDC WD2500JD-(00G|32H|75H)BB0" 194 C "Western Digital SATA Caviar 250GB Special Edition 8MB"
+ "WDC WD2500JD-40HBC0" 194 C "Western Digital WD2500JD-40HBC0"
+ "WDC WD2500PB-98FBA0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+ "WDC WD2500PD-00FZB1" 194 C "Western Digital WD2500PD-00FZB1"
+@@ -510,7 +516,7 @@
+ "Maxtor 7(L|V)300(F|R|S)0" 194 C "Maxtor MaXLine III 300GB 7200rpm"
+ "MAXTOR STM3320620AS" 194 C ""
+
+-"WDC WD1500ADFD-00NLR1" 194 C "Western Digital Raptor 150GB"
++"WDC WD1500ADFD-00NLR[01]" 194 C "Western Digital Raptor 150GB"
+ "WDC WD1600JS-00NCB1" 194 C "Western Digital Caviar 1600JS 160GB Sata"
+ "WDC WD1600SD-01KCC0" 194 C "Western Digital Caviar RE Serial ATA series"
+ "WDC WD2500JD-57HBC0" 194 C "Western Digital Caviar SE (Serial ATA) 250 GB"
+@@ -518,6 +524,8 @@
+ "WDC WD2500JS-41MVB1" 194 C "Western Digital SATAII Caviar 250GB Special Edition 8MB"
+ "WDC WD2500JD-00HBB0" 194 C "Western Digital SATA 250GB"
+ "WDC WD2500KS-00MJB0" 194 C "Western Digital SATA-II Caviar 250GB Special Edition 16MB"
++"WDC WD2500YD-01NVB1" 194 C "Western Digital Caviar RE 250GB 16MB"
+ "WDC WD3000JS-00PDB0" 194 C "Western Digital WD3000JS"
+-"WDC WD3200KS-00PFB0" 194 C ""
++"WDC WD3200KS-00PFB0" 194 C "Western Digital Caviar 320GB 16MB"
+ "WDC WD3200JD-22KLB0" 194 C "Western Digital Caviar SE 320GB 8MB"
++"WDC WD3200SD-01KNB0" 194 C "Western Digital Caviar RE 320GB SATA 8MB"
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch b/meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch
new file mode 100644
index 0000000..8f6b9c3
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch
@@ -0,0 +1,66 @@
+diff -ru hddtemp-0.3-beta15.orig/configure.in hddtemp-0.3-beta15/configure.in
+--- hddtemp-0.3-beta15.orig/configure.in 2005-10-17 20:14:19.000000000 +0100
++++ hddtemp-0.3-beta15/configure.in 2008-06-27 00:00:46.000000000 +0100
+@@ -17,6 +17,7 @@
+ # append the host alias to the tools for cross compiling
+ AC_HEADER_STDC
+ AC_CHECK_HEADERS(fcntl.h)
++AC_CHECK_HEADERS(iconv.h)
+ AC_CHECK_HEADERS(netinet/in.h)
+ AC_CHECK_TYPE(in_addr_t, ,[AC_DEFINE_UNQUOTED([in_addr_t], [uint32_t], [Define to 'uint32_t' if <netinet/in.h> does not define.])], [#include <netinet/in.h>])
+
+@@ -29,6 +30,8 @@
+ AM_GNU_GETTEXT
+ #AM_GNU_GETTEXT([external])
+
++AC_CHECK_FUNCS([bindtextdomain textdomain iconv])
++
+ dnl reasonable guesses for where stuff is installed
+ dnl if we don't do that now, the config.h will use ${prefix}
+ dnl for DEFAULT_DATABASE_PATH.
+diff -ru hddtemp-0.3-beta15.orig/src/hddtemp.c hddtemp-0.3-beta15/src/hddtemp.c
+--- hddtemp-0.3-beta15.orig/src/hddtemp.c 2006-04-19 03:37:35.000000000 +0100
++++ hddtemp-0.3-beta15/src/hddtemp.c 2008-06-26 23:59:40.000000000 +0100
+@@ -276,8 +276,12 @@
+ backtrace_sigbus();
+
+ setlocale (LC_ALL, "");
++#ifdef HAVE_BINDTEXTDOMAIN
+ bindtextdomain (PACKAGE, LOCALEDIR);
++#endif
++#ifdef HAVE_TEXTDOMAIN
+ textdomain (PACKAGE);
++#endif
+
+ show_db = debug = numeric = quiet = wakeup = af_hint = syslog_interval = 0;
+ unit = DEFAULT;
+diff -ru hddtemp-0.3-beta15.orig/src/utf8.c hddtemp-0.3-beta15/src/utf8.c
+--- hddtemp-0.3-beta15.orig/src/utf8.c 2006-04-19 03:37:02.000000000 +0100
++++ hddtemp-0.3-beta15/src/utf8.c 2008-06-27 00:02:15.000000000 +0100
+@@ -23,7 +23,9 @@
+
+ // Standard includes
+ #include <stdlib.h>
++#ifdef HAVE_ICONV_H
+ #include <iconv.h>
++#endif
+ #include <langinfo.h>
+ #include <locale.h>
+ #include <string.h>
+@@ -34,6 +36,7 @@
+
+ static char *iconv_from_utf8_to_locale(const char *string, const char* fallback_string)
+ {
++#ifdef HAVE_ICONV
+ const size_t buffer_inc = 80; // Increment buffer size in 80 bytes step
+ const char *charset;
+ iconv_t cd;
+@@ -93,6 +96,8 @@
+ if (dest_buffer != NULL)
+ free(dest_buffer); // free buffer
+ free(src_buffer); // free string
++#endif
++
+ return strdup(fallback_string); // and return fallback string
+ }
+
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp.db b/meta-oe/recipes-support/hddtemp/files/hddtemp.db
new file mode 100644
index 0000000..4a061cf
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp.db
@@ -0,0 +1,523 @@
+#
+# Insert a regular expression for support of the model or the serie of your hard drive.
+# If you don't know what to put in the second field, put the number
+# that appears most often for your brand :o)
+# A value of zero meens that we know that the drive doesn't have
+# a temperature sensor (you can set the unit to C or F).
+#
+############################################################################
+# The following list was found at (http://www.almico.com/forumharddisks.php)
+# If your drive is in the list send me a mail.
+#
+# Manufacturer Model Size Notes
+# FUJITSU FUJITSU MPF3102AH 10.0GB
+# FUJITSU FUJITSU MPG3204AH E 20.0GB
+# FUJITSU FUJITSU MPG3307AT 30.0GB
+# FUJITSU FUJITSU MPG3409AH 40.0GB
+# FUJITSU FUJITSU MPG3409AH EF 40.0GB
+# HITACHI HITACHI_DK23CA-10 9.8GB
+# HITACHI HITACHI_DK23CA-15 14.7GB
+# SAMSUNG SAMSUNG SV3012H 29.4GB
+# SEAGATE ST310210A 10.0GB
+# SEAGATE ST310211A 9.8GB
+# SEAGATE ST310215A 10.0GB
+# SEAGATE ST315320A 14.9GB
+# SEAGATE ST320410A 19.6GB
+# SEAGATE ST320413A 19.6GB
+# SEAGATE ST320420A 19.9GB
+# SEAGATE ST330610A 29.3GB
+# SEAGATE ST330620A 29.3GB
+# SEAGATE ST330621A 29.3GB
+# SEAGATE ST330630A 29.9GB
+# SEAGATE ST340016A 39.1GB
+# SEAGATE ST340810ACE 39.1GB
+# SEAGATE ST380020ACE 78.2GB
+# WESTERN DIGITAL WDC AC210200D 10.0GB
+# WESTERN DIGITAL WDC AC29100D 8.9GB
+# WESTERN DIGITAL WDC AC420400D 19.9GB
+# WESTERN DIGITAL WDC WD102AA 10.0GB
+#
+#################################################
+
+########################################
+############# ExcelStor drives
+########################################
+# "ExcelStor Technology CT215" ??? ? "ExcelStor CT215"
+"ExcelStor Technology J3.0" 194 C "ExcelStor Technology 3xy (xy GB)"
+"ExcelStor Technology J6.0" 194 C "ExcelStor Technology 6xy (xy GB)"
+"ExcelStor Technology J680" 194 C "ExcelStor Technology J680 (80 GB)"
+"ExcelStor Technology J860" 194 C "ExcelStor Technology J860 (60 GB)"
+"ExcelStor Technology J880" 194 C "ExcelStor Technology J880 (80 GB)"
+
+
+
+########################################
+############# Fujitsu drives
+########################################
+"FUJITSU MHM2100AT" 0 C "Fujitsu MHM2100AT"
+
+"FUJITSU MHN2150AT" 194 C "Fujitsu MHN2150AT"
+"FUJITSU MHN2200AT" 194 C "Fujitsu MHN2200AT"
+"FUJITSU MHN2300AT" 194 C "Fujitsu MHN2300AT"
+
+"FUJITSU MHR2020AT" 194 C "Fujitsu MHR2020AT"
+"FUJITSU MHR2030AT" 194 C "Fujitsu MHR2030AT"
+
+"FUJITSU MHS2030AT" 194 C "Fujitsu MHS2030AT"
+"FUJITSU MHS2040AT" 194 C "Fujitsu MHS2040AT"
+"FUJITSU MHS2060AT" 194 C "Fujitsu MHS2060AT (Apple PowerBook G4)"
+
+"FUJITSU MHT2030AC" 194 C "Fujitsu Mobile 30GB, 2MB, 4200RPM (automotive)"
+
+"FUJITSU MHT2030AT" 194 C "Fujitsu MHT2030AT"
+"FUJITSU MHT2040AH" 194 C "Fujitsu MHT2040AH"
+"FUJITSU MHT2040AT" 194 C "Fujitsu MHT2040AT"
+"FUJITSU MHT2060AH" 194 C "Fujitsu MHT2060AH"
+"FUJITSU MHT2060AT" 194 C "Fujitsu MHT2060AT"
+"FUJITSU MHT2080AH" 194 C "Fujitsu MHT2080AH"
+
+"FUJITSU MHU2100AT" 194 C "Fujitsu MHU2100AT 100GB, 8MB (4200RPM)"
+
+"FUJITSU MHV2100AH" 194 C "FUJITSU MHV2100AH"
+"FUJITSU MHV2100AT" 194 C "FUJITSU MHV2100AT"
+"FUJITSU MHV2080[AB]H" 194 C "FUJITSU MHV2080AH"
+
+"FUJITSU MPF3204AH" 194 C "Fujitsu MPF3204AH"
+
+"FUJITSU MPG3204AT.*" 194 C "Fujitsu MPG3204AT"
+"FUJITSU MPG3307AT" 194 C "Fujitsu MPG3307AT"
+"FUJITSU MPG3409AT.*" 194 C "Fujitsu MPG3409AT E"
+"FUJITSU MPG3409AH.*" 194 C "Fujitsu MPG3409AH E"
+"FUJITSU MPG3204AH" 194 C "Fujitsu MPG3204AH"
+"FUJITSU MPG3102AT E" 194 C "FUJITSU MPG3102AT E"
+
+
+
+########################################
+############# Hitachi drives
+########################################
+"HITACHI_DK13FA-40B" 194 C "Hitachi DK13FA-40B"
+"HITACHI_DK228A-65" 0 C "Hitachi DK228A-65"
+"HITACHI_DK23CA-(15|20|30|30B|75)" 194 C "Hitachi DK23CA series"
+"HITACHI_DK23DA-[234]0" 194 C "Hitachi DK23DA series"
+"HITACHI_DK23EA-[2346]0" 194 C "Hitachi DK23EA series"
+"HITACHI_DK23EB-40" 194 C "Hitachi DK23EB series"
+"HITACHI_DK23FA-[468]0" 194 C "Hitachi DK23FA series"
+"HITACHI_DK23FB-[46]0" 194 C "Hitachi DK23FB series"
+
+"HDS722516VLAT[28]0" 194 C "Hitachi Deskstar 7K250 160GB 2/8MB cache"
+"HDS722525VLAT80" 194 C "Hitachi Deskstar 7K250 200/250GB, 7200RPM, 8MB, Parallel-ATA"
+"HDS722512VLAT80" 194 C "Hitachi Deskstar 7K250 80GB"
+"HDS722540VLAT20" 194 C "Hitachi Deskstar 7K250, 40GB, 7200RPM, 2MB cache"
+"HDS722580VLAT20" 194 C "Deskstar 7K250 60GB"
+"HDS724040KLSA80" 194 C "Hitachi Deskstar 7K250 400GB, 7200RPM, 8MB, Serial-ATA"
+"HDS728080PLAT20" 194 C "Hitachi Deskstar 7K80 80GB"
+
+"HDS722525VLSA80" 194 C "Hitachi Deskstar 7K250 250GB, 7200RPM, 8MB, SATA"
+"HDS722516VLSA80" 194 C "Hitachi Deskstar 7K250 160GB 8Mo cache SATA"
+"HDS722580VLSA80" 194 C "Hitachi Deskstar 7K250 80GB SATA"
+"HDS728040PLAT20" 194 C "Hitachi Deskstar 7K80 40GB"
+
+"HDS724040KLAT80" 194 C "Hitachi Deskstar 7K400 400GB 8Mo cache PATA"
+
+"HDT7225(16|25)DLAT80" 194 C "Hitachi Deskstar T7K250 series, 7200RPM, 8MB, PATA"
+"HDT722516DLA380 V43O" 194 C "Hitachi T7K250 SATA"
+"HDT722525DLA380" 194 C "Hitachi Deskstar T7K250 250GB 8Mo cache SATAII"
+"HDT725050VLA360" 194 C "Hitachi Deskstar T7K500 500GB, 7200RPM, 16MB, SATA II"
+
+"HTE721010G9AT00" 194 C "Hitachi Travelstar 100GB (7200RPM)"
+"HTE726060M9AT00" 194 C "Hitachi Travelstar 60GB (7200RPM)"
+"HTS424030M9AT00" 194 C "Hitachi Travelstar 30GB (4200RPM)"
+"HTS424040M9AT00" 194 C "Hitachi Travelstar 4K40 40GB 2MB cache (4200RPM)"
+"HTS541010G9SA00" 194 C "Hitachi Travelstar 100GB SATA"
+"HTS541040G9AT00" 194 C "Hitachi Travelstar 40GB (5400RPM)"
+"HTS541080G9AT00" 194 C "Hitachi Travelstar 80GB (5400RPM)"
+"HTS548020M9AT00" 194 C "Hitachi Travelstar 20GB (5400RPM)"
+"HTS548030M9AT00" 194 C "Hitachi Travelstar 30GB (5400RPM)"
+"HTS548040M9AT00" 194 C "Hitachi Travelstar 40GB (5400RPM)"
+"HTS548060M9AT00" 194 C "Hitachi Travelstar 60GB (5400RPM)"
+"HTS548080M9AT00" 194 C "Hitachi Travelstar 80GB (5400RPM)"
+"HTS721080G9AT00" 194 C "Hitachi Travelstar 7K100 80GB (7200RPM)"
+"HTS726060M9AT00" 194 C "Hitachi Travelstar 60GB"
+
+
+########################################
+############# IBM drives
+########################################
+
+# DJSA serie is using F0h command to report temperature and also have
+# SMART capabilties but it was reported not to work.
+# "DJSA-2(30|32|10|20|05)" 0 C "IBM Travelstar 20GN, 32GH, 30GT series"
+
+"IBM-DARA-212000" 0 C "IBM Travelstar 12GN"
+"IBM-DTTA-35*" 0 C "IBM Deskstar 16GP serie"
+
+# according to specifications they do not seems to have sensor
+# but I prefer waiting for a report
+#"IBM-DTTA-37*" 0 C "IBM Deskstar 14GXP serie"
+
+"IBM-DJNA-35.*" 231 C "IBM Deskstar 25 GP serie"
+"IBM-DJNA-37.*" 231 C "IBM Deskstar 22 GXP serie"
+"IBM-DHEA-(34330|36480)" 0 C "IBM Deskstar 5 serie"
+"IBM-DHEA-(34331|36481|38451)" 0 C "IBM Deskstar 8 serie"
+"IBM-DPTA-37.*" 231 C "IBM Deskstar 34GXP serie"
+"IBM-DPTA-35.*" 231 C "IBM Deskstar 37GP serie"
+"IBM-DTLA-30[57]0[123467][05]" 194 C "IBM Deskstar 40GV & 75GXP series"
+"IC25N0[1234]0ATCS04-0" 194 C "IBM Travelstar 40GN serie"
+"IC25N0[24]0ATC[SX]05-0" 194 C "IBM Travelstar 40GNX serie"
+"IC25N0(10|15|20|30)ATDA04-0" 194 C "IBM Travelstar 30GN serie"
+"IC25N0[23468]0ATMR04*" 194 C "Hitachi Travelstar 80GN"
+"IC25T048ATDA05-0" 194 C "IBM Travelstar 48GH serie"
+"IC25T060ATC[SX]05-0" 194 C "IBM Travelstar 60GH serie"
+"IC35L0[12346]0AVER07" 194 C "IBM Deskstar 60GXP serie"
+"IC35L[01][02468]0AVV[AN]07*" 194 C "IBM Deskstar 120GXP serie"
+"IC35L[01][23689]0AVV207*" 194 C "IBM Deskstar 180GXP serie"
+
+########################################
+############# Maxtor drives
+########################################
+#"Maxtor 2B0[012][04568]H1" ??? C "Maxtor Fireball 541DX"
+"Maxtor 2F0[234]0[LJ]0" 194 C "Maxtor Fireball 3"
+# which one must I trust ?
+#"Maxtor 4D040H2" 9 C "Maxtor DiamondMax D540X-4D"
+#"Maxtor 4D040H2" 0 C "Maxtor 4D040H2"
+#"Maxtor 4D080H4" 12 C "Maxtor DiamondMax D540X-4D"
+#"Maxtor 4D060H3" 12 C "Maxtor DiamondMax D540X-4D"
+#"Maxtor 4D080H4" 9 C "Maxtor DiamondMax D540X-4D"
+"MAXTOR 4K0[468]0H[234]" 194 C "Maxtor DiamondMax D540X serie"
+"MAXTOR 4K020H1" 194 C "Maxtor 4K020H1"
+"Maxtor 4A300J0" 194 C "Maxtor MaxLine II 300GB 5400RPM"
+"Maxtor 4[RA](25|16|12|08|06)0[LJ]0" 194 C "Maxtor DiamondMax 16"
+"Maxtor 5(1024|1369|2049|2732|3073|4098)U(2|3|4|6|8)" 0 C "Maxtor DiamondMax Plus 40"
+"Maxtor 5A250J0" 194 C "Maxtor MaXline II 250GB 5400RPM"
+"Maxtor 5A300J0" 194 C "Maxtor 5A300J0"
+"Maxtor 5T0[24]0H[24]" 0 C "Maxtor DiamondMax Plus 60"
+"Maxtor 6E0[234]0L0" 194 C "Maxtor DiamondMax Plus 8"
+"MAXTOR 6L0[2468]0[LJ][1234]" 194 C "Maxtor DiamondMax Plus D740X family"
+"Maxtor 6V320F0" 194 C "Maxtor Diamond Max 10 SATA II 320 GB"
+"Maxtor 6Y(06|08|12|16|20|25)0[LPM]0" 194 C "Maxtor DiamondMax Plus 9"
+"Maxtor 7L300[RS]0" 194 C "Maxtor 7L300R0 MaxLine+III 300GB 7200rpm"
+"Maxtor 7Y250[PM]0" 194 C "Maxtor MaXLine Plus II 250GB 7200RPM"
+"Maxtor 94098U8" 11 C "Maxtor DiamondMax 40 94098U8"
+
+#"Maxtor 6(B|L)(08|12|16|20|25|30)0[RSPM]0" 194 C "Maxtor DiamondMax Plus 10"
+"Maxtor 6B080M0" 194 C "Maxtor DiamondMax 10 80GB 8MB SATA"
+"Maxtor 6B120M0" 194 C "Maxtor DiamondMax 10 120GB 8MB SATA"
+"Maxtor 6B160M0" 194 C "Maxtor DiamondMax 10 160GB 8MB SATA"
+"Maxtor 6B160P0" 194 C "Maxtor DiamondMax 10 160GB 8MB ATA/133"
+"Maxtor 6B200M0" 194 C "Maxtor DiamondMax 10 200GB 8MB SATA"
+"Maxtor 6B200P0" 194 C "Maxtor DiamondMax 10 200GB 8MB ATA/133"
+"Maxtor 6B250R0" 194 C "Maxtor DiamondMax 10 250GB 16MB ATA/133"
+"Maxtor 6B250S0" 194 C "Maxtor DiamondMax 10 250GB 16MB SATA"
+"Maxtor 6B300R0" 194 C "Maxtor DiamondMax 10 300GB 16MB ATA/133"
+"Maxtor 6B300S0" 194 C "Maxtor DiamondMax 10 300GB 16MB SATA"
+"Maxtor 6L080L0" 194 C "Maxtor DiamondMax 10 80GB 2MB ATA/133 RoHS"
+"Maxtor 6L080M0" 194 C "Maxtor DiamondMax 10 80GB 8MB SATA RoHS"
+"Maxtor 6L080P0" 194 C "Maxtor DiamondMax 10 80GB 8MB ATA/133 RoHS"
+"Maxtor 6L120M0" 194 C "Maxtor DiamondMax 10 120GB 8MB SATA RoHS"
+"Maxtor 6L120P0" 194 C "Maxtor DiamondMax 10 120GB 8MB ATA/133 RoHS"
+"Maxtor 6L160M0" 194 C "Maxtor DiamondMax 10 160GB 8MB SATA RoHS"
+"Maxtor 6L160P0" 194 C "Maxtor DiamondMax 10 160GB 8MB ATA/133 RoHS"
+"Maxtor 6L200M0" 194 C "Maxtor DiamondMax 10 200GB 8MB SATA RoHS"
+"Maxtor 6L200P0" 194 C "Maxtor DiamondMax 10 200GB 8MB ATA/133 RoHS"
+"Maxtor 6L250R0" 194 C "Maxtor DiamondMax 10 250GB 16MB ATA/133 RoHS"
+"Maxtor 6L250S0" 194 C "Maxtor DiamondMax 10 250GB 16MB SATA RoHS"
+"Maxtor 6L300R0" 194 C "Maxtor DiamondMax 10 300GB 16MB ATA/133 RoHS"
+"Maxtor 6L300S0" 194 C "Maxtor DiamondMax 10 300GB 16MB SATA RoHS"
+"Maxtor 6V080E0" 194 C "Maxtor DiamondMax 10 80GB 8MB SATAII RoHS"
+"Maxtor 6V160E0" 194 C "Maxtor DiamondMax 10 160GB 8MB SATAII RoHS"
+"Maxtor 6V200E0" 194 C "Maxtor DiamondMax 10 200GB 8MB SATAII RoHS"
+"Maxtor 6V250F0" 194 C "Maxtor DiamondMax 10 250GB 16MB SATAII RoHS"
+"Maxtor 6V300F0" 194 C "Maxtor DiamondMax 10 300GB 16MB SATAII RoHS"
+
+
+
+########################################
+############# Quantum drives
+########################################
+"QUANTUM FIREBALLP AS40.0" 0 C "Quantum Fireball AS40"
+"QUANTUM FIREBALL CX10.2A" 0 C "Quantum Fireball CX10.2A"
+#"QUANTUM FIREBALLlct10 20" 4 C "Quantum Fireball CT10 20GB"
+# I suspect the QUANTUM FIREBALL_TM2110A to have a sensor in field 9...
+# "QUANTUM FIREBALL_TM2110A" 9 C "Quantum Fireball TM2110A"
+
+
+
+########################################
+############# Samsung drives
+########################################
+# somenone reported a problem with the SP8004H which reports a temperature
+# 10°C below the ambient temperature
+"SAMSUNG HA(200|250)JC" 194 C "Samsung SpinPoint V120CE series"
+"SAMSUNG HD160JJ" 194 C "Samsung 160GB, 7200RPM, 8MB cache, SATA"
+"SAMSUNG HD160JJ/P" 194 C "Samsung SpinPoint P80 SD 160GB (7200RPM, 8MB cache)"
+"SAMSUNG HD[30|32|40][01]L[DJ]" 194 C "Samsung SpinPoint T133 series (300-400MB)"
+"SAMSUNG HD250KD" 194 C "Samsung SpinPoint T133 series (250 MB PATA)"
+"SAMSUNG HD321KJ" 194 C "Samsung Spinpoint T166 (7200RPM, 16MB cache) - SATA"
+"SAMSUNG HD501LJ" 194 C "Samsung HD501LJ"
+"SAMSUNG MP0(302|402|603|804)H" 194 C "Samsung SpinPoint M40 2.5inch"
+"SAMSUNG SW0434A" 0 C "Samsung SW0434A"
+"SAMSUNG SP(2001|4002|6003|8004|40A2)H" 194 C "Samsung SpinPoint P40 serie"
+"SAMSUNG SP(0612|0802|1203|1604|0812|1213|1614)N" 194 C "Samsung SpinPoint P80 serie"
+"SAMSUNG SP(0612|0802|1203|1604|0812|1213|1614)C" 194 C "Samsung SpinPoint P80 series - SATA"
+"SAMSUNG SP0411N" 194 C "Samsung SpinPoint PL40 serie"
+"SAMSUNG SP0822N" 194 C "Samsung SP0822N"
+"SAMSUNG SP(0812|1213|1614)C" 194 C "Samsung Spinpoint 160G SATA"
+"SAMSUNG SP2[05]14N" 194 C "Samsung SpinPoint P120 series (7200RPM, 8MB cache)"
+"SAMSUNG SP2[05]04C" 194 C "Samsung SpinPoint P120 series - SATA"
+"SAMSUNG SV0432A" 0 C "Samsung SV0432A"
+"SAMSUNG SV3002H" 0 C "Samsung SpinPoint V30 serie"
+"SAMSUNG SV(2001|4002|4012|6003|8004)H" 194 C "Samsung SpinPoint V40 serie"
+#"SAMSUNG SV(0221|0602|0813|1204)H" 9 C "Samsung SpinPoint V60 serie"
+#"SAMSUNG SV1204H" 194 C "Samsung 120G"
+"SAMSUNG SV(0401|0802|1203|1604)N" 194 C "Samsung SpinPoint V80 serie"
+"SAMSUNG SV4012H" 194 C "Samsung 40GB, 5400RPM, 2MB cache"
+
+########################################
+############# Seagate drives
+########################################
+"Seagate Technology 1275MB - ST31276A" 0 C "Seagate ST31276A"
+"ST3412A" 0 C "Seagate ST3412A"
+"ST38641A" 0 C "Seagate ST38641A"
+"ST310014A" 194 C "Seagate ST310014A"
+"ST310210A" 0 C "Seagate ST310210A"
+"ST310211A" 194 C "Seagate ST310211A"
+"ST310220A" 0 C "Seagate ST310220A"
+# SEAGATE ST313021A 13.0GB
+"ST313021A" 0 C "Seagate U8 ST313021A"
+"ST310240A" 0 C "Seagate Medalist 10240 Ultra ATA-3"
+"ST315320A" 194 C "Seagate ST315320A"
+"ST320423A" 0 C "Seagate U10 20423, Ultra ATA/66"
+"ST320011A" 194 C "Seagate ST320011A"
+"ST320014A" 194 C "Seagate ST320014A (5400 rpm, 20Gb)"
+"ST320410A" 194 C "Seagate ST320410A"
+"ST320413A" 194 C "Seagate ST320413A"
+"ST320414A" 194 C "Seagate ST320414A"
+"ST320420A" 194 C "Seagate Barracuda II ST320420A"
+"ST330013A" 194 C "Seagate ST330013A Barracuda ATA V 30GB, 7200 rpm"
+"ST330620A" 194 C "Seagate ST330620A"
+"ST330621A" 194 C "Seagate ST330621A"
+"ST330630A" 194 C "Seagate Barracuda ST330630A"
+"ST340014A" 194 C "Seagate Barracuda 7200.7 40Gb"
+"ST340015A" 194 C "Seagate Barracuda 5400.1 40GB"
+"ST340016A" 194 C "Seagate ST340016A"
+"ST340810A" 194 C "Seagate U Series 40810 (40Gb, Ultra ATA/100, 5400 rpm)"
+"ST340823A" 194 C "Seagate U Series 5 40823"
+"ST340824A" 194 C "Seagate Barracuda III"
+"ST360015A" 194 C "Seagate Barracuda V ST360015A"
+"ST360020A" 194 C "Seagate U Series 60020"
+"ST360021A" 194 C "Seagate Barracuda IV ST360021A"
+"ST380011A" 194 C "Seagate Barracuda 7200.7 80GB"
+"ST380012A" 194 C "Seagate ST380012A 80GB"
+"ST380013A" 194 C "Seagate Barracuda 7200.7 80GB"
+"ST380013AS" 194 C "Seagate Barracuda 7200.7 80GB (Serial ATA)"
+"ST380020A" 194 C "Seagate U Series 80020 (80Gb, Ultra ATA/100, 5400 rpm)"
+"ST380021A" 194 C "Seagate Barracuda IV ST380021A"
+"ST380022A" 194 C "Seagate Barracuda U7 80022, Ultra ATA/100"
+"ST380023A" 194 C "Seagate Barracuda V ST380023A"
+"ST380817AS" 194 C "Seagate Barracuda 7200.7 80GB - SATA"
+"ST39111A" 194 C "Seagate ST39111A (from Sun Ultra)"
+"ST3120020A" 194 C "Seagate ST3120020A"
+"ST3120022A" 194 C "Seagate Baraccuda 7200.7 120GB"
+"ST3120023A" 194 C "Seagate Barracuda V ST3120023A"
+"ST3120024A" 194 C "Seagate Barracuda V ST3120024A"
+"ST3120025ACE" 194 C "Seagate Barracuda V ST3120025ACE"
+"ST3120026A" 194 C "Seagate Barracuda V ST3120026A"
+"ST3160021A" 194 C "Seagate Barracuda 7200.7 - ST3160021A"
+"ST3160023(A|AS)" 194 C "Seagate Barracuda V ST3160023A and AS (160Gb, ATA100 or Serial ATA)"
+"ST3160827AS" 194 C "Seagate Barracuda 7200.7 160GB (Serial ATA)"
+"ST3200021A" 194 C "Seagate Barracuda 7200.7 Plus 200GB"
+"ST3200822(A|AS)" 194 C "Seagate Barracuda 7200.7 Plus 200GB (PATA or SATA)"
+"ST3200826A" 194 C "Seagate Barracuda 7200.8 200Gb"
+"ST3250623A" 194 C "Seagate Barracuda 7200.16 250GB"
+"ST3250823A" 194 C "Seagate Barracuda 7200.8 250GB"
+"ST3250823A" 194 C "Seagate Barracuda 7200.7 Plus 250GB"
+"ST3250823NS" 194 C "Seagate NL35 SATA (RAID-Edition) 7200 250GB"
+"ST3300831A" 194 C "Seagate 300GB ST3300831A"
+"ST3400832A" 194 C "Seagate Barracuda 7200.8 Plus 400GB"
+"ST3400633(A|AS)" 194 C "Seagate Barracuda 7200.7 400 GB"
+"ST3500630NS" 194 C "Seagate"
+"ST3400632NS" 194 C "Seagate"
+"ST3320620AS" 194 C "Seagate Barracuda 7200.7 320 GB"
+"ST3500630AS" 194 C "Seagate Barracuda 7200.7 500 GB"
+"ST3802110A" 194 C "Seagate Barracuda 7200.9 80 GB"
+"ST910021A" 194 C "Seagate Momentus 7200.1 100GB"
+"ST910082[35]A" 194 C "Seagate Momentus 5400.2 100GB"
+"ST9120821A" 194 C "Seagate Momentus 5400.2 120GB"
+"ST94019A" 194 C "Seagate ST94019A"
+"ST94813A" 194 C "Seagate Momentus 5400.2 40GB"
+"ST94[08]11A" 194 C "Seagate ST94011A"
+"ST960821A" 194 C "Seagate ST960821A"
+"ST960822A" 194 C "Seagate Momentus 5400.2 60GB"
+"ST96812AS" 194 C "Seagate Momentus 5400.2 60GB SATA"
+"ST9808211A" 194 C "Seagate Momentus 5400.2 80GB"
+
+########################################
+############# TOSHIBA Laptops
+########################################
+"MK4313MAT" 220 C "Toshiba MK4313MAT"
+"TOSHIBA MK1032GAX" 194 C "Toshiba MK1032GAX"
+"TOSHIBA MK1517GAP" 0 C "Toshiba MK1517GAP"
+"TOSHIBA MK2018GAS" 226 F "Toshiba MK2018GAS"
+"TOSHIBA MK2023GAS" 194 C "Toshiba MK2023GAS"
+
+"TOSHIBA MK3017GAP" 0 C "Toshiba MK3017GAP"
+"TOSHIBA MK3021GAS" 194 C "Toshiba MK3021GAS"
+"TOSHIBA MK3025GAS" 194 C "Toshiba MK3025GAS"
+
+#"TOSHIBA MK4019GAX" 222 C "Toshiba MK4019GAX"
+"TOSHIBA MK4021GAS" 194 C "Toshiba MK4021GAS"
+"TOSHIBA MK4025GAS" 194 C "Toshiba MK4025GAS 40 Go"
+"TOSHIBA MK4026GAS" 194 C "Toshiba MK4026GAS 40 Go"
+"TOSHIBA MK4032GAX" 194 C "Toshiba MK4032GAX"
+
+"TOSHIBA MK6021GAS" 194 C "Toshiba MK6021GAS"
+"TOSHIBA MK6022GAX" 194 C "Toshiba MK6022GAX"
+"TOSHIBA MK6025GAS" 194 C "Toshiba MK6025GAS"
+"TOSHIBA MK6026GAX" 194 C "Toshiba MK6026GAX"
+"TOSHIBA MK8025GAS" 194 C "Toshiba MK8025GAS"
+"TOSHIBA MK8026GAX" 194 C "Toshiba MK8026GAX"
+
+"MK4025GAS" 194 C "Toshiba MK4025GAS"
+
+
+########################################
+############# Western Digital drives
+########################################
+# WDC AC310100B and WDC AC2850F are reported not working
+# no more informations were given
+"WDC AC22000L" 0 C "Western Digital Caviar AC22000"
+"WDC AC420400D" 231 C "Western Digital Caviar AC420400D"
+"WDC AC418000D" 231 C "Western Digital AC418000D"
+"WDC WD135BA" 231 C "Western Digital WD135BA"
+
+"WDC WD100EB-00BHF0" 0 C "Western Digital 100EB-00BHF0"
+"WDC WD200BB-00AUA1" 0 C "Western Digital Caviar WD200BB"
+#"WDC WD200BB-60DGA0" 0 C "Western Digital Caviar WD200BB"
+"WDC WD300BB-00CAA0" 0 C "Western Digital WD300BB"
+"WDC WD360GD-00FNA0" 194 C "Western Digital SATA Raptor 36.7GB"
+"WDC WD400BB-00CAA0" 0 C "Western Digital 400BB-00CAA0"
+"WDC WD400BB-00J[KH]A0" 194 C "Western Digital Caviar WD400BB"
+"WDC WD400BB-23JHC0" 194 C "Western Digital 23JHC0"
+#"WDC WD400BB-00GFA0" 0 C ""
+"WDC WD400BB-55HEA0" 194 C "Western Digital Caviar WD400BB"
+"WDC WD400BB-(18CA|00DE)A0" 0 C "Western Digital Caviar WD400BB"
+"WDC WD400BB-75FJA1" 194 C "Western Digital Caviar WD400BB"
+"WDC WD400EB-00CPF0" 0 C "Western Digital 400EB-00CPF0"
+"WDC WD400JB-00(JJ|FM|FS)A0" 194 C "Western Digital Caviar 40GB Special Edition 8MB"
+"WDC WD400JB-00ETA0" 194 C "Western Digital 400JB-00ETA0"
+"WDC WD400JB-00JJC0" 194 C "Western Digital 400JB-00JJC0 40GB"
+"WDC WD400LB-00DNA0" 194 C "Western Digital 400LB-00DNA0"
+"WDC WD400UE-22HCT0" 194 C "Western Digital 40GB Notebook HDD"
+"WDC WD400VE-75HDT1" 194 C "Western Digital Scorpio 40GB"
+"WDC WD600BB-32BSA0" 0 C "Western Digital 600BB-32BSA0"
+"WDC WD600JB-00ETA0" 194 C "Western Digital 600JB-00ETA0"
+"WDC WD600LB-00DNA0" 194 C "Western Digital 60GB"
+"WDC WD600VE-75HDT0" 194 C "Western Digital 600VE-75HDT0"
+"WDC WD600VE-00HDT0" 194 C "Western Digital 600VE-00HDT0"
+"WDC WD740GD-00FL21.0" 194 C "Western Digital SATA Raptor"
+"WDC WD740GD-([05]0FL[AC]0|75FLA1)" 194 C "Western Digital SATA Raptor 74GB 8MB"
+"WDC WD800BB-00CAA1" 0 C "Western Digital WD800BB-00CAA1"
+"WDC WD800BB-(00|22)DKA0" 194 C "Western Digital WD800BB 80 Go"
+"WDC WD800BB-32CCB0" 194 C "Western Digital 800BB-32CCB0"
+"WDC WD800BB-55HEA0" 194 C "Western Digital 800BB-55HEA0"
+"WDC WD800BB-00JHA0" 194 C "Western Digital 800BB-00JHA0"
+"WDC WD800BB-00JKA0" 194 C "Western Digital 800BB-00JKA0"
+"WDC WD800BB-55JKA0" 194 C "Western Digital 800BB-55JKA0"
+"WDC WD800BB-75FRA0" 194 C "Western Digital Caviar WD800BB"
+"WDC WD800JB-00CRA1" 0 C "Western Digital Caviar WD800JB"
+"WDC WD800JB-00(ET|FM|FS)A0" 194 C "Western Digital Caviar 80GB Special Edition 8MB"
+"WDC WD800JB-00JJ[AC]0" 194 C "Western Digital WD800JB"
+"WDC WD800JD-(00|55)(HK|JR)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+"WDC WD800JD-00(HK|JN)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+"WDC WD800LB-(00|55)DNA0" 194 C "Western Digital Caviar WD800LB 80 Go ATA-100"
+"WDC WD800VE-07HDT0" 194 C "Western Digital 800VE-07HDT0"
+"WDC WD1200BB-00(FTA|GUA)0" 194 C "Western Digital Caviar EIDE 2MB Cache"
+"WDC WD1200JB-00(EV|FU|GV)A0" 194 C "Western Digital Caviar 120GB Special Edition 8MB"
+"WDC WD1200JB-22GVA0" 194 C "Western Digital Caviar 120GB"
+"WDC WD1200JD-00(GBB|HBC)0" 194 C "Western Digital WD1200JD"
+"WDC WD1200LB-55EDA0" 194 C "Western Digital WD1220LB"
+"WDC WD1200SB-01KB[AC]0" 194 C "Western Digital Caviar RE (Raid Edition) 120 GB"
+"WDC WD1600BB-00DWA0" 194 C "Western Digital Caviar WD1600BB"
+"WDC WD1600JB-(00EV|00FU|00GV|22GV|75GV)A0" 194 C "Western Digital Caviar 160GB Special Edition 8MB"
+"WDC WD2000BB-00FTA0" 194 C "Western Digital WD2000BB"
+"WDC WD2000JB-(00EV|32EV|34EV|00FU|00GV|55GV|98GV|00KF)A0" 194 C "Western Digital Caviar 200GB Special Edition 8MB"
+"WDC WD2000JB-00GVC0" 194 C "Western Digital WD2000JB"
+"WDC WD2000JS-00MHB1" 194 C "Western Digital SATA 200GB"
+"WDC WD2500JB-(00RE|00EV|00FU|32FU|00GV|55GV)A0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+"WDC WD2500JB-00GVC0" 194 C "Western Digital 250GB"
+"WDC WD2500JD-(00G|32H)BB0" 194 C "Western Digital SATA Caviar 250GB Special Edition 8MB"
+"WDC WD2500JD-40HBC0" 194 C "Western Digital WD2500JD-40HBC0"
+"WDC WD2500PB-98FBA0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+"WDC WD2500PD-00FZB1" 194 C "Western Digital WD2500PD-00FZB1"
+"WDC WD2500SD-01KCB0" 194 C "Western Digital Caviar RE 250GB 8MB"
+"WDC WD3000JB-00KFA0" 194 C "Western Digital WD3000JB"
+"WDC WD3200JB-00KFA0" 194 C "Western Digital Caviar 320GB 8MB"
+"WDC WD4000KD-00NAB0" 194 C "Western Digital Caviar SE16 400GB 16MB"
+"WDC WD4000YR-01PLB0" 194 C "Western Digital Caviar RE2 400GB 16MB"
+"WD4000YS-01MPB0" 194 C "Western Digital RE2 7200 SATA II 400 GB"
+
+# not sure for next
+# "WDC WD1200JB-00CRA1" 9 C "Western Digital 1200JB-00CRA1"
+# "WDC WD273BA" 9 C "Western Digital WD273BA"
+
+
+
+
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+
+"ST3750640AS" 194 C "Seagate Barracuda 7200.10 SATA 750GB"
+"ST3750840AS" 194 C "Seagate Barracuda 7200.10 SATA 750GB"
+"ST3500630AS" 194 C "Seagate Barracuda 7200.10 SATA 500GB"
+"ST3500830AS" 194 C "Seagate Barracuda 7200.10 SATA 500GB"
+"ST3400620AS" 194 C "Seagate Barracuda 7200.10 SATA 400GB"
+"ST3400620A" 194 C "Seagate Barracuda 7200.10 400GB"
+"ST3400820AS" 194 C "Seagate Barracuda 7200.10 SATA 400GB"
+"ST3320620AS" 194 C "Seagate Barracuda 7200.10 SATA 320GB"
+"ST3320820AS" 194 C "Seagate Barracuda 7200.10 SATA 320GB"
+"ST3300620AS" 194 C "Seagate Barracuda 7200.10 SATA 300GB"
+"ST3300820AS" 194 C "Seagate Barracuda 7200.10 SATA 300GB"
+"ST3250620AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3250820AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3250410AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3250310AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3200820AS" 194 C "Seagate Barracuda 7200.10 SATA 200GB"
+"ST3160815AS" 194 C "Seagate Barracuda 7200.10 SATA 160GB"
+"ST3160215AS" 194 C "Seagate Barracuda 7200.10 SATA 160GB"
+"ST3120815AS" 194 C "Seagate Barracuda 7200.10 SATA 120GB"
+"ST3120215AS" 194 C "Seagate Barracuda 7200.10 SATA 120GB"
+"ST380815AS" 194 C "Seagate Barracuda 7200.10 SATA 80GB"
+"ST380215AS" 194 C "Seagate Barracuda 7200.10 SATA 80GB"
+"ST340815AS" 194 C "Seagate Barracuda 7200.10 SATA 40GB"
+"ST340215AS" 194 C "Seagate Barracuda 7200.10 SATA 40GB"
+"ST3300622AS" 194 C "Seagate Barracuda 7200.9 SATA2.5 300GB"
+"ST3300831A" 194 C "Seagate Barracuda 7200.8 PATA 300GB"
+
+"Maxtor 7(L|V)250(F|R|S)0" 194 C "Maxtor MaXLine III 250GB 7200rpm"
+"Maxtor 7(L|V)300(F|R|S)0" 194 C "Maxtor MaXLine III 300GB 7200rpm"
+"MAXTOR STM3320620AS" 194 C ""
+
+"WDC WD1500ADFD-00NLR1" 194 C "Western Digital Raptor 150GB"
+"WDC WD1600JS-00NCB1" 194 C "Western Digital Caviar 1600JS 160GB Sata"
+"WDC WD1600SD-01KCC0" 194 C "Western Digital Caviar RE Serial ATA series"
+"WDC WD2500JD-57HBC0" 194 C "Western Digital Caviar SE (Serial ATA) 250 GB"
+"WDC WD2500JS" 194 C "Western Digital WD2500JS"
+"WDC WD2500JS-41MVB1" 194 C "Western Digital SATAII Caviar 250GB Special Edition 8MB"
+"WDC WD2500JD-00HBB0" 194 C "Western Digital SATA 250GB"
+"WDC WD2500KS-00MJB0" 194 C "Western Digital SATA-II Caviar 250GB Special Edition 16MB"
+"WDC WD3000JS-00PDB0" 194 C "Western Digital WD3000JS"
+"WDC WD3200KS-00PFB0" 194 C ""
+"WDC WD3200JD-22KLB0" 194 C "Western Digital Caviar SE 320GB 8MB"
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff b/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
new file mode 100644
index 0000000..393b5f4
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
@@ -0,0 +1,7545 @@
+Megapatch from debian
+
+Original URL: http://ftp.debian.org/debian/pool/main/h/hddtemp/hddtemp_0.3-beta15-52.diff.gz
+
+Upstream-Status: unmaintained
+
+--- hddtemp-0.3-beta15.orig/README
++++ hddtemp-0.3-beta15/README
+@@ -28,10 +28,7 @@
+ INFORMATION
+ ===========
+ hddtemp accesses to the SATA disks via ATA pass-through commands (defined in
+-T10/04-262r7). At the time of writing (kernel 2.6.11-rc5 has just been
+-released), kernels doesn't have support for ATA pass-through. You have to
+-update the libata driver with a newer version that could be found on:
+-http://www.kernel.org/pub/linux/kernel/people/jgarzik/libata/
++T10/04-262r7). Only kernel >= 2.6.16 have this support.
+
+ In daemon mode, hddtemp doesn't allow too much query at a time. If the interval
+ between two query is inferior to 1 minute, hddtemp will give the previous value
+--- hddtemp-0.3-beta15.orig/debian/rules
++++ hddtemp-0.3-beta15/debian/rules
+@@ -0,0 +1,110 @@
++#!/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
++
++# These are used for cross-compiling and for saving the configure script
++# from having to guess our platform (since we know it already)
++DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
++DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
++
++# Get flags from dpkg-buildflags
++CFLAGS = $(shell dpkg-buildflags --get CFLAGS)
++CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS)
++LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS)
++
++ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
++ INSTALL_PROGRAM += -s
++endif
++
++config.status: configure
++ dh_testdir
++
++ -test -r /usr/share/misc/config.sub && \
++ cp -f /usr/share/misc/config.sub config.sub
++ -test -r /usr/share/misc/config.guess && \
++ cp -f /usr/share/misc/config.guess config.guess
++
++ CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" \
++ ./configure --host=$(DEB_HOST_GNU_TYPE) \
++ --build=$(DEB_BUILD_GNU_TYPE) \
++ --prefix=/usr \
++ --mandir=\$${prefix}/share/man \
++ --infodir=\$${prefix}/share/info \
++ --with-db-path=/etc/hddtemp.db
++
++build: build-arch build-indep
++
++build-arch: build-arch-stamp
++build-arch-stamp: config.status
++ dh_testdir
++ $(MAKE)
++ touch build-stamp
++
++build-indep:
++
++clean: debian-clean
++ dh_clean
++
++debian-clean:
++ dh_testdir
++ dh_testroot
++ [ ! -f Makefile ] || $(MAKE) distclean
++ rm -f po/*.gmo po/stamp-po
++ -rm -f *-stamp
++ -rm -f config.sub config.guess
++
++install: build
++ dh_testdir
++ dh_testroot
++ dh_clean -k
++ dh_installdirs
++
++ # Add here commands to install the package into debian/hddtemp.
++ $(MAKE) install DESTDIR=$(CURDIR)/debian/hddtemp
++
++ install -p -o root -g root -m 644 $(CURDIR)/debian/hddtemp.db \
++ $(CURDIR)/debian/hddtemp/etc/hddtemp.db
++
++ cp -a $(CURDIR)/contribs $(CURDIR)/debian/hddtemp/usr/share/doc/hddtemp
++ rm -f $(CURDIR)/debian/hddtemp/usr/share/doc/hddtemp/Makefile*
++
++# 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_installdebconf
++ dh_installdocs
++ dh_installexamples
++ dh_installmenu
++ dh_installlogcheck
++# dh_installlogrotate
++# dh_installemacsen
++# dh_installpam
++# dh_installmime
++ dh_installinit
++ dh_installcron
++ dh_installman
++ dh_installinfo
++ dh_installchangelogs ChangeLog
++ 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 build-arch build-indep clean binary-indep binary-arch binary install
++
+--- hddtemp-0.3-beta15.orig/debian/docs
++++ hddtemp-0.3-beta15/debian/docs
+@@ -0,0 +1,2 @@
++README
++TODO
+--- hddtemp-0.3-beta15.orig/debian/postrm
++++ hddtemp-0.3-beta15/debian/postrm
+@@ -0,0 +1,28 @@
++#! /bin/sh
++# postrm script for hddtemp
++set -e
++
++conffile="/etc/default/hddtemp"
++
++case "$1" in
++ purge)
++ rm -f $conffile
++ ;;
++ remove)
++ rm -f /usr/bin/hddtemp
++ rm -f /usr/share/man/man1/hddtemp.1.gz
++ ;;
++ upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
++ ;;
++ *)
++ echo "postrm called with unknown argument \`$1'" >&2
++ exit 1
++ ;;
++esac
++
++# dh_installdeb will replace this with shell code automatically
++# generated by other debhelper scripts.
++
++#DEBHELPER#
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/changelog
++++ hddtemp-0.3-beta15/debian/changelog
+@@ -0,0 +1,1289 @@
++hddtemp (0.3-beta15-52) unstable; urgency=low
++
++ * Decrease hddtemp/daemon priority to medium from high (closes:
++ bug#680877).
++ * Bumped Standards-Version to 3.9.3.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 09 Jul 2012 08:12:30 +0200
++
++hddtemp (0.3-beta15-51) unstable; urgency=low
++
++ * init script: also probe for double letter drives (closes: bug#646724).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 30 Oct 2011 20:21:06 +0100
++
++hddtemp (0.3-beta15-50) unstable; urgency=low
++
++ * Convert hddtemp.db to UTF-8 (closes: bug#640899).
++ * Don't restart on reload in init.d (closes: bug#643610).
++ * Add a status option in init.d (closes: bug#643611).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 09 Oct 2011 20:16:06 +0200
++
++hddtemp (0.3-beta15-49) unstable; urgency=low
++
++ * Added Slovak debconf templates. Thanks to Slavko (closes: bug#634519).
++ * Fix a few typo in translation and enable German translation. Thanks to
++ Ville Skyttä for tha patch.
++ * Add build-arch and build-indep targets.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 30 Aug 2011 16:32:45 +0200
++
++hddtemp (0.3-beta15-48) unstable; urgency=low
++
++ * Fix backtrace support on i386.
++ * Add backtrace support on amd64.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 05 Jun 2011 00:18:46 +0200
++
++hddtemp (0.3-beta15-47) unstable; urgency=low
++
++ * Fix reading model on SATA big-endian (closes: #602307).
++ * Updated Arabic debconf templates, thanks to Ossama Khaya (closes:
++ bug#596177).
++ * Updated Swedish debconf template, thanks to Joe Hansen (closes:
++ bug#603109).
++ * Update Dutch debconf translation, thanks to Jeroen Schot (closes:
++ bug#628757).
++ * Bumped Standards-Version to 3.9.2 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 04 Jun 2011 21:36:32 +0200
++
++hddtemp (0.3-beta15-46) unstable; urgency=low
++
++ * Don't probe /dev/sg? by default (closes: bug#531849).
++ * Add initial German translation, by Helge Kreutzmann (closes: #503710).
++ * Fix a typo in the help message (closes: #503711).
++ * Correctly zero-terminate long product ID strings (closes: #517981).
++ * Bumped Standards-Version to 3.8.4 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 07 Feb 2010 20:24:49 +0100
++
++hddtemp (0.3-beta15-45) unstable; urgency=low
++
++ * Updated Swedish debconf templates. Thanks to Martin Bagge (closes:
++ bug#491768).
++ * Improve init script, by Cristian Ionescu-Idbohrn (closes: bug#486235).
++ * Mention /etc/init.d/hddtemp and /etc/default/hddtemp in README.Debian
++ (closes: bug#482982).
++ * Bumped Standards-Version to 3.8.0 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Jul 2008 09:44:06 +0200
++
++hddtemp (0.3-beta15-44) unstable; urgency=low
++
++ * Updated Japanese debconf templates. Thanks to Kenshi Muto (closes:
++ bug#483504).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 02 Jun 2008 10:30:58 +0200
++
++hddtemp (0.3-beta15-43) unstable; urgency=low
++
++ * Don't wake up SATA drives if not asked (closes: #479840).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 10 May 2008 13:24:18 +0200
++
++hddtemp (0.3-beta15-42) unstable; urgency=low
++
++ * Use minus instead of hyphenin manpage.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 02 Mar 2008 19:14:14 +0100
++
++hddtemp (0.3-beta15-41) unstable; urgency=low
++
++ * Fixed LSB header in init script (closes: bug#466281).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 17 Feb 2008 18:22:21 +0100
++
++hddtemp (0.3-beta15-40) unstable; urgency=low
++
++ * Added Basque debconf templates. Thanks to Piarres Beobide (closes:
++ bug#465731).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 15 Feb 2008 21:59:07 +0100
++
++hddtemp (0.3-beta15-39) unstable; urgency=low
++
++ [ Aurelien Jarno ]
++ * Bumped Standards-Version to 3.7.3 (no changes).
++
++ [ Christian Perrier ]
++ * Debconf templates and debian/control reviewed by the debian-l10n-
++ english team as part of the Smith review project. Closes: #462483
++ * [Debconf translation updates]
++ * Norwegian Bokmål. Closes: #462799
++ * German. Closes: #462843
++ * Galician. Closes: #462988
++ * Spanish. Closes: #463898
++ * Finnish. Closes: #463943
++ * Czech. Closes: #464224
++ * Russian. Closes: #464566
++ * Italian. Closes: #465069
++ * Portuguese. Closes: #465135
++ * Vietnamese. Closes: #465534
++ * French. Closes: #465650
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 13 Feb 2008 23:43:53 +0100
++
++hddtemp (0.3-beta15-38) unstable; urgency=low
++
++ * Fix typo in hddtemp manpage (closes: bug#444242).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 11 Dec 2007 15:17:16 +0100
++
++hddtemp (0.3-beta15-37) unstable; urgency=low
++
++ * Updated Czech debconf templates. Thanks to Miroslav Kure (closes:
++ bug#413322).
++ * Added Galician debconf templates. Thanks to Jacobo Tarrio (closes:
++ bug#412198).
++ * Clean po/stamp-po to make sure the .gmo files are regenerated (closes:
++ bug#441708).
++ * Updated Portuguese translation, thanks to Rui Branco (closes:
++ bug#418281).
++ * Updated Vietnamese debconf translation. Thanks to Clytie Siddall (closes:
++ bug#427039).
++ * Fixed man page formatting error (closes: bug#439074).
++ * Fix a segfault when using --unit and --numeric (closes: bug#412368).
++ * Exit with error code != 0 in case of error (closes: bug#423509).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 12 Sep 2007 11:36:05 +0200
++
++hddtemp (0.3-beta15-36) unstable; urgency=low
++
++ * Fix the init script, trying to kill not running daemon on shutdown
++ (closes: #411645).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 20 Feb 2007 22:04:01 +0100
++
++hddtemp (0.3-beta15-35) unstable; urgency=low
++
++ * Updated Portuguese translation, thanks to Miguel Figueire (closes:
++ bug#409491).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 20 Feb 2007 08:22:22 +0100
++
++hddtemp (0.3-beta15-34) unstable; urgency=low
++
++ * Relax SATA magic checkings (closes: #404310)
++ * Updated Swedish debconf template. Thanks to Daniel Nylander (closes:
++ bug#398788).
++ * /etc/default/hddtemp: changed SYSLOG into RUN_SYSLOG and fixed the
++ comments (closes: bug#401978).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 19 Jan 2007 00:38:27 +0100
++
++hddtemp (0.3-beta15-33) unstable; urgency=medium
++
++ * Update the description (closes: #401428).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 4 Dec 2006 06:04:38 +0100
++
++hddtemp (0.3-beta15-32) unstable; urgency=low
++
++ * Updated German debconf template. Thanks to Erik Schanze (closes:
++ bug#397209).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 27 Nov 2006 14:42:32 +0100
++
++hddtemp (0.3-beta15-31) unstable; urgency=low
++
++ * Remove the suggest on gkrellm-hddtemp (closes: bug#398938).
++ * Updated Swedish debconf template. Thanks to Daniel Nylander (closes:
++ bug#398788).
++ * Added Swedish translation. Thanks to Daniel Nylander (closes:
++ bug#398787).
++ * Added and LSB header to the init script.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 27 Nov 2006 12:14:49 +0100
++
++hddtemp (0.3-beta15-30) unstable; urgency=medium
++
++ * Remove a space in the printed temperature when a disk is not present
++ in hddtemp.db.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 19 Oct 2006 14:50:09 +0200
++
++hddtemp (0.3-beta15-29) unstable; urgency=medium
++
++ * Also consider field 194 as a temperature in Celsius if the disk
++ is not present in hddtemp.db in daemon mode (closes: bug#391870).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 9 Oct 2006 16:42:47 +0200
++
++hddtemp (0.3-beta15-28) unstable; urgency=medium
++
++ * Always consider field 194 as a temperature in Celsius if the disk
++ is not present in hddtemp.db (closes: bug#387102, #386943, #389290,
++ #387403, #389309, #387544)
++ * Updated Czech debconf template. Thanks to Miroslav Jezbera (closes:
++ bug#389244).
++ * Set urgency to medium as I really want to get this version in etch
++ (and not bother with roughly one bug report per week).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 4 Oct 2006 01:53:51 +0200
++
++hddtemp (0.3-beta15-27) unstable; urgency=low
++
++ * Depends on lsb-base (>= 3.0-3) (closes: bug#386859).
++ * Added support for Western Digital WD2000JD (closes: bug#385604).
++ * Added support for Seagate NL35 SATA (closes: bug#385187).
++ * Added support for ST3160811AS (closes: bug#385335).
++ * Added support for WD400BB-00DKA0 (closes: bug#386857).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 11 Sep 2006 00:13:15 +0200
++
++hddtemp (0.3-beta15-26) unstable; urgency=low
++
++ * Added support for SAMSUNG HD160JJ.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 26 Aug 2006 22:29:13 +0200
++
++hddtemp (0.3-beta15-25) unstable; urgency=low
++
++ * Added support for WD1200JD-00FYB0 (closes: bug#383692).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 20 Aug 2006 15:00:15 +0200
++
++hddtemp (0.3-beta15-24) unstable; urgency=low
++
++ * Updated Spanish debconf template. Thanks to Carlos Valdivia Yagüe (closes:
++ bug#383374:).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 17 Aug 2006 10:25:43 +0200
++
++hddtemp (0.3-beta15-23) unstable; urgency=low
++
++ * Added support for WDC WD3200SD-01KNB0 (closes: bug#382449).
++ * Added support for ST3400633 (closes: bug#382546).
++ * Added various Seagate 7200.10 drives, patch by Petr Vandrovec (closes:
++ bug#382490).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 11 Aug 2006 21:46:40 +0200
++
++hddtemp (0.3-beta15-22) unstable; urgency=low
++
++ * Added support for ST3320620AS (closes: bug#382300).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 10 Aug 2006 11:24:58 +0200
++
++hddtemp (0.3-beta15-21) unstable; urgency=low
++
++ * Added support for Toshiba MK1032GSX (closes: bug#382130).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 9 Aug 2006 19:27:36 +0200
++
++hddtemp (0.3-beta15-20) unstable; urgency=low
++
++ * Added support for Maxtor 6V300F0 (closes: bug#382071).
++ * Added support for Seagate ST98823AS (closes: bug#382009).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 8 Aug 2006 18:28:24 +0200
++
++hddtemp (0.3-beta15-19) unstable; urgency=low
++
++ * Added support for ST3250624AS (closes: bug#381837).
++ * Added support for WDC WD3200KS-00PFB0 (closes: bug#381837).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 7 Aug 2006 23:38:39 +0200
++
++hddtemp (0.3-beta15-18) unstable; urgency=low
++
++ * Added support for MHV2060AH.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 5 Aug 2006 21:19:56 +0200
++
++hddtemp (0.3-beta15-17) unstable; urgency=low
++
++ * Added support for WDC WD1500ADFD-00NLR0 (closes: bug#381403).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 5 Aug 2006 17:00:30 +0200
++
++hddtemp (0.3-beta15-16) unstable; urgency=low
++
++ * Updated Japanese debconf template. Thanks to Kenshi Muto (closes:
++ bug#379945).
++ * Added support for ST3808110AS and ST3160812AS (closes: bug#380478).
++ * Added support for ST3160812A (closes: bug#379701).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 30 Jul 2006 22:54:13 +0200
++
++hddtemp (0.3-beta15-15) unstable; urgency=low
++
++ * Added support for WDC WD2500JD-75HBB0 (closes: bug#379024).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 20 Jul 2006 21:47:04 +0200
++
++hddtemp (0.3-beta15-14) unstable; urgency=low
++
++ * Use lsb init-functions in init script. Thanks to Benjamin Leipold for the
++ patch (closes: bug#378118).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 14 Jul 2006 15:08:39 +0200
++
++hddtemp (0.3-beta15-13) unstable; urgency=low
++
++ * Added support for Toshiba MK8032GSX (Closes: #375486).
++ * Update the minimum kernel version (2.6.16) necessary to support
++ SATA in README.
++ * Print all warning/messages to stderr.
++ * Applied patch by Andras Korn (Closes: #374796) to allow the hddtemp
++ daemon to stay in the foreground.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 29 Jun 2006 15:11:47 +0200
++
++hddtemp (0.3-beta15-12) unstable; urgency=low
++
++ * Added Dutch debconf translation, thanks to Kurt De Bree (closes:
++ bug#370072).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 3 Jun 2006 19:45:21 +0200
++
++hddtemp (0.3-beta15-11) unstable; urgency=low
++
++ * Updated Danish debconf template. Thanks to Claus Hindsgaul (closes:
++ bug#368045).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 19 May 2006 17:25:32 +0000
++
++hddtemp (0.3-beta15-10) unstable; urgency=low
++
++ * Updated French debconf translation, thanks to Jean-Luc Coulon (closes:
++ bug#367540).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 16 May 2006 21:42:39 +0200
++
++hddtemp (0.3-beta15-9) unstable; urgency=low
++
++ * debian/templates: Changed How often into in interval. (closes: bug#367382).
++ * debian/templates: fixed the templates to make lintian happy.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 15 May 2006 20:21:49 +0200
++
++hddtemp (0.3-beta15-8) unstable; urgency=low
++
++ * Added support for SAMSUNG HD300LJ (closes: bug#367250).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 14 May 2006 20:08:31 +0200
++
++hddtemp (0.3-beta15-7) unstable; urgency=low
++
++ * Added support for HDS722516VLSA80 (closes: bug#366742).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 11 May 2006 05:46:24 +0200
++
++hddtemp (0.3-beta15-6) unstable; urgency=low
++
++ * Added support for FUJITSU MHV2100BH (closes: bug#366388).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 10 May 2006 06:29:54 +0200
++
++hddtemp (0.3-beta15-5) unstable; urgency=low
++
++ * Added support for WDC WD740GD-00FLA1 (closes: bug#366021).
++ * Bumped Standards-Version to 3.7.2 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 4 May 2006 18:38:15 +0200
++
++hddtemp (0.3-beta15-4) unstable; urgency=low
++
++ * Fix a crash in daemon (syslog) mode when the hard disk is not known
++ (closes: bug#365605).
++ * Added support for WD1200JB-00REA0.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 3 May 2006 20:27:11 +0200
++
++hddtemp (0.3-beta15-3) unstable; urgency=low
++
++ * Added support for WDC WD800JD-75JNC0 (closes: bug#365359).
++ * Added support for WDC WD2500KS and WDC WD2500YD.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 2 May 2006 21:49:37 +0200
++
++hddtemp (0.3-beta15-2) unstable; urgency=low
++
++ * Updated database for Maxtors MaxLineIII series drives (closes:
++ bug#365011).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Apr 2006 14:45:22 +0200
++
++hddtemp (0.3-beta15-1) unstable; urgency=low
++
++ * New upstream version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Apr 2006 05:25:06 +0200
++
++hddtemp (0.3-beta14-12) unstable; urgency=low
++
++ * Added Portuguese translation, thanks to Miguel Figueire (closes:
++ bug#361505).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 11 Apr 2006 00:38:51 +0200
++
++hddtemp (0.3-beta14-11) unstable; urgency=low
++
++ * Added support for WDC WD2500PD-00FZB1, WDC WD2500SD-01KCB0, WDC
++ WD1200JD-00HBC0 and WDC WD4000YR-01PLB0 (closes: bug#357804).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 25 Mar 2006 20:29:42 +0100
++
++hddtemp (0.3-beta14-10) unstable; urgency=low
++
++ * Use F for fahrenheit.
++ * Added support for Hitachi DK23EA-20B (closes: bug#355763).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 18 Mar 2006 11:39:20 +0100
++
++hddtemp (0.3-beta14-9) unstable; urgency=low
++
++ * Update hddtemp.db (closes: bug#355469).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 6 Mar 2006 00:40:35 +0100
++
++hddtemp (0.3-beta14-8) unstable; urgency=low
++
++ * Don't flood syslog if the system clock wraps (closes: bug#354260).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 24 Feb 2006 21:32:36 +0100
++
++hddtemp (0.3-beta14-7) unstable; urgency=low
++
++ * Correctly initialize the structure dsk.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 4 Feb 2006 22:01:07 +0100
++
++hddtemp (0.3-beta14-6) unstable; urgency=low
++
++ * Added support for TOSHIBA MK4026GAX.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 11 Dec 2005 21:13:06 +0100
++
++hddtemp (0.3-beta14-5) unstable; urgency=low
++
++ * Added Swedish translation of hddtemp. Thanks to Daniel Nylander (close:
++ bug#337117).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 3 Nov 2005 01:56:26 +0100
++
++hddtemp (0.3-beta14-4) unstable; urgency=low
++
++ * Fixed the package device patch.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Oct 2005 03:18:43 +0200
++
++hddtemp (0.3-beta14-3) unstable; urgency=low
++
++ * Don't try to read temperature from packet devices drives (closes:
++ bug#316750, bug#335571).
++ * Verify the response length when calling modesense (closes:
++ bug#278345).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Oct 2005 01:02:21 +0200
++
++hddtemp (0.3-beta14-2) unstable; urgency=low
++
++ * Added Swedish debconf translation. Thanks to Daniel Nylander (closes:
++ bug#333713).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 14 Oct 2005 11:22:05 +0200
++
++hddtemp (0.3-beta14-1) unstable; urgency=low
++
++ * New upstream version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 21 Sep 2005 14:48:43 +0200
++
++hddtemp (0.3-beta13-23) unstable; urgency=low
++
++ * Added SAMSUNG SP2014N disk to the database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 14 Sep 2005 11:27:22 +0200
++
++hddtemp (0.3-beta13-22) unstable; urgency=low
++
++ * Updated hddtemp.db (closes: bug#326180, bug#326181).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 6 Sep 2005 03:51:29 +0200
++
++hddtemp (0.3-beta13-21) unstable; urgency=low
++
++ * Added TOSHIBA MK4026GAX disk to the database (closes: bug#325702).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 31 Aug 2005 11:16:55 +0200
++
++hddtemp (0.3-beta13-20) unstable; urgency=low
++
++ * Added Arabic debconf translation. Thanks to Mohammed Adnène Trojette
++ (closes: bug#320766).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 1 Aug 2005 15:40:56 +0200
++
++hddtemp (0.3-beta13-19) unstable; urgency=low
++
++ * Fixed DISKS_NOPROBE when no other disks are detected.
++ * Added a logcheck rule to ignore sleeping drives (closes: bug#316613).
++ * Bumped Standards-Version to 3.6.2 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 6 Jul 2005 19:15:16 +0200
++
++hddtemp (0.3-beta13-18) unstable; urgency=low
++
++ * Added DISKS_NOPROBE option to the /etc/default/hddtemp (closes:
++ bug#316270).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 29 Jun 2005 22:13:53 +0200
++
++hddtemp (0.3-beta13-17) unstable; urgency=low
++
++ * Updated database.
++ * Added support for Western Digital Caviar WD800BB (closes: bug#312247).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 9 Jun 2005 23:16:25 +0200
++
++hddtemp (0.3-beta13-16) unstable; urgency=low
++
++ * Updated Vietnamese debconf translation. Thanks to Clytie Siddall (closes:
++ bug#311893).
++ * Fixed a typo in the debconf template. Thanks to Clytie Siddall (closes:
++ bug#311894).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 4 Jun 2005 17:03:31 +0200
++
++hddtemp (0.3-beta13-15) unstable; urgency=low
++
++ * Updated German debconf translation. Thanks to Erik Schanze (closes:
++ bug#311716).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 3 Jun 2005 00:41:00 +0200
++
++hddtemp (0.3-beta13-14) unstable; urgency=low
++
++ * Added SV4012H to the database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 24 May 2005 00:54:01 +0200
++
++hddtemp (0.3-beta13-13) unstable; urgency=low
++
++ * Added WD800BB-00JHA0 to the database (closes: bug#310301).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 23 May 2005 01:08:43 +0200
++
++hddtemp (0.3-beta13-12) unstable; urgency=low
++
++ * Added HDS722512VLAT80 to the database (closes: bug#309011).
++ * Added Vietnamese debconf translation. Thanks to Clytie Siddall (closes:
++ bug#309451).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 May 2005 16:58:00 +0200
++
++hddtemp (0.3-beta13-11) unstable; urgency=low
++
++ * Added WD2500JB-55GVA0 to the database (closes: bug#307673).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 4 May 2005 23:47:12 +0200
++
++hddtemp (0.3-beta13-10) unstable; urgency=high
++
++ * Daemonization fixed (closes: bug#307113).
++ * Added HDS722525VLSA80 to the database (closes: bug#306691).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 2 May 2005 01:01:54 +0200
++
++hddtemp (0.3-beta13-9) unstable; urgency=low
++
++ * Remove /etc/logcheck.ignore.workstation/hddtemp in postinst.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 22 Apr 2005 18:35:58 +0200
++
++hddtemp (0.3-beta13-8) unstable; urgency=low
++
++ * Really applied Danish debconf template (closes: bug#302353).
++ * Updated Czech debconf template. Thanks to Miroslav Jezbera (closes:
++ bug#304716).
++ * Updated French debconf template. Thanks to Jean-Luc Coulon (closes:
++ bug#303061).
++ * Added WD2000JB-32EVA0 to hddtemp.deb (closes: bug#302760).
++ * Fixed logcheck ignore files (closes: bug#304110).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 15 Apr 2005 06:26:34 +0200
++
++hddtemp (0.3-beta13-7) unstable; urgency=low
++
++ * Updated Danish debconf template. Thanks to Claus Hindsgaul (closes:
++ bug#302353).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 15 Apr 2005 06:15:19 +0200
++
++hddtemp (0.3-beta13-6) unstable; urgency=low
++
++ * Updated Japanese debconf template. Thanks to Kenshi Muto (closes:
++ bug#302322).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 31 Mar 2005 12:26:56 +0200
++
++hddtemp (0.3-beta13-5) unstable; urgency=low
++
++ * Fixed French debconf template.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 22:59:34 +0200
++
++hddtemp (0.3-beta13-4) unstable; urgency=low
++
++ * debian/templates: s/gkrellm-hdtemp/gkrellm/g (closes: bug#302178).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 15:21:10 +0200
++
++hddtemp (0.3-beta13-3) unstable; urgency=medium
++
++ * Don't listen on socket if only syslog is choosen in debconf. Thanks to
++ Mario Holbe for the patch (closes: bug#302065).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 01:25:04 +0200
++
++hddtemp (0.3-beta13-2) unstable; urgency=medium
++
++ * Try to detect cdrom drives using the ide-scsi driver (closes:
++ bug#302061).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 00:38:49 +0200
++
++hddtemp (0.3-beta13-1) unstable; urgency=medium
++
++ * New upstream version which contains the same code as in the previous
++ Debian package.
++ * Use SG_IO only when available (closes: bug#300679).
++ * Added syslog option in debconf (closes: bug#300332).
++ * Fixed the manpage (closes: bug#300332).
++ * Only disable SCSI exceptions if they are already enabled (closes:
++ bug#278345).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 29 Mar 2005 15:56:03 +0200
++
++hddtemp (0.3-beta12-16) unstable; urgency=low
++
++ * Verify SATA magics in the ATA pass through subroutine.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Feb 2005 16:51:48 +0100
++
++hddtemp (0.3-beta12-15) unstable; urgency=low
++
++ * Change the way SATA disks are detected, so that there is no more
++ SCSI errors with SCSI disks.
++ * Print SCSI disks name in a smarter way.
++ * Updated database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 25 Feb 2005 22:59:36 +0100
++
++hddtemp (0.3-beta12-14) unstable; urgency=low
++
++ * Converted SCSI subroutines to SG_IO (closes: bug#235422, bug#275612,
++ bug#292205).
++ * Added support for SATA (closes: bug#227409). A kernel patch for
++ SATA is still need (see /usr/share/doc/hddtemp/README).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 25 Feb 2005 02:16:57 +0100
++
++hddtemp (0.3-beta12-13) unstable; urgency=low
++
++ * Don't display an error message if /proc/sys/dev/cdrom/info doesn't
++ exist (systems without CDROM drives) (closes: bug#295814).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 18 Feb 2005 12:42:18 +0100
++
++hddtemp (0.3-beta12-12) unstable; urgency=low
++
++ * Added Hitachi Deskstar 7K80 40G and 80GB disks.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 6 Feb 2005 17:49:15 +0100
++
++hddtemp (0.3-beta12-11) unstable; urgency=low
++
++ * Uses /proc/sys/dev/cdrom/info instead of hardcoded paths to detect CDROM
++ drives (closes: bug#293542).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 4 Feb 2005 11:15:37 +0100
++
++hddtemp (0.3-beta12-10) unstable; urgency=low
++
++ * Added a README.Debian to explain why the init script could not found
++ some disks.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 25 Jan 2005 16:46:53 +0100
++
++hddtemp (0.3-beta12-9) unstable; urgency=low
++
++ * Updated Brasilian translation. Thanks to Tiago Bortoletto Vaz (closes:
++ bug#283832).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Dec 2004 21:40:42 +0100
++
++hddtemp (0.3-beta12-8) unstable; urgency=low
++
++ * Updated hddtemp.db.
++ * Added MHT2060AH drive (closes: bug#280805).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Dec 2004 19:19:37 +0100
++
++hddtemp (0.3-beta12-7) unstable; urgency=low
++
++ * Updated German debconf translation. Thanks to Erik Schanze (closes:
++ bug#282280).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 21 Nov 2004 16:22:41 +0100
++
++hddtemp (0.3-beta12-6) unstable; urgency=low
++
++ * Don't abord the script if /dev/cdrom doesn't exists.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 25 Oct 2004 14:46:42 +0000
++
++hddtemp (0.3-beta12-5) unstable; urgency=low
++
++ * Added a patch to allow temperatures to be logged to syslog (closes:
++ bug#271508).
++ * Added hddtemp-all.sh to contribs. Thanks to Javier Fernández-Sanguino
++ Peña (closes: bug#276444).
++ * /etc/init.d/hddtemp: skip CD and DVD drives.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 24 Oct 2004 17:30:34 +0200
++
++hddtemp (0.3-beta12-4) unstable; urgency=low
++
++ * Print "done." in the init script when stopping hddtemp (closes:
++ bug#275952).
++ * Updated hddtemp.db with the latest available version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 12 Oct 2004 10:10:01 +0100
++
++hddtemp (0.3-beta12-3) unstable; urgency=medium
++
++ * Added support for WDC 200GB SE (closes: bug#275105).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 7 Oct 2004 21:01:15 +0200
++
++hddtemp (0.3-beta12-2) unstable; urgency=low
++
++ * Added support for Maxtor MaXLine Plus II 250GB (closes: bug#274596).
++ * Added support for Travelstar 5K80 series (closes: bug#274671).
++ * Removed init message when the daemon is disabled.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 3 Oct 2004 19:40:23 +0200
++
++hddtemp (0.3-beta12-1) unstable; urgency=low
++
++ * New upstream version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 2 Oct 2004 01:47:19 +0200
++
++hddtemp (0.3-beta11-17) unstable; urgency=low
++
++ * Detect sleeping drives in the init script (closes: bug#269462).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Sep 2004 18:49:35 +0200
++
++hddtemp (0.3-beta11-16) unstable; urgency=low
++
++ * Added support for Samsung SpinPoint PL40 serie.
++ * Added support for Western Digital 250GB Special Edition 8MB (closes:
++ bug#269342).
++ * Added support for Maxtor DiamondMax Plus 40 drives (closes:
++ bug#269346).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Sep 2004 11:29:55 +0200
++
++hddtemp (0.3-beta11-15) unstable; urgency=low
++
++ * Added Danish debconf translation. Thanks to Claus Hindsgaul (closes:
++ bug#267551).
++ * Added support for Western Digital 160GB Special Edition 8MB (closes:
++ bug#267492).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 31 Aug 2004 11:23:43 +0200
++
++hddtemp (0.3-beta11-14) unstable; urgency=medium
++
++ * Let the kernel decide if we can access the device or not (closes:
++ bug#262742).
++ * Added an option to wake-up the driver if need (closes: #255308).
++ * Added IPv6 support.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 Aug 2004 15:36:00 +0200
++
++hddtemp (0.3-beta11-13) unstable; urgency=low
++
++ * Added Czech debconf translation. Thanks to Miroslav Jezbera (closes:
++ bug#261284).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 31 Jul 2004 16:18:17 +0200
++
++hddtemp (0.3-beta11-12) unstable; urgency=low
++
++ * Fixed manpage installation (closes: bug#258048, #258101).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 8 Jul 2004 02:08:00 +0200
++
++hddtemp (0.3-beta11-11) unstable; urgency=low
++
++ * Print WARNING messages on stderr (closes: bug#254940).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 18 Jun 2004 00:17:08 +0200
++
++hddtemp (0.3-beta11-10) unstable; urgency=low
++
++ * If a debconf answer is empty, ignore it (closes: bug#247026).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 4 May 2004 01:48:26 +0200
++
++hddtemp (0.3-beta11-9) unstable; urgency=low
++
++ * The "Welcome to the 10 new EU members" release.
++ * Added --retry parameter when calling start-stop-daemon (closes:
++ bug#246028).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 1 May 2004 00:49:45 +0200
++
++hddtemp (0.3-beta11-8) unstable; urgency=low
++
++ * Added support for Samsung P80 SATA drives (closes: bug#243464).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 13 Apr 2004 17:34:30 +0200
++
++hddtemp (0.3-beta11-7) unstable; urgency=low
++
++ * Added support for Hitachi Deskstar 7K250 (closes: bug#241493).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 11 Apr 2004 16:37:51 +0200
++
++hddtemp (0.3-beta11-6) unstable; urgency=low
++
++ * Added support for Western Digital WD1600JB-00FUA0 disk (closes:
++ bug#237983).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 16 Mar 2004 13:14:19 +0100
++
++hddtemp (0.3-beta11-5) unstable; urgency=low
++
++ * Minor changes to debian/postinst script.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 8 Feb 2004 00:27:59 +0100
++
++hddtemp (0.3-beta11-4) unstable; urgency=low
++
++ * Updated description (closes: bug#230507).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 1 Feb 2004 17:37:58 +0100
++
++hddtemp (0.3-beta11-3) unstable; urgency=low
++
++ * Don't include asm headers on architectures that don't support
++ backtracing.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 25 Jan 2004 21:57:49 +0100
++
++hddtemp (0.3-beta11-2) unstable; urgency=low
++
++ * Included upstream ChangeLog (closes: bug#226329).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 6 Jan 2004 03:16:37 +0100
++
++hddtemp (0.3-beta11-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated the database to version 03C.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 2 Jan 2004 10:05:21 +0100
++
++hddtemp (0.3-beta10-2) unstable; urgency=low
++
++ * Disable backtracing on non-i386 architectures.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 15 Dec 2003 09:19:48 +0100
++
++hddtemp (0.3-beta10-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated debian/copyright.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 15 Dec 2003 08:24:37 +0100
++
++hddtemp (0.3-beta9-2) unstable; urgency=low
++
++ * Moved ja.po in the right directory.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 12 Dec 2003 09:31:19 +0100
++
++hddtemp (0.3-beta9-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated the database to version 03B.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 12 Dec 2003 09:21:16 +0100
++
++hddtemp (0.3-beta8-7) unstable; urgency=low
++
++ * Added po debconf translations. Thanks to Kenshi Muto. (closes:
++ bug#211954)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 21 Sep 2003 14:03:19 +0200
++
++hddtemp (0.3-beta8-6) unstable; urgency=low
++
++ * Remove the link to /usr/sbin/hddtemp in /usr/bin when removing the
++ package (closes: bug#210609).
++ * Updated Policy standard compliance to 3.6.1 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 12 Sep 2003 16:06:56 +0200
++
++hddtemp (0.3-beta8-5) unstable; urgency=low
++
++ * Removed the single-quoting around the -s parameter in the init script
++ (closes: bug#208542).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 3 Sep 2003 19:02:24 +0200
++
++hddtemp (0.3-beta8-4) unstable; urgency=medium
++
++ * Don't modify the config file in the config script (closes: bug#203583).
++ * Urgency set to medium as the bug breaks upgrade.
++ * The init script also stop manually started daemons.
++ * Added a small patch to make sure hddtemp could not be started in daemon
++ mode by a normal user even if it is SUID root.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 2 Sep 2003 14:52:03 +0200
++
++hddtemp (0.3-beta8-3) unstable; urgency=low
++
++ * Don't strip the comments from the config file when installing the
++ package.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 1 Sep 2003 18:51:33 +0200
++
++hddtemp (0.3-beta8-2) unstable; urgency=low
++
++ * Fixed a typo in the manpage. Thanks to Carlos Valdivia Yagüe. (Closes:
++ bug#205947).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 19 Aug 2003 09:19:04 +0200
++
++hddtemp (0.3-beta8-1) unstable; urgency=low
++
++ * New upstream version.
++ * Recoded the changelog in UTF-8.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 12 Aug 2003 01:14:19 +0200
++
++hddtemp (0.3-beta7-6) unstable; urgency=low
++
++ * Fixed config and postinst scripts (closes: bug#203583).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 5 Aug 2003 09:16:11 +0200
++
++hddtemp (0.3-beta7-5) unstable; urgency=low
++
++ * Fixed a typo in /etc/init.d/hddtemp (closes: bug#203441).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Jul 2003 06:29:45 +0200
++
++hddtemp (0.3-beta7-4) unstable; urgency=low
++
++ * Changed the DAEMON parameter in /etc/default/hddtemp to RUN_DAEMON
++ (closes: bug#203107).
++ * Updated the database to version 036.
++ * Updated Policy standard compliance to 3.6.0.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 28 Jul 2003 02:32:00 +0200
++
++hddtemp (0.3-beta7-3) unstable; urgency=low
++
++ * Updated es debconf translations. Thanks to Carlos Valdivia Yagüe.
++ (closes: bug#198450).
++ * Updated the database to version 033.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 24 Jun 2003 01:12:00 +0200
++
++hddtemp (0.3-beta7-2) unstable; urgency=low
++
++ * Updated fr debconf translations. Thanks to Michel Grentzin.
++ (closes: bug#198155)
++ * Added pt_BR debconf translations. Thanks to Andre Luis Lopes.
++ (closes: bug#198350)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 22 Jun 2003 02:55:59 +0200
++
++hddtemp (0.3-beta7-1) unstable; urgency=low
++
++ * New upstream version with i18n support.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 Jun 2003 22:54:25 +0200
++
++hddtemp (0.3-beta6-9) unstable; urgency=low
++
++ * Updated the database to version 032.
++ * Unmark some untranslatable strings in the master templates file. (closes:
++ bug#197642).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 Jun 2003 19:32:07 +0200
++
++hddtemp (0.3-beta6-8) unstable; urgency=low
++
++ * Updated the database to version 030.
++ * Updated fr debconf translations. Thanks to Michel Grentzin.
++ (closes: bug#196765)
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 9 Jun 2003 20:37:46 +0200
++
++hddtemp (0.3-beta6-7) unstable; urgency=low
++
++ * Changed priority for debconf questions to more reasonable values.
++ * Updated the database to version 02F.
++ * Updated Policy standard compliance to 3.5.10.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 22 May 2003 23:43:24 +0200
++
++hddtemp (0.3-beta6-6) unstable; urgency=low
++
++ * Don't mark /etc/default/hddtemp as a conffile, handle it entirely
++ in maintainer scripts (closes: bug#193466).
++ * Pass --ok-nodo argument to start-stop-daemon in init script when
++ stopping hddtemp (closes: bug#193622).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 18 May 2003 13:09:48 +0200
++
++hddtemp (0.3-beta6-5) unstable; urgency=low
++
++ * Updated the database to version 02E.
++ * Don't save the fact that the daemon is running or not in debconf, but
++ rather in /etc/default/hddemp.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 11 May 2003 15:06:47 +0200
++
++hddtemp (0.3-beta6-4) unstable; urgency=low
++
++ * Updated the upstream project homepage in debian/copyright (closes:
++ bug#190960).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Apr 2003 17:46:53 +0200
++
++hddtemp (0.3-beta6-3) unstable; urgency=low
++
++ * Updated the upstream project homepage in the description (closes:
++ bug#190929).
++ * Updated the database to version 02B.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Apr 2003 11:40:14 +0200
++
++hddtemp (0.3-beta6-2) unstable; urgency=low
++
++ * Added port and separator options to /etc/default/hddtemp.
++ * Added -l option to the manpage.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 3 Apr 2003 09:44:58 +0200
++
++hddtemp (0.3-beta6-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated database.
++ * Updated Policy standard compliance to 3.5.9.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 2 Apr 2003 22:54:01 +0200
++
++hddtemp (0.3-beta5-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated database.
++ * Added an option to listen on a specific interface (closes: bug#186062).
++ * Changed name displayed by /etc/init.d/hddtemp (closes: bug#187041).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 1 Apr 2003 02:24:53 +0200
++
++hddtemp (0.3-beta4-2) unstable; urgency=low
++
++ * The "I have uploaded the wrong version" release.
++ * Fixed a bug in i18n.c. (closes: bug#185328).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 18 Mar 2003 20:32:03 +0100
++
++hddtemp (0.3-beta4-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated database.
++ * Improved /etc/init.d/hddtemp and added a config file in
++ /etc/default (Closes: bug#183843). Thanks to Greg Miller.
++ * Fixed a bug in i18n.c.
++ * Added homepage and author to the description.
++ * Debconf templates are now managed with po-debconf.
++ * Uses debian/compat instead of DH_COMPAT.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 17 Mar 2003 00:29:12 +0100
++
++hddtemp (0.3-beta3-3) unstable; urgency=low
++
++ * Added patch to allow local port reuse in TIME_WAIT.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 25 Jan 2003 01:43:21 +0100
++
++hddtemp (0.3-beta3-2) unstable; urgency=low
++
++ * Don't fail at postinst stage if daemon failed to start. (closes:
++ bug#177660)
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 24 Jan 2003 21:21:41 +0100
++
++hddtemp (0.3-beta3-1) unstable; urgency=low
++
++ * New upstream version including all the previous patches plus some fixes.
++ * Updated database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 19 Jan 2003 21:27:30 +0100
++
++hddtemp (0.3-beta2-4) unstable; urgency=low
++
++ * Added patch from Julien Blache to fix a lot of spelling mistakes.
++ Thanks !
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 19 Jan 2003 09:55:47 +0100
++
++hddtemp (0.3-beta2-3) unstable; urgency=low
++
++ * Added an option to print only the temperature. Thanks to Julien Blache
++ for the patch. (closes: bug#176395)
++ * Fixed some warnings introduced by gcc-3.2.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 12 Jan 2003 12:30:49 +0100
++
++hddtemp (0.3-beta2-2) unstable; urgency=low
++
++ * Merged hddtemp and hddtemp-daemon and added a debconf question
++ because the package was refused by the ftpmaster.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 8 Jan 2003 21:48:09 +0100
++
++hddtemp (0.3-beta2-1) unstable; urgency=low
++
++ * New beta version.
++ * Added daemon mode init script to the new package hddtemp-daemon.
++ * Updated Policy standard compliance to 3.5.8.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 4 Jan 2003 10:04:16 +0100
++
++hddtemp (0.2-18) unstable; urgency=low
++
++ * Updated database (version 021).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 28 Dec 2002 16:59:39 -0500
++
++hddtemp (0.2-17) unstable; urgency=low
++
++ * Fixed copyright file.
++ * Removed debian/conffiles, this is handled by dh_installdeb automatically ;
++ otherwise we end up with each conffile being listed twice...
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 17 Dec 2002 01:39:02 +0100
++
++hddtemp (0.2-16) unstable; urgency=low
++
++ * Updated database (version 01f).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 17 Dec 2002 00:40:07 +0100
++
++hddtemp (0.2-15) unstable; urgency=low
++
++ * Updated database (version 01D).
++ * Added disk model IC35L040AVVN07-0 (closes: bug#172117). Thanks to Henrique
++ de Moraes Holschuh.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 7 Dec 2002 16:47:41 +0100
++
++hddtemp (0.2-14) unstable; urgency=low
++
++ * Corrected a bug affecting the display of the degree sign.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 26 Sep 2002 01:29:10 +0200
++
++hddtemp (0.2-13) unstable; urgency=low
++
++ * Added support for other encodings than iso-8859-1. (closes:bug#158106)
++ * debian/hddtemp.1: corrected description of -f option.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 25 Sep 2002 14:26:20 +0200
++
++hddtemp (0.2-12) unstable; urgency=low
++
++ * Updated database.
++ * Updated Policy standard compliance to 3.5.7
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 11 Sep 2002 14:21:49 +0200
++
++hddtemp (0.2-11) unstable; urgency=low
++
++ * Updated database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 14 Aug 2002 23:01:31 +0200
++
++hddtemp (0.2-10) unstable; urgency=low
++
++ * Updated database. (closes: bug#149313)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 15 Jun 2002 00:00:48 +0200
++
++hddtemp (0.2-9) unstable; urgency=low
++
++ * Corrected a bug affecting the display of the degree sign on some systems.
++ (closes: bug#147136, #147138)
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 11 Jun 2002 19:34:03 +0200
++
++hddtemp (0.2-8) unstable; urgency=low
++
++ * Corrected debconf template. (closes: bug#148146)
++ * Updated HDD database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 25 May 2002 17:11:16 +0200
++
++hddtemp (0.2-7) unstable; urgency=low
++
++ * Corrected the man page.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 19 May 2002 23:54:39 +0200
++
++hddtemp (0.2-6) unstable; urgency=low
++
++ * Updated HDD database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 18 May 2002 13:33:02 +0200
++
++hddtemp (0.2-5) unstable; urgency=low
++
++ * Updated HDD database.
++ * Updated the man page.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 13 May 2002 06:40:08 +0200
++
++hddtemp (0.2-4) unstable; urgency=low
++
++ * Moved /usr/share/hddtemp/hddtemp.db to /etc/hddtemp.db as conffile.
++ (closes: bug#146738)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 12 May 2002 19:50:23 +0200
++
++hddtemp (0.2-3) unstable; urgency=low
++
++ * Added de debconf translations.
++ * Updated HDD database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 12 May 2002 17:15:28 +0200
++
++hddtemp (0.2-2) unstable; urgency=low
++
++ * Fixed typos and erroneous statement in description. (closes: bug#146551)
++ * Fixed manpage. (closes: bug#146554)
++ * A symlink to /usr/bin is made when installing hddtemp SUID root.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 11 May 2002 15:54:42 +0200
++
++hddtemp (0.2-1) unstable; urgency=low
++
++ * Initial Release. (closes: bug#145611)
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 9 May 2002 14:50:35 +0200
++
+--- hddtemp-0.3-beta15.orig/debian/templates
++++ hddtemp-0.3-beta15/debian/templates
+@@ -0,0 +1,63 @@
++# These templates have been reviewed by the debian-l10n-english
++# team
++#
++# If modifications/additions/rewording are needed, please ask
++# debian-l10n-english@lists.debian.org for advice.
++#
++# Even minor modifications require translation updates and such
++# changes should be coordinated with translators and reviewers.
++
++Template: hddtemp/SUID_bit
++Type: boolean
++Default: false
++_Description: Should /usr/sbin/hddtemp be installed SUID root?
++ You have the option of installing hddtemp with the SUID bit set,
++ allowing it to be run (reporting hard drive temperatures) by regular
++ users and not only the superuser.
++ .
++ This could potentially allow hddtemp to be used during an attack
++ against the computer's security. If in doubt, do not choose this option.
++ .
++ This setting can be modified later by running 'dpkg-reconfigure hddtemp'.
++
++Template: hddtemp/syslog
++Type: string
++Default: 0
++_Description: Interval between hard drive temperature checks:
++ The temperature of the hard drive(s) can be logged by hddtemp via
++ the generic system logging interface.
++ .
++ Please enter a value in seconds corresponding to the interval between
++ two checks. To disable this feature, enter 0.
++
++Template: hddtemp/daemon
++Type: boolean
++Default: false
++_Description: Should the hddtemp daemon be started at boot?
++ The hddtemp program can be run as a daemon, listening on port 7634
++ for incoming connections. It is used by some software such as gkrellm to get
++ the temperature of hard drives.
++ .
++ You have the option of starting the hddtemp daemon automatically on
++ system boot. If in doubt, it is suggested to not start it
++ automatically on boot.
++ .
++ This setting can be modified later by running 'dpkg-reconfigure hddtemp'.
++
++Template: hddtemp/interface
++Type: string
++Default: 127.0.0.1
++_Description: Interface to listen on:
++ The hddtemp program can listen for incoming connections on a specific
++ interface, or on all interfaces.
++ .
++ To listen on a specific interface, enter the IP address of that interface
++ (choosing 127.0.0.1 will accept local connections only). To listen on all interfaces,
++ enter 0.0.0.0.
++
++Template: hddtemp/port
++Type: string
++Default: 7634
++_Description: Port to listen on:
++ By default, hddtemp listens for incoming connections on port 7634. This
++ can be changed for another port number.
+--- hddtemp-0.3-beta15.orig/debian/dirs
++++ hddtemp-0.3-beta15/debian/dirs
+@@ -0,0 +1,3 @@
++etc/init.d
++etc/default
++usr/share/doc/hddtemp
+--- hddtemp-0.3-beta15.orig/debian/copyright
++++ hddtemp-0.3-beta15/debian/copyright
+@@ -0,0 +1,26 @@
++This package was debianized by Aurelien Jarno <aurel32@debian.org> on
++Wed, 8 May 2002 01:40:30 +0200.
++
++It was downloaded from http://www.guzu.net/linux/hddtemp.php
++
++Upstream Author: Emmanuel Varagnat <hddtemp@guzu.net>
++
++Copyright: 2002, 2003 Emmanuel Varagnat
++
++ This program is free software; you can redistribute it and/or modify
++ it under the terms of the GNU General Public License as published by
++ the Free Software Foundation; either version 2 of the License, or
++ (at your option) any later version.
++
++ This program is distributed in the hope that it will be useful,
++ but WITHOUT ANY WARRANTY; without even the implied warranty of
++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
++ GNU General Public License for more details.
++
++ You should have received a copy of the GNU General Public License with
++ the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL;
++ if not, write to the Free Software Foundation, Inc., 51 Franklin St,
++ Fifth Floor, Boston, MA 02110-1301 USA
++
++ On Debian systems, the complete text of the GNU General Public
++ License, version 2, can be found in /usr/share/common-licenses/GPL-2.
+--- hddtemp-0.3-beta15.orig/debian/logcheck.ignore.server
++++ hddtemp-0.3-beta15/debian/logcheck.ignore.server
+@@ -0,0 +1,2 @@
++^\w{3} [ :0-9]{11} [._[:alnum:]-]+ hddtemp\[[0-9]+\]: /dev/([hs]d[a-z]|sg[0-9]): .*: [0-9]+ [CF]$
++^\w{3} [ :0-9]{11} [._[:alnum:]-]+ hddtemp\[[0-9]+\]: /dev/([hs]d[a-z]|sg[0-9]): .*: drive is sleeping$
+--- hddtemp-0.3-beta15.orig/debian/config
++++ hddtemp-0.3-beta15/debian/config
+@@ -0,0 +1,51 @@
++#!/bin/sh
++# hddtemp package configuration script
++
++set -e
++
++conffile="/etc/default/hddtemp"
++
++get_config_file()
++{
++ config_field=$1
++ db_field=$2
++
++ if [ -f "$conffile" ] ; then
++ VALUE="$(grep "^[ ]*$config_field" $conffile | sed -e "s/^$config_field *= *\"\(.*\)\"/\1/g")"
++ if [ -n "$VALUE" ] ; then
++ db_set $db_field "$VALUE"
++ fi
++ fi
++}
++
++# Source debconf library -- we have a Depends line
++# to make sure it is there...
++. /usr/share/debconf/confmodule
++db_version 2.0
++
++if [ "$1" = configure -o "$1" = reconfigure ] ; then
++ db_input medium hddtemp/SUID_bit || true
++
++ get_config_file SYSLOG hddtemp/syslog
++ db_input medium hddtemp/syslog || true
++
++ get_config_file DAEMON hddtemp/daemon
++ get_config_file RUN_DAEMON hddtemp/daemon
++ db_input medium hddtemp/daemon || true
++
++ db_go
++
++ db_get hddtemp/daemon
++
++ if [ "$RET" = "true" ] ; then
++ get_config_file INTERFACE hddtemp/interface
++ db_input medium hddtemp/interface || true
++
++ get_config_file PORT hddtemp/port
++ db_input medium hddtemp/port || true
++
++ db_go
++ fi
++fi
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/postinst
++++ hddtemp-0.3-beta15/debian/postinst
+@@ -0,0 +1,146 @@
++#!/bin/sh
++# postinst script for hddtemp
++set -e
++
++conffile="/etc/default/hddtemp"
++
++update_config_file()
++{
++ db_field=$1
++ config_field=$2
++
++ RET=false
++ db_get $db_field
++ if [ -n "$RET" ] ; then
++ if grep -q "^$config_field" $conffile ; then
++ # keep any admin changes, while replacing the variable content
++ sed "s/^[ ]*$config_field=\".*\"/$config_field=\"$RET\"/" < $conffile > $conffile.new &&
++ mv $conffile.new $conffile
++ else
++ echo "$config_field=\"$RET\"" >> $conffile
++ fi
++ fi
++}
++
++# Source debconf library -- we have a Depends line
++# to make sure it is there...
++. /usr/share/debconf/confmodule
++db_version 2.0
++
++case "$1" in
++ configure)
++ if [ -f $conffile ] ; then
++ sed -i -e 's/^[ ]*DAEMON/RUN_DAEMON/g' \
++ -e 's/^[ ]*SYSLOG/RUN_SYSLOG/g' \
++ -e 's/^# Master system-wide hddtemp switch.*/# hddtemp network daemon switch. If set to true, hddtemp will listen/' \
++ -e 's/^# set to true. STOP THE SERVICE.*/# for incoming connections./' \
++ -e 's/^# Logging period.*temperatures.$/# Logging period (in seconds) for the temperatures. If set to a value\n# different than 0, hddtemp will run as a daemon periodically logging\n# the temperatures through syslog/' \
++ $conffile
++ if ! grep -q RUN_SYSLOG $conffile ; then
++ cat << EOF >> $conffile
++
++# Logging period (in seconds) for the temperatures. If set to a value
++# different than 0, hddtemp will run as a daemon periodically logging
++# the temperatures through syslog
++RUN_SYSLOG="0"
++EOF
++ fi
++ if ! grep -q OPTIONS $conffile ; then
++ cat << EOF >> $conffile
++
++# Other options to pass to hddtemp
++OPTIONS=""
++EOF
++ fi
++ if ! grep -q DISKS_NOPROBE $conffile ; then
++ cat << EOF >> $conffile
++
++# List of devices you want to use with hddtemp, but that would not be
++# probed for a working sensor.
++DISKS_NOPROBE=""
++EOF
++ fi
++ else
++ cat << EOF > $conffile
++# Defaults for hddtemp initscript (/etc/init.d/hddtemp)
++# This is a POSIX shell fragment
++
++# [automatically edited by postinst, do not change line format ]
++
++# hddtemp network daemon switch. If set to true, hddtemp will listen
++# for incoming connections.
++RUN_DAEMON="true"
++
++# List of devices you want to use with hddtemp. If none specified,
++# hddtemp will probe standard devices.
++#DISKS="/dev/hda"
++
++# List of devices you want to use with hddtemp, but that would not be
++# probed for a working sensor.
++DISKS_NOPROBE=""
++
++# IP address of the interface on which you want hddtemp to be bound
++# on. If none specified, goes to 127.0.0.1. Use 0.0.0.0 to bind hddtemp
++# on all interfaces.
++INTERFACE="127.0.0.1"
++
++# Port number on which you want hddtemp to listen on. If none specified,
++# the port 7634 is used.
++PORT="7634"
++
++# Database file to use. If none specified, /etc/hddtemp.db is used.
++#DATABASE="/etc/hddtemp.db"
++
++# Separator to use between fields. The default separator is '|'.
++#SEPARATOR="|"
++
++# Logging period (in seconds) for the temperatures. If set to a value
++# different than 0, hddtemp will run as a daemon periodically logging
++# the temperatures through syslog
++RUN_SYSLOG="0"
++
++# Other options to pass to hddtemp
++OPTIONS=""
++EOF
++ fi
++
++ update_config_file hddtemp/daemon RUN_DAEMON
++ update_config_file hddtemp/syslog RUN_SYSLOG
++ update_config_file hddtemp/interface INTERFACE
++ update_config_file hddtemp/port PORT
++
++ if ! dpkg-statoverride --list /usr/sbin/hddtemp 1>/dev/null 2>&1; then
++ # check if we are installing suid or not
++ RET=false
++ db_get hddtemp/SUID_bit
++ if [ "$RET" = "true" ]; then
++ chmod 4755 /usr/sbin/hddtemp
++ ln -sf /usr/sbin/hddtemp /usr/bin/hddtemp
++ ln -sf ../man8/hddtemp.8.gz /usr/share/man/man1/hddtemp.1.gz
++ else
++ chmod 0755 /usr/sbin/hddtemp
++ rm -f /usr/bin/hddtemp
++ rm -f /usr/share/man/man8/hddtemp.1.gz
++ fi
++ fi
++
++ db_stop
++
++ rm -f /etc/logcheck/ignore.d.workstation/hddtemp
++ ;;
++ abort-upgrade|abort-remove|abort-deconfigure)
++ ;;
++
++ *)
++ echo "postinst called with unknown argument \`$1'" >&2
++ exit 1
++ ;;
++esac
++
++
++# dh_installdeb will replace this with shell code automatically
++# generated by other debhelper scripts.
++
++#DEBHELPER#
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/control
++++ hddtemp-0.3-beta15/debian/control
+@@ -0,0 +1,17 @@
++Source: hddtemp
++Section: utils
++Priority: extra
++Maintainer: Aurelien Jarno <aurel32@debian.org>
++Build-Depends: debhelper (>> 5), autotools-dev, gettext (>> 0.10.1)
++Standards-Version: 3.9.3
++Homepage: http://www.guzu.net/linux/hddtemp.php
++
++Package: hddtemp
++Architecture: any
++Depends: ${shlibs:Depends}, ${misc:Depends}, lsb-base (>= 3.0-3)
++Suggests: ksensors
++Conflicts: ksensors (<< 0.7-8), gkrellm-hddtemp (<< 0.1-9)
++Description: hard drive temperature monitoring utility
++ The hddtemp program monitors and reports the temperature of PATA, SATA
++ or SCSI hard drives by reading Self-Monitoring Analysis and Reporting
++ Technology (S.M.A.R.T.) information on drives that support this feature.
+--- hddtemp-0.3-beta15.orig/debian/init
++++ hddtemp-0.3-beta15/debian/init
+@@ -0,0 +1,100 @@
++#!/bin/sh
++#
++# skeleton example file to build /etc/init.d/ scripts.
++# This file should be used to construct scripts for /etc/init.d.
++#
++# Written by Miquel van Smoorenburg <miquels@cistron.nl>.
++# Modified for Debian GNU/Linux
++# by Ian Murdock <imurdock@gnu.ai.mit.edu>.
++#
++# Version: @(#)skeleton 1.8 03-Mar-1998 miquels@cistron.nl
++#
++
++### BEGIN INIT INFO
++# Provides: hddtemp
++# Required-Start: $remote_fs $syslog $network
++# Required-Stop: $remote_fs $syslog $network
++# Default-Start: 2 3 4 5
++# Default-Stop: 0 1 6
++# Short-Description: disk temperature monitoring daemon
++# Description: hddtemp is a disk temperature monitoring daemon
++### END INIT INFO
++
++PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
++NAME=hddtemp
++DAEMON=/usr/sbin/$NAME
++DESC="disk temperature monitoring daemon"
++
++DISKS="/dev/hd[a-z] /dev/hd[a-z][a-z]"
++DISKS="$DISKS /dev/sd[a-z] /dev/sd[a-z][a-z]"
++DISKS="$DISKS /dev/sr[a-z] /dev/sr[a-z][a-z]"
++INTERFACE="0.0.0.0"
++PORT="7634"
++SEPARATOR="|"
++RUN_SYSLOG="0"
++
++# Reads config file (will override defaults above)
++[ -r /etc/default/hddtemp ] && . /etc/default/hddtemp
++
++if [ -n "$RUN_SYSLOG" ] && [ "$RUN_SYSLOG" != "0" ] ; then
++ SYSLOG_ARG="-S $RUN_SYSLOG"
++fi
++
++if [ "$RUN_DAEMON" = "true" ] || [ "$RUN_DAEMON" = "yes" ] ; then
++ DAEMON_ARG="-d -l $INTERFACE -p $PORT -s $SEPARATOR"
++fi
++
++[ -x "$DAEMON" ] || exit 0
++
++. /lib/lsb/init-functions
++
++case "$1" in
++ start)
++ # master switch
++ if [ -n "$DAEMON_ARG" ] || [ -n "$SYSLOG_ARG" ] ; then
++ log_daemon_msg "Starting $DESC" "$NAME:"
++ CDROMS_LIST=$(sed -ne 's/^drive name:\t\+\(.*\)$/ \/dev\/\1/p' /proc/sys/dev/cdrom/info 2>/dev/null) || :
++ CDROMS_LIST="$CDROMS_LIST $(grep -sl '^ide-scsi ' /proc/ide/hd*/driver | awk -F / '{ print "/dev/"$4 }')"
++ for disk in $DISKS ; do
++ echo $CDROMS_LIST | grep -wq $disk && continue
++ echo $DISKS_NOPROBE | grep -wq $disk && continue
++ if $DAEMON -wn $OPTIONS $disk 2>/dev/null | grep -q '^[0-9]\+$' ; then
++ DISKS_LIST="$DISKS_LIST $disk";
++ fi
++ done
++ if [ -n "$DISKS_LIST" ] || [ -n "$DISKS_NOPROBE" ] ; then
++ start-stop-daemon --start --quiet --exec $DAEMON -- $DAEMON_ARG $SYSLOG_ARG $OPTIONS $DISKS_NOPROBE $DISKS_LIST
++ ret=$?
++ log_progress_msg "$DISKS_NOPROBE$DISKS_LIST"
++ log_end_msg $ret
++ else
++ log_progress_msg "no disks with monitoring capability were found."
++ log_end_msg 0
++ fi
++ fi
++ ;;
++ stop)
++ # master switch
++ if [ "$RUN_DAEMON" = "true" ] || [ "$RUN_DAEMON" = "yes" ] || [ "$RUN_SYSLOG" != "0" ] ; then
++ log_daemon_msg "Stopping $DESC" "$NAME"
++ start-stop-daemon --stop --oknodo --exec $DAEMON --retry 30
++ log_end_msg $?
++ fi
++ ;;
++ force-reload|reload)
++ exit 3
++ ;;
++ restart)
++ $0 stop && $0 start
++ ;;
++ status)
++ status_of_proc $DAEMON $NAME
++ exit $?
++ ;;
++ *)
++ echo "Usage: /etc/init.d/$NAME {start|stop|restart|status}" >&2
++ exit 1
++ ;;
++esac
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/compat
++++ hddtemp-0.3-beta15/debian/compat
+@@ -0,0 +1 @@
++5
+--- hddtemp-0.3-beta15.orig/debian/README.Debian
++++ hddtemp-0.3-beta15/debian/README.Debian
+@@ -0,0 +1,14 @@
++README.Debian for hddtemp
++-------------------------
++
++This package include an init script (/etc/init.d/hddtemp) to run hddtemp
++in daemon mode. To enable and configure it, either use
++'dpkg-reconfigure hddtemp' or edit /etc/default/hddtemp.
++
++By default and when enable, the init script tries to find all disk that
++support SMART. If you get an error such as 'no disks with monitoring
++capability were found' or if an hard disk is not monitored, try to run
++'hddtemp /dev/xxx', with /dev/xxx being you hard disk device. You will
++see an explanation about why it fails.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Jul 2008 09:34:39 +0200
+--- hddtemp-0.3-beta15.orig/debian/hddtemp.db
++++ hddtemp-0.3-beta15/debian/hddtemp.db
+@@ -0,0 +1,169 @@
++#
++# Insert a regular expression for support of the model or the serie of your hard drive.
++# If you don't know what to put in the second field, put the number
++# that appears most often for your brand :o)
++# A value of zero meens that we know that the drive doesn't have
++# a temperature sensor (you can set the unit to C or F).
++#
++############################################################################
++# The following list was found at (http://www.almico.com/forumharddisks.php)
++# If your drive is in the list send me a mail.
++#
++# Manufacturer Model Size Notes
++# FUJITSU FUJITSU MPF3102AH 10.0GB
++# FUJITSU FUJITSU MPG3204AH E 20.0GB
++# FUJITSU FUJITSU MPG3307AT 30.0GB
++# FUJITSU FUJITSU MPG3409AH 40.0GB
++# FUJITSU FUJITSU MPG3409AH EF 40.0GB
++# HITACHI HITACHI_DK23CA-10 9.8GB
++# HITACHI HITACHI_DK23CA-15 14.7GB
++# SAMSUNG SAMSUNG SV3012H 29.4GB
++# SEAGATE ST310210A 10.0GB
++# SEAGATE ST310211A 9.8GB
++# SEAGATE ST310215A 10.0GB
++# SEAGATE ST315320A 14.9GB
++# SEAGATE ST320410A 19.6GB
++# SEAGATE ST320413A 19.6GB
++# SEAGATE ST320420A 19.9GB
++# SEAGATE ST330610A 29.3GB
++# SEAGATE ST330620A 29.3GB
++# SEAGATE ST330621A 29.3GB
++# SEAGATE ST330630A 29.9GB
++# SEAGATE ST340016A 39.1GB
++# SEAGATE ST340810ACE 39.1GB
++# SEAGATE ST380020ACE 78.2GB
++# WESTERN DIGITAL WDC AC210200D 10.0GB
++# WESTERN DIGITAL WDC AC29100D 8.9GB
++# WESTERN DIGITAL WDC AC420400D 19.9GB
++# WESTERN DIGITAL WDC WD102AA 10.0GB
++#
++#################################################
++
++########################################
++############# ExcelStor drives
++########################################
++# "ExcelStor Technology CT215" ??? ? "ExcelStor CT215"
++
++
++########################################
++############# Fujitsu drives
++########################################
++"FUJITSU MHM2100AT" 0 C "Fujitsu MHM2100AT"
++
++
++########################################
++############# Hitachi drives
++########################################
++"HITACHI_DK228A-65" 0 C "Hitachi DK228A-65"
++
++
++########################################
++############# IBM drives
++########################################
++
++# DJSA serie is using F0h command to report temperature and also have
++# SMART capabilties but it was reported not to work.
++# "DJSA-2(30|32|10|20|05)" 0 C "IBM Travelstar 20GN, 32GH, 30GT series"
++
++"IBM-DARA-212000" 0 C "IBM Travelstar 12GN"
++"IBM-DTTA-35*" 0 C "IBM Deskstar 16GP serie"
++
++# according to specifications they do not seems to have sensor
++# but I prefer waiting for a report
++#"IBM-DTTA-37*" 0 C "IBM Deskstar 14GXP serie"
++
++"IBM-DJNA-35.*" 231 C "IBM Deskstar 25 GP serie"
++"IBM-DJNA-37.*" 231 C "IBM Deskstar 22 GXP serie"
++"IBM-DHEA-(34330|36480)" 0 C "IBM Deskstar 5 serie"
++"IBM-DHEA-(34331|36481|38451)" 0 C "IBM Deskstar 8 serie"
++"IBM-DPTA-37.*" 231 C "IBM Deskstar 34GXP serie"
++"IBM-DPTA-35.*" 231 C "IBM Deskstar 37GP serie"
++
++
++########################################
++############# Maxtor drives
++########################################
++#"Maxtor 2B0[012][04568]H1" ??? C "Maxtor Fireball 541DX"
++# which one must I trust ?
++#"Maxtor 4D040H2" 9 C "Maxtor DiamondMax D540X-4D"
++#"Maxtor 4D040H2" 0 C "Maxtor 4D040H2"
++#"Maxtor 4D080H4" 12 C "Maxtor DiamondMax D540X-4D"
++#"Maxtor 4D060H3" 12 C "Maxtor DiamondMax D540X-4D"
++#"Maxtor 4D080H4" 9 C "Maxtor DiamondMax D540X-4D"
++"Maxtor 5(1024|1369|2049|2732|3073|4098)U(2|3|4|6|8)" 0 C "Maxtor DiamondMax Plus 40"
++"Maxtor 5T0[24]0H[24]" 0 C "Maxtor DiamondMax Plus 60"
++"Maxtor 94098U8" 11 C "Maxtor DiamondMax 40 94098U8"
++
++
++########################################
++############# Quantum drives
++########################################
++"QUANTUM FIREBALLP AS40.0" 0 C "Quantum Fireball AS40"
++"QUANTUM FIREBALL CX10.2A" 0 C "Quantum Fireball CX10.2A"
++#"QUANTUM FIREBALLlct10 20" 4 C "Quantum Fireball CT10 20GB"
++# I suspect the QUANTUM FIREBALL_TM2110A to have a sensor in field 9...
++# "QUANTUM FIREBALL_TM2110A" 9 C "Quantum Fireball TM2110A"
++
++
++########################################
++############# Samsung drives
++########################################
++# somenone reported a problem with the SP8004H which reports a temperature
++# 10°C below the ambient temperature
++"SAMSUNG SW0434A" 0 C "Samsung SW0434A"
++"SAMSUNG SV0432A" 0 C "Samsung SV0432A"
++"SAMSUNG SV3002H" 0 C "Samsung SpinPoint V30 serie"
++#"SAMSUNG SV(0221|0602|0813|1204)H" 9 C "Samsung SpinPoint V60 serie"
++
++
++########################################
++############# Seagate drives
++########################################
++"Seagate Technology 1275MB - ST31276A" 0 C "Seagate ST31276A"
++"ST3412A" 0 C "Seagate ST3412A"
++"ST38641A" 0 C "Seagate ST38641A"
++"ST310210A" 0 C "Seagate ST310210A"
++"ST310220A" 0 C "Seagate ST310220A"
++# SEAGATE ST313021A 13.0GB
++"ST313021A" 0 C "Seagate U8 ST313021A"
++"ST310240A" 0 C "Seagate Medalist 10240 Ultra ATA-3"
++"ST320423A" 0 C "Seagate U10 20423, Ultra ATA/66"
++
++
++########################################
++############# TOSHIBA Laptops
++########################################
++"MK4313MAT" 220 C "Toshiba MK4313MAT"
++"TOSHIBA MK1517GAP" 0 C "Toshiba MK1517GAP"
++"TOSHIBA MK2018GAS" 226 F "Toshiba MK2018GAS"
++
++"TOSHIBA MK3017GAP" 0 C "Toshiba MK3017GAP"
++
++#"TOSHIBA MK4019GAX" 222 C "Toshiba MK4019GAX"
++
++
++########################################
++############# Western Digital drives
++########################################
++# WDC AC310100B and WDC AC2850F are reported not working
++# no more informations were given
++"WDC AC22000L" 0 C "Western Digital Caviar AC22000"
++"WDC AC420400D" 231 C "Western Digital Caviar AC420400D"
++"WDC AC418000D" 231 C "Western Digital AC418000D"
++"WDC WD135BA" 231 C "Western Digital WD135BA"
++
++"WDC WD100EB-00BHF0" 0 C "Western Digital 100EB-00BHF0"
++"WDC WD200BB-00AUA1" 0 C "Western Digital Caviar WD200BB"
++#"WDC WD200BB-60DGA0" 0 C "Western Digital Caviar WD200BB"
++"WDC WD300BB-00CAA0" 0 C "Western Digital WD300BB"
++"WDC WD400BB-00CAA0" 0 C "Western Digital 400BB-00CAA0"
++#"WDC WD400BB-00GFA0" 0 C ""
++"WDC WD400BB-(18CA|00DE)A0" 0 C "Western Digital Caviar WD400BB"
++"WDC WD400EB-00CPF0" 0 C "Western Digital 400EB-00CPF0"
++"WDC WD600BB-32BSA0" 0 C "Western Digital 600BB-32BSA0"
++"WDC WD800BB-00CAA1" 0 C "Western Digital WD800BB-00CAA1"
++"WDC WD800JB-00CRA1" 0 C "Western Digital Caviar WD800JB"
++
++# not sure for next
++# "WDC WD1200JB-00CRA1" 9 C "Western Digital 1200JB-00CRA1"
++# "WDC WD273BA" 9 C "Western Digital WD273BA"
+--- hddtemp-0.3-beta15.orig/debian/po/cs.po
++++ hddtemp-0.3-beta15/debian/po/cs.po
+@@ -0,0 +1,159 @@
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-05 21:54+0100\n"
++"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
++"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Má se /usr/sbin/hddtemp nainstalovat jako SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Máte možnost nainstalovat hddtemp s nastaveným SUID bitem, což znamená, že "
++"jej kromÄ správce budou moci spouÅ¡tÄt i bÄžnà uživatelé (a zjišťovat teplotu "
++"pevného disku)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Takto nastavený hddtemp může být potenciálnÄ využit ke kompromitovánà "
++"poÄÃtaÄe. Pokud si nejste jisti, pak je lepšà tuto možnost zamÃtnout."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "ZmÄnÃte-li pozdÄji názor, staÄà spustit âdpkg-reconfigure hddtempâ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Interval mezi kontrolami teploty pevného disku:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"hddtemp může zaznamenávat teplotu pevného disku (pevných disků) pÅes obecné "
++"logovacà rozhranà systému."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Zadejte poÄet sekund odpovÃdajÃcà dobÄ mezi po sobÄ jdoucÃmi mÄÅenÃmi. Pro "
++"zakázánà této vlastnosti jednoduše zadejte 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Má se daemon hddtemp spouÅ¡tÄt pÅi startu poÄÃtaÄe?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Program hddtemp může bÄžet jako daemon a Äekat na portu 7634 na pÅÃchozà "
++"spojenÃ. Takto může být využÃván programy typu gkrellm pro zjiÅ¡tÄnà aktuálnà "
++"teploty pevných disků."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Máte možnost spouÅ¡tÄt daemona hddtemp automaticky pÅi startu systému. Pokud "
++"si nejste jisti, pak jej radÄji pÅi startu systému nespouÅ¡tÄjte."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "RozhranÃ, na kterém naslouchat:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Program hddtemp může oÄekávat pÅÃchozà spojenà na konkrétnÃm rozhranà nebo "
++"na vÅ¡ech rozhranÃch."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Aby poslouchal na konkrétnÃm rozhranÃ, zadejte IP adresu daného rozhranà "
++"(127.0.0.1 znamená, že bude pÅijÃmat pouze lokálnà spojenÃ). Pokud chcete, "
++"aby poslouchal na vÅ¡ech rozhranÃch, zadejte 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, na kterém naslouchat:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"hddtemp standardnÄ oÄekává pÅÃchozà spojenà na portu 7634. Pokud vám tento "
++"port nevyhovuje, můžete zadat jiný."
+--- hddtemp-0.3-beta15.orig/debian/po/fr.po
++++ hddtemp-0.3-beta15/debian/po/fr.po
+@@ -0,0 +1,159 @@
++# Translation of hddtemp debconf templates to French
++# Copyright (C) 2008 Christian Perrier <bubulle@debian.org>
++# This file is distributed under the same license as the hddtemp package.
++#
++# Michel Grentzinger <mic.grentz@online.fr>, 2003.
++# Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>
++# Christian Perrier <bubulle@debian.org>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: \n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-10 12:20+0100\n"
++"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
++"Language-Team: French <debian-l10n-french@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"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Faut-il exécuter hddtemp avec les privilèges du superutilisateur ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Il est possible d'installer hddtemp avec le bit « setuid » positionné, ce qui "
++"lui permet d'être exécuté (et donc d'indiquer la température des disques "
++"durs) par les utilisateurs non privilégiés et pas seulement le "
++"superutilisateur."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Cela peut théoriquement permettre d'utiliser hddtemp pour une attaque visant "
++"à compromettre la sécurité du système. Dans le doute, il est conseillé ne de "
++"pas activer cette option."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Ce choix peut être modifié ultérieurement avec la commande « dpkg-reconfigure "
++"hddtemp »."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervalle entre deux contrôles de température :"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"La température des disques durs peut être enregistrée par hddtemp et "
++"restituée par l'interface standard de journalisation du système."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Veuillez choisir l'intervalle en secondes entre deux mesures. Indiquez 0 "
++"pour désactiver cette fonctionnalité."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Faut-il lancer automatiquement le démon hddtemp au démarrage ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Le programme hddtemp peut être lancé en tant que démon, à l'écoute sur le "
++"port 7634. Ce démon est utilisé par certains logiciels tel que gkrellm pour "
++"obtenir la température des disques durs."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Ce démon peut être lancé automatiquement au démarrage de l'ordinateur. Dans "
++"le doute, il est suggéré de ne pas activer cette option."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interface où hddtemp sera à l'écoute :"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Le programme hddtemp peut être à l'écoute de connexions entrantes sur une "
++"interface spécifique ou sur toutes les interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Pour écouter sur une interface spécifique, indiquez l'adresse IP de cette "
++"interface (en choisissant 127.0.0.1, seules les connexions locales seront "
++"acceptées). Pour écouter sur toutes les interfaces, saisissez simplement "
++"0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port sur lequel hddtemp sera à l'écoute :"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Par défaut, hddtemp attend les connexions entrantes sur le port 7634. Ce "
++"port peut être modifié si nécessaire."
+--- hddtemp-0.3-beta15.orig/debian/po/vi.po
++++ hddtemp-0.3-beta15/debian/po/vi.po
+@@ -0,0 +1,154 @@
++# Vietnamese Translation for hddtemp.
++# Copyright © 2008 Free Software Foundation, Inc.
++# Clytie Siddall <clytie@riverland.net.au>, 2005-2008.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta15-36\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-13 21:06+1030\n"
++"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
++"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=utf-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=1; plural=0;\n"
++"X-Generator: LocFactoryEditor 1.7b3\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Có nên cà i Äặt SUID root « /usr/sbin/hddtemp » không?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Bạn có tùy chá»n cà i Äặt phần má»m hddtemp vá»i bit SUID Äã Äặt, do Äó cho phép "
++"nó ÄÆ°á»£c chạy bá»i các ngưá»i dùng bình thưá»ng, không phải chá» siêu ngưá»i dùng."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Tuy nhiên, Äặt bit SUID cÅ©ng có thá» cho phép ngưá»i hiá»m Äá»c dùng hddtemp khi "
++"tấn công bảo máºt cá»§a máy tÃnh nà y. Vì váºy nếu bạn chưa chắc chắn, Äừng báºt "
++"tùy chá»n nà y."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"CÅ©ng có thá» sá»a Äá»i thiết láºp nà y vá» sau, bằng cách chạy lá»nh cấu hình lại « "
++"dpkg-reconfigure hddtemp »."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Khoảng giữa hai lần kiá»m tra nhiá»t Äá» cá»§a ÄÄ©a cứng:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Nhiá»t Äá» cá»§a những ÄÄ©a cứng có thá» ÄÆ°á»£c ghi lưu bá»i hddtemp thông qua giao "
++"diá»n ghi lưu há» thá»ng chung."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Hãy nháºp má»t giá trá» theo giây mà tương ứng vá»i khoảng thá»i gian giữa hai "
++"lần kiá»m tra. Äá» tắt tÃnh nÄng nà y, chá» ÄÆ¡n giản nháºp sá» 0 á» Äây."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Có nên khá»i chạy trình ná»n hddtemp khi khá»i Äá»ng há» thá»ng không?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Chương trình hddtemp cÅ©ng có thá» chạy dưá»i dạng trình ná»n (daemon), lắng "
++"nghe trên cá»ng 7634 tìm kết ná»i gá»i Äến. Trình ná»n nà y ÄÆ°á»£c dùng bá»i má»t sá» "
++"phần má»m (v.d. gkrellm) Äá» lấy nhiá»t Äá» cá»§a các ÄÄ©a cứng."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Tùy chá»n bạn có thá» tá»± Äá»ng khá»i chạy trình ná»n hddtemp khi khá»i Äá»ng há» "
++"thá»ng. Chưa chắc chắc thì khuyên bạn không báºt tùy chá»n nà y."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Giao diá»n trên Äó cần lắng nghe:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Chương trình hddtemp có thá» lắng nghe kết ná»i gá»i Äến trên má»t giao diá»n dứt "
++"khoát, hoặc trên má»i giao diá»n."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Äá» lắng nghe trên má»t giao diá»n cụ thá», hãy nháºp Äá»a chá» IP cá»§a giao diá»n Äó "
++"(giá trỠ« 127.0.0.0 » sẽ chá» chấp nháºn kết ná»i cục bá»). Äá» lắng nghe trên "
++"má»i giao diá»n, chá» ÄÆ¡n giản hãy nháºp Äá»a chỠ« 0.0.0.0 »."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Cá»ng trên Äó cần lắng nghe:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Mặc Äá»nh là hddtemp lắng nghe kết ná»i gá»i Äến trên cá»ng 7634. CÅ©ng có thá» "
++"thay Äá»i nó thà nh má»t cá»ng khác."
+--- hddtemp-0.3-beta15.orig/debian/po/pt_BR.po
++++ hddtemp-0.3-beta15/debian/po/pt_BR.po
+@@ -0,0 +1,205 @@
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta7-1\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2007-12-11 15:33+0100\n"
++"Last-Translator: Tiago Bortoletto Vaz <tiago@debian-ba.org>\n"
++"Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-1\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#, fuzzy
++#| msgid "Do you want /usr/sbin/hddtemp to be installed SUID root?"
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Deseja que o /usr/sbin/hddtemp seja instalado SUID root ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#, fuzzy
++#| msgid "Do you want to start the hddtemp daemon on startup?"
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Deseja iniciar o daemon hddtemp na inicialização do sistema ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#, fuzzy
++#| msgid ""
++#| "hddtemp can be run as a daemon, listening on port 7634 for incoming "
++#| "connections. It is used some by software such as gkrellm to get the "
++#| "temperature of the hard drives."
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"O hddtemp pode ser executado com um daemon, ouvindo na porta 7634 por "
++"conexões entrantes. O mesmo é usado por alguns softwares como o gkrellm-"
++"hddtemp para obter a temperatura dos discos rígidos."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#, fuzzy
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Você tem a opção de iniciar o daemon hddtemp automaticamente na "
++"inicialização de seu computador. Caso esteja em dúvida, é sugerido que você "
++"não inicie o hddtemp automaticamente na inicialização de seu computador. "
++"Caso você mude de idéia posteriormente você poderá executar o comando 'dpkg-"
++"reconfigure hddtemp' para mudar essa configuração."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#, fuzzy
++#| msgid ""
++#| "hddtemp can listen for incoming connections on a specific interface, or "
++#| "on all interfaces."
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"O hddtemp pode ouvir por conexões entrantes em uma interface específica ou "
++"em todas as interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#, fuzzy
++#| msgid ""
++#| "To listen on a specific interface, enter the IP address of that "
++#| "interface (127.0.0.1 which is the default value corresponds to the lo "
++#| "interface). To listen on all interfaces, simply enter 0.0.0.0."
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para ouvir em uma interface específica, informe o endereço IP da interface "
++"em questão (o endereço padrão 127.0.0.1 corresponde a interface lo). Para "
++"ouvir e todas as interfaces, simplesmente informe o endereço 0.0.0.0 ."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:6001
++#, fuzzy
++#| msgid ""
++#| "By default, hddtemp listen for incoming connections on port 7634. However "
++#| "if you don't find this port appropriate, you can enter an other one."
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Por padrão, o hddtemp escuta por conexões entrantes na porta 7634. Porém "
++"caso você ache que essa não seja a porta apropriada, você pode informar uma "
++"outra porta."
++
++#~ msgid "You have the option of installing hddtemp with the SUID bit set."
++#~ msgstr "Você tem a opção de instalar o hddtemp com o bit de SUID ligado."
++
++#~ msgid ""
++#~ "If you make hddtemp SUID, unprivileged users of your systems will be able "
++#~ "to run it. This could, however, potentially allow hddtemp to be used "
++#~ "during a security attack on your computer. If in doubt, it is suggested "
++#~ "to install it without SUID. If you later change your mind, you can run: "
++#~ "'dpkg-reconfigure hddtemp'."
++#~ msgstr ""
++#~ "Caso você permita que o hdddtemp seja instalado com o bit de SUID ligado, "
++#~ "usuários não privilegiados de seu sistema serão capazes de executá-lo. "
++#~ "Isso pode, porém, potencialmente permitir que o hddtemp seja usado "
++#~ "durante um ataque contra a segurança de seu computador. Caso esteja em "
++#~ "dúvida, é sugerido que vcê instale o hddtemp sem o bit de SUID ligado. "
++#~ "Caso você mude de idéia posteriormente, você poderá executar o comando "
++#~ "'dpkg-reconfigure hddtemp' para mudar essa suaconfiguração."
++
++#, fuzzy
++#~ msgid "At which interval do you want to log the temperatures?"
++#~ msgstr "Em qual interface você deseja que o hddtemp escute ?"
++
++#~ msgid "On which interface do you want hddtemp to listen on?"
++#~ msgstr "Em qual interface você deseja que o hddtemp escute ?"
++
++#~ msgid "On which port do you want hddtemp to listen on?"
++#~ msgstr "Em qual porta você deseja que o hddtemp escute ?"
+--- hddtemp-0.3-beta15.orig/debian/po/ru.po
++++ hddtemp-0.3-beta15/debian/po/ru.po
+@@ -0,0 +1,156 @@
++# 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 <kozlov.y@gmail.com>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: 0.3-beta15-39\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-27 19:15+0300\n"
++"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\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: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "УÑÑановиÑÑ /usr/sbin/hddtemp как SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"ÐÑ Ð¼Ð¾Ð¶ÐµÑе вÑбÑаÑÑ ÑÑÑÐ°Ð½Ð¾Ð²ÐºÑ hddtemp Ñ Ð²ÐºÐ»ÑÑÑннÑм SUID биÑом, ÑÑÐ¾Ð±Ñ ÐµÑ Ð¼Ð¾Ð¶Ð½Ð¾ "
++"бÑло запÑÑкаÑÑ Ð¿ÑоÑÑÑм полÑзоваÑелÑм (Ð´Ð»Ñ Ð¿Ð¾Ð»ÑÑÐµÐ½Ð¸Ñ ÑемпеÑаÑÑÑ Ð¶ÑÑÑкиÑ
"
++"диÑков), а не ÑолÑко ÑÑпеÑполÑзоваÑелÑ."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"ÐоÑенÑиалÑно, ÑÑо Ð¼Ð¾Ð¶ÐµÑ Ð¿Ð¾Ð·Ð²Ð¾Ð»Ð¸ÑÑ Ð¸ÑполÑзоваÑÑ hddtemp Ð´Ð»Ñ Ð½Ð°ÑÑÑÐµÐ½Ð¸Ñ "
++"компÑÑÑеÑной безопаÑноÑÑи. ÐÑли не ÑвеÑенÑ, оÑвеÑÑÑе оÑÑиÑаÑелÑно."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"ÐÑÑ Ð½Ð°ÑÑÑÐ¾Ð¹ÐºÑ Ð¼Ð¾Ð¶Ð½Ð¾ позже измениÑÑ Ð·Ð°Ð¿ÑÑÑив 'dpkg-reconfigure hddtemp'."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "ÐнÑеÑвал Ð¼ÐµÐ¶Ð´Ñ Ð¿ÑовеÑками ÑемпеÑаÑÑÑÑ Ð¶ÑÑÑкого диÑка:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"ТемпеÑаÑÑÑа жÑÑÑкого диÑка(ов) Ð¼Ð¾Ð¶ÐµÑ Ð±ÑÑÑ Ð¿ÑоÑоколиÑоваÑÑÑÑ hddtemp Ñ "
++"помоÑÑÑ ÑÑандаÑÑного ÑиÑÑемного инÑеÑÑейÑа пÑоÑоколиÑованиÑ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"ÐведиÑе знаÑение инÑеÑвала в ÑекÑндаÑ
Ð¼ÐµÐ¶Ð´Ñ Ð¿ÑовеÑками. ÐÐ»Ñ Ð²ÑклÑÑÐµÐ½Ð¸Ñ "
++"пÑовеÑок введиÑе 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "ÐапÑÑкаÑÑ ÑеÑÐ²Ð¸Ñ hddtemp пÑи ÑÑаÑÑе компÑÑÑеÑа?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"ÐÑогÑамма hddtemp Ð¼Ð¾Ð¶ÐµÑ ÑабоÑаÑÑ Ð² виде ÑеÑвиÑа, пÑÐ¸Ð½Ð¸Ð¼Ð°Ñ Ð·Ð°Ð¿ÑоÑÑ Ð½Ð° поÑÑÑ "
++"7634. ÐÑо иÑполÑзÑеÑÑÑ Ð½ÐµÐºÐ¾ÑоÑÑм ÐÐ, напÑÐ¸Ð¼ÐµÑ gkrellm, Ð´Ð»Ñ Ð¿Ð¾Ð»ÑÑÐµÐ½Ð¸Ñ "
++"ÑемпеÑаÑÑÑÑ Ð¶ÑÑÑкиÑ
диÑков."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"СейÑÐ°Ñ Ð²Ñ Ð¼Ð¾Ð¶ÐµÑе вклÑÑиÑÑ Ð°Ð²ÑомаÑиÑеÑкий запÑÑк ÑеÑвиÑа hddtemp во вÑÐµÐ¼Ñ "
++"загÑÑзки ÑиÑÑемÑ. ÐÑли не ÑвеÑенÑ, вÑбеÑиÑе не запÑÑкаÑÑ ÑÑÑ Ð¿ÑогÑÐ°Ð¼Ð¼Ñ Ð²Ð¾ "
++"вÑÐµÐ¼Ñ Ð·Ð°Ð³ÑÑзки."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "ÐнÑеÑÑÐµÐ¹Ñ Ð¿ÑиÑма запÑоÑов:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"ÐÑогÑамма hddtemp Ð¼Ð¾Ð¶ÐµÑ Ð¿ÑинимаÑÑ Ð²Ñ
одÑÑие запÑоÑÑ Ð½Ð° опÑеделÑнном "
++"инÑеÑÑейÑе или Ñо вÑеÑ
инÑеÑÑейÑов."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"ÐÐ»Ñ Ð¿ÑиÑма на конкÑеÑном инÑеÑÑейÑа введиÑе IP-адÑÐµÑ ÑÑого инÑеÑÑейÑа (ввод "
++"127.0.0.1 обеÑпеÑÐ¸Ñ Ð¿ÑиÑм ÑолÑко локалÑнÑÑ
запÑоÑов). ÐÐ»Ñ Ð¿ÑиÑма запÑоÑов Ñо "
++"вÑеÑ
инÑеÑÑейÑов, введиÑе 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "ÐоÑÑ Ð¿ÑиÑма запÑоÑов:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Ðо ÑмолÑаниÑ, hddtemp пÑÐ¸Ð½Ð¸Ð¼Ð°ÐµÑ Ð²Ñ
одÑÑие запÑоÑÑ Ñ Ð¿Ð¾ÑÑа 7634. ÐдеÑÑ Ð¼Ð¾Ð¶Ð½Ð¾ "
++"задаÑÑ Ð´ÑÑгой Ð½Ð¾Ð¼ÐµÑ Ð¿Ð¾ÑÑа."
+--- hddtemp-0.3-beta15.orig/debian/po/sv.po
++++ hddtemp-0.3-beta15/debian/po/sv.po
+@@ -0,0 +1,127 @@
++# 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.
++# , fuzzy
++#
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta14-1\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-07-27 09:49+0200\n"
++"Last-Translator: Martin Bagge <brother@bsnet.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\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Vill du att /usr/sbin/hddtemp ska installeras som SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "You have the option of installing hddtemp with the SUID bit set, allowing it to be run (reporting hard drive temperatures) by regular users and not only the superuser."
++msgstr "Du kan installera hddtemp med SUID, då kan programmet köras av vanliga användare och inte bara superanvändare."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "This could potentially allow hddtemp to be used during an attack against the computer's security. If in doubt, do not choose this option."
++msgstr "Detta kan bidra till att intrång kan genomföras om det skulle finnas fel i hddtemp som någon nyttjar för att skaffa otillåten åtkomst. Om du är minsta osäker ska du inte aktivera detta alternativ."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#: ../templates:4001
++msgid "This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "Denna inställning kan ändras senare genom att köra 'dpkg-reconfige hddtemp'"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervall mellan temperaturmätningar:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "The temperature of the hard drive(s) can be logged by hddtemp via the generic system logging interface."
++msgstr "Temperaturen för hårddisken/hårddiskarna kan loggas i det vanliga loggningssystemet."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Please enter a value in seconds corresponding to the interval between two checks. To disable this feature, enter 0."
++msgstr "Ange ett värde i sekunder som anger intervallen mellan två mätningar. För att inaktivera den här funktionen, ange 0 som värde."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Vill du starta hddtemp-tjänsten när systemet startas upp?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "The hddtemp program can be run as a daemon, listening on port 7634 for incoming connections. It is used by some software such as gkrellm to get the temperature of hard drives."
++msgstr "hddtemp kan köras som en tjänst som lyssnar på port 7634 efter inkommande anslutningar. Den används av programvara såsom gkrellm för att läsa av temperaturen på hårddiskarna."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "You have the option of starting the hddtemp daemon automatically on system boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr "Du har alternativet att starta hddtemp-tjänsten automatiskt när datorn startas upp. Om du är osäker föreslår jag att du inte startar den automatiskt vid uppstarten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Gränssnitt att lyssna på:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "The hddtemp program can listen for incoming connections on a specific interface, or on all interfaces."
++msgstr "hddtemp kan lyssna efter inkommande anslutningar på specifika nätverksgränssnitt eller på gränssnitt."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"För att lyssna på ett specifik nätverkgränssnitt, ange IP-adressen på det "
++"gränssnittet (127.0.0.1, vilket är standardvärdet för gränssnittet lo). För "
++"att lyssna på alla, ange 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port att lyssna på:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Som standard lyssnar hddtemp efter inkommande anslutningar på port 7634. Om "
++"du anser att denna port inte är lämplig kan du ange en annan port här."
++
+--- hddtemp-0.3-beta15.orig/debian/po/da.po
++++ hddtemp-0.3-beta15/debian/po/da.po
+@@ -0,0 +1,158 @@
++# Danish translation hddtemp.
++# Copyright (C) 2010 hddtemp & nedenstående oversættere.
++# This file is distributed under the same license as the hddtemp package.
++# Claus Hindsgaul <claus_h@image.dk>, 2004, 2005.
++# Claus Hindsgaul <claus.hindsgaul@gmail.com>, 2006.
++# Joe Hansen (joedalton2@yahoo.dk), 2010.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2010-11-10 12:42+0000\n"
++"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
++"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1);\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Skal /usr/sbin/hddtemp installeres SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Du har muligheden for at installere hddtemp med sættet SUID bit, og tillade "
++"den at blive kørt (rapportering af temperaturer for harddiske) af normale "
++"brugere og ikke kun superbrugeren."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Dette kan potentielt tillade hddtemp at blive brugt under et angreb mod "
++"computerens sikkerhed. Hvis du er i tvivl, så vælg ikke denne indstilling."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Denne indstilling kan ændres senere ved at køre »dpkg-reconfigure hddtemp«."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Tidsrum mellem to tjek af temperaturen på harddisken:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Temperaturen på harddiskene kan logges af hddtemp via den generiske "
++"grænseflade til systemlogning."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Indtast venligst en værdi i sekunder, der angiver intervallet mellem to tjek. "
++"Du kan deaktivere denne funktion ved at skrive 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Skal hddtemp-dæmonen igangsættes ved opstart?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Programmet hddtemp kan køres som en dæmon, der lytter på port 7634 efter "
++"indkommende forbindelser. Programmet bruges af bestemte programmer såsom "
++"gkrellm til at hente harddiskenes temperaturer."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Du har mulighed for at igangsætte hddtemp-dæmonen automatisk under opstart. "
++"Hvis du er i tvivl, foreslås det, at du ikke igangsætter den automatisk under "
++"opstarten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Netkort, der skal lyttes på:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Programmet hddtemp kan lytte efter indkommende forbindelser på et bestemt "
++"netkort eller på alle netkort."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"For at lytte til et bestemt netkort, skal du angive IP-adressen på dette "
++"(valg af 127.0.0.1 vil kun acceptere lokale forbindelser). For at "
++"lytte på alle netkort indtastes 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, der skal lyttes på:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Som udgangspunkt vil hddtemp lytte efter indkommende forbindelser på port "
++"7634. Dette kan ændres til et andet nummer."
++
++
+--- hddtemp-0.3-beta15.orig/debian/po/pt.po
++++ hddtemp-0.3-beta15/debian/po/pt.po
+@@ -0,0 +1,158 @@
++# translation of pt.po to portugues
++# Portuguese translation for hddtemp
++# Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
++# This file is distributed under the same license as the hddtemp package.
++#
++# Miguel Figueiredo <elmig@debianpt.org>, 2006, 2007.
++# Bruno Queiros <brunomiguelqueiros@sapo.pt>, 2007.
++# Bruno Queiros <bqueiros@gmail.com>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: pt\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-10 19:48+0000\n"
++"Last-Translator: Bruno Queiros <bqueiros@gmail.com>\n"
++"Language-Team: portugues <pt@li.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"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Deve o /usr/sbin/hddtemp ser instalado com SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Você tem a opção de instalar o hddtemp com o SUID, permitindo-o ser "
++"executado (relatar temperaturas do disco rigido) por utilizadores normais e "
++"não apenas pelo super utilizador."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Isto pode potencialmente permitir que o hddtemp seja utilizado num ataque "
++"contra a segurança do computador. Em caso de dúvida, não escolha esta opção."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Esta opção pode ser modificada mais tarde executando 'dpkg-reconfigure "
++"hddtemp'."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervalo entre verificações da temperatura do disco rigido:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"A temperatura do(s) disco(s) rÃgido(s) podem ser guardados pelo hddtemp "
++"através da interface genérica do sistema para guardar registos."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Por favor introduza um valor em segundos correspondendo ao intervalo entre "
++"duas verificações. Para desactivar esta opção, introduza 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Deseja iniciar o daemon hddtemp no arranque?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"O programa hddtemp pode ser executado como um daemon, Ã escuta na porta "
++"7634. Ã utilizada por alguns programas como o gkrellm para obter a "
++"temperatura dos discos rÃgidos."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Você tem a opção de executar o daemon hddtemp automaticamente no arranque do "
++"sistema. Se estiver em dúvida, é sugerido que não o inicie automaticamente "
++"no arranque."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interface para utilizar na escuta:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"O programa hddtemp pode escutar por ligações de entrada numa interface "
++"especÃfica, ou em todas as interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para escutar numa interface especÃfica, introduza o endereço IP dessa "
++"interface (escolhendo 127.0.0.1 irá aceitar apenas ligações locais). Para "
++"escutar em todas as interfaces, introduza 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Porta a utilizar na escuta:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"O hddtemp escuta por ligações de entrada na porta 7634 por pré-definição. "
++"Isto pode ser alterado para outra porta."
+--- hddtemp-0.3-beta15.orig/debian/po/eu.po
++++ hddtemp-0.3-beta15/debian/po/eu.po
+@@ -0,0 +1,111 @@
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++# Piarres Beobide <pi+debian@beobide.net>, 2008.
++
++
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp-debconf\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-14 12:11+0100\n"
++"Last-Translator: Piarres Beobide <pi+debian@beobide.net>\n"
++"Language-Team: Euskara <Librezale@librezale.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=utf-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "/usr/sbin/hddtemp SUID bit-a gaiturik duela instalatu behar da?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "You have the option of installing hddtemp with the SUID bit set, allowing it to be run (reporting hard drive temperatures) by regular users and not only the superuser."
++msgstr "Zuk hddtemp SUID bit-a ezarria duela instalatzeko aukera duzu supererabiltzaileak bakarrik beharrean erabiltzaile arrunti exekutatzeko (disko gogor tenperaturak erreportatzeko) baimena emanez."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "This could potentially allow hddtemp to be used during an attack against the computer's security. If in doubt, do not choose this option."
++msgstr "Honek ordenagailuari eraso batetan hddtemp erabiltzeko aukera ematen du. Zalantzarik baduzu ez hautatu aukera hau."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#: ../templates:4001
++msgid "This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "Ezarpen hau beranduago aldatu daiteke 'dpkg-reconfigure hddtemp' abiaraziz."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Disko gogor tenperatura arakatzeen arteko denbora tartea:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "The temperature of the hard drive(s) can be logged by hddtemp via the generic system logging interface."
++msgstr "Hddtemp-ek disko gorren tenperatura sistemako erregistro interfaze orokorraren bidez erregistratu dezake."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Please enter a value in seconds corresponding to the interval between two checks. To disable this feature, enter 0."
++msgstr "Mesedez idatzi bi arakatzeen arteko denbora tartea segunduetan. Ezaugarri hau ezgaitzeko 0 ezarri."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Hddtemp deabrua sistema abiaraztean abiarazi behar al da?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "The hddtemp program can be run as a daemon, listening on port 7634 for incoming connections. It is used by some software such as gkrellm to get the temperature of hard drives."
++msgstr "Hddtemp programa deabru bat bezala erabili daiteke, sarrera konexioak 7624 atakan entzungo ditu. Hau gkrellm bezalako zenbait softwarek disko gogorren tenperatura eskuratzeko erabiltzen dute."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "You have the option of starting the hddtemp daemon automatically on system boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr "Zuk hddtemp deabrua sistema abiaraztean automatikoki abiarazteko aukera duzu. Zalantzarik baduzu abioan ez automatikoki abiaraztea gomendatzen da."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Entzungo den interfazea:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "The hddtemp program can listen for incoming connections on a specific interface, or on all interfaces."
++msgstr "Hddtemp programak sarrera konexioak interfaze zehatz batetan bakarrik edo guztietan entzuteko aukera du."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "To listen on a specific interface, enter the IP address of that interface (choosing 127.0.0.1 will accept local connections only). To listen on all interfaces, enter 0.0.0.0."
++msgstr "Interfaze zehatz batetan entzuteko, idatzi interfaze horren IP helbidea (127.0.0.1 ipiniaz konexioa lokalak bakarrik onartuko dira). Interfaze guztietan entzuteko , 0.0.0.0 idatzi."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Entzuteko ataka:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "By default, hddtemp listens for incoming connections on port 7634. This can be changed for another port number."
++msgstr "Lehenetspen modura hddtemp-ek sarrera konexioak 7634 atakan entzungo ditu. Auker ahonen bidez betste ataka bat ezartzeko auekra dago."
++
+--- hddtemp-0.3-beta15.orig/debian/po/it.po
++++ hddtemp-0.3-beta15/debian/po/it.po
+@@ -0,0 +1,155 @@
++# Italian translation of the hddtemp debconf template
++# This file is distributed under the same license as the hddtemp package
++# Copyright (C) 2008 Free Software Foundation, Inc.
++# Luca Monducci <luca.mo@tiscali.it>, 2008.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-09 21:52+0100\n"
++"Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n"
++"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Installare /usr/sbin/hddtemp con il SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Ã possibile installare hddtemp con il bit SUID attivo, questo consente a un "
++"utente normale, e non solo al superuser, di eseguire il programma "
++"(riportando le temperature dei dischi)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Questo potrebbe permettere l'uso di hddtemp durante un attacco alla "
++"sicurezza del sistema. In caso di dubbi, non attivare questa opzione."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"In seguito, per modificare questa impostazione si può usare \"dpkg-"
++"reconfigure hddtemp\"."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervallo fra due controlli della temperatura dei dischi:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"La temperatura dei dischi può essere registrata da hddtemp tramite "
++"l'interfaccia generica offerta dal log di sistema."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Inserire il valore in secondi corrispondente all'intervallo fra due "
++"controlli. Per non utilizzare questa funzionalità inserire 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Far partire il demone hddtemp all'avvio del sistema?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Il programma hddtemp può essere avviato come un demone in ascolto di "
++"connessioni in arrivo sulla porta 7634. Viene usato da programmi come "
++"gkrellm per recuperare la temperatura dei dischi fissi."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Ã possibile far partire automaticamente il demone hddtemp all'avvio del "
++"sistema. In caso di dubbi, si suggerisce di non far partire il demone "
++"all'avvio."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interfaccia su cui ascoltare:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Il programma hddtemp può mettersi in ascolto di connessioni in arrivo su una "
++"particolare interfaccia oppure su tutte."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Per ascoltare su una specifica interfaccia, inserire l'indirizzo IP di tale "
++"interfaccia (con 127.0.0.1 saranno accettate solo connesioni locali). Per "
++"ascoltare su tutte le interfacce inserire 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Porta su cui ascoltare:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Con la configurazione predefinita hddtemp si mette in ascolto di connessioni "
++"in arrivo sulla porta 7634. Ã possibile cambiare questo valore con un altro "
++"numero di porta."
+--- hddtemp-0.3-beta15.orig/debian/po/de.po
++++ hddtemp-0.3-beta15/debian/po/de.po
+@@ -0,0 +1,164 @@
++# translation of hddtemp_0.3-beta15-39_de.po to German
++#
++# 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.
++#
++# Erik Schanze <eriks@debian.org>, 2004-2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta15-39_de\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-27 21:18+0100\n"
++"Last-Translator: Erik Schanze <eriks@debian.org>\n"
++"Language-Team: German <debian-l10n-german@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=2; plural=(n != 1);\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Soll /usr/sbin/hddtemp mit Root-Rechten ausgestattet werden?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Sie haben die Möglichkeit, Hddtemp bei der Installation mit Root-Rechten "
++"auszustatten. Damit kann es von jedem normalen Benutzer (und nicht nur von "
++"Root) gestartet werden, um die Festplattentemperatur zu melden."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Dadurch könnte es aber möglich sein, die Sicherheit des Rechners "
++"anzugreifen. Wenn Sie sich nicht sicher sind, lehnen Sie hier ab."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Diese Einstellung kann später durch den Befehl 'dpkg-reconfigure hddtemp' "
++"geändert werden."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Zeitraum zwischen den Ãberprüfungen der Festplattentemperatur:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Die Temperatur der Festplatte(n) kann von Hddtemp mittels der allgemeinen "
++"System-Protokollierschnittstelle fortlaufend gespeichert werden."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Bitte geben Sie die Zeitspanne zwischen zwei Ãberprüfungen in Sekunden ein. "
++"Um diese Funktion abzuschalten, geben Sie 0 ein."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Den Hddtemp-Dienst beim Hochfahren des Systems starten?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Hddtemp kann als Dienst betrieben werden und wartet am Port 7634 auf "
++"ankommende Verbindungen. Das wird von einigen Programmen wie Gkrellm "
++"genutzt, um die Temperatur der Festplatten abzufragen."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Sie haben die Möglichkeit, den Dienst Hddtemp beim Hochfahren des Systems "
++"automatisch zu starten. Wenn Sie sich nicht sicher sind, starten Sie den "
++"Dienst nicht automatisch beim Hochfahren."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Schnittstelle, an der auf Anfragen gewartet wird:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Hddtemp kann an einer speziellen oder an allen Schnittstelle auf ankommende "
++"Verbindungen warten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Um an einer einzelnen Schnittstelle auf Anfragen zu warten, geben Sie deren "
++"IP-Adresse ein (Falls Sie 127.0.0.1 wählen, sind nur lokale Verbindungen "
++"erlaubt). Um alle Schnittstellen zu verwenden, geben Sie 0.0.0.0 ein."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, an dem auf Anfragen gewartet wird:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Normalerweise wartet Hddtemp am Port 7634 auf ankommende Verbindungen. Sie "
++"können auch eine andere Port-Nummer eingeben."
+--- hddtemp-0.3-beta15.orig/debian/po/gl.po
++++ hddtemp-0.3-beta15/debian/po/gl.po
+@@ -0,0 +1,176 @@
++# Galician translation of hddtemp's debconf templates
++# This file is distributed under the same license as the hddtemp package.
++# Jacobo Tarrio <jtarrio@debian.org>, 2007, 2008.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-28 19:08+0000\n"
++"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n"
++"Language-Team: Galician <proxecto@trasno.net>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "¿Quere instalar /usr/sbin/hddtemp con \"setuid\" root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Ten a posibilidade de instalar hddtemp co bit SUID establecido, o que o "
++"permite executar (para que informe da temperatura dos discos duros) por "
++"parte de usuarios normais, e non só o administrador."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Con isto é posible que se empregue hddtemp durante un ataque contra a "
++"seguridade do ordenador. Se non está seguro, non escolla esta opción."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Esta elección pódese cambiar a posteriori executando \"dpkg-reconfigure "
++"hddtemp\"."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervalo entre comprobacións da temperatura do disco duro:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"O programa hddtemp pode manter un rexistro da temperatura do(s) disco(s) duro"
++"(s) empregando a interface xenérica de rexistro do sistema."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Introduza un valor en segundos correspondente ao intervalo entre "
++"comprobacións. Para desactivar esta caracterÃstica, introduza un 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "¿Quere iniciar o servizo de hddtemp co sistema?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Pódese executar o programa hddtemp coma un servizo que espera conexións "
++"entrantes no porto 7634. Emprégao algún software coma gkrellm para obter a "
++"temperatura dos discos duros."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Ten a posibilidade de arrincar o servizo hddtemp automaticamente ao iniciar "
++"o sistema. Se ten dúbidas, suxÃrese que non o arrinque automaticamente ao "
++"iniciar o sistema."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interface na que escoitar:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"O programa hddtemp pode esperar conexións entrantes nunha interface "
++"determinada ou en tódalas interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para escoitar nunha interface determinada, introduza o enderezo IP desa "
++"interface (se escolle 127.0.0.1 hanse aceptar só conexións locais). Para "
++"escoitar en tódalas interfaces, introduza 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Porto no que escoitar:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Por defecto, hddtemp espera conexións entrantes no porto 7634. Pódese "
++"cambiar por outro porto."
++
++#~ msgid "You have the option of installing hddtemp with the SUID bit set."
++#~ msgstr "Ten a posibilidade de instalar hddtemp co bit SUID activado."
++
++#~ msgid ""
++#~ "If you make hddtemp SUID, unprivileged users of your systems will be able "
++#~ "to run it. This could, however, potentially allow hddtemp to be used "
++#~ "during a security attack on your computer. If in doubt, it is suggested "
++#~ "to install it without SUID. If you later change your mind, you can run: "
++#~ "'dpkg-reconfigure hddtemp'."
++#~ msgstr ""
++#~ "Se lle pon o bit SUID a hddtemp, os usuarios sen privilexios dos seus "
++#~ "sistemas han poder executalo. Nembargantes, isto pode permitir que se "
++#~ "empregue hddtemp durante un ataque á seguridade do seu ordenador. Se ten "
++#~ "dúbidas, é mellor que o instale sen SUID. Se cambia de opinión máis "
++#~ "adiante, pode executar \"dpkg-reconfigure hddtemp\"."
++
++#~ msgid ""
++#~ "hddtemp can periodically log the temperature of the hard drive(s) via the "
++#~ "SYSLOG interface."
++#~ msgstr ""
++#~ "hddtemp pode rexistrar periodicamente a temperatura das unidades de disco "
++#~ "mediante a interface SYSLOG."
+--- hddtemp-0.3-beta15.orig/debian/po/ar.po
++++ hddtemp-0.3-beta15/debian/po/ar.po
+@@ -0,0 +1,209 @@
++# translation of ar.po to
++#
++# 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.
++#
++# Ossama M. Khayat, 2005.
++# Ossama M. Khayat <okhayat@yahoo.com>, 2010.
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta13-19\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2010-09-09 04:48+0300\n"
++"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
++"Language-Team: Arabic <support@arabeyes.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"X-Generator: Lokalize 1.0\n"
++"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
++"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#| msgid "Do you want /usr/sbin/hddtemp to be installed SUID root?"
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "ÙÙ ÙØ¬Ø¨ ØªØ«Ø¨ÙØª /usr/sbin/hddtemp Ù
ع ØµÙØ§ØÙØ© SUID ÙÙÙ
ستخدÙ
rootØ"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"ÙØ¯ÙÙ Ø®ÙØ§Ø± ØªØ«Ø¨ÙØª hddtemp Ù
ع ØµÙØ§ØÙØ© SUIDØ Ù
Ù
ا ÙØ³Ù
Ø"
++"ÙÙÙ
ستخدÙ
ÙÙ Ø§ÙØ¹Ø§Ø¯ÙÙ٠تشغÙÙÙ (ØªÙØ±Ùر درجات ØØ±Ø§Ø±Ø© اÙÙØ±Øµ Ø§ÙØµÙب) ÙÙÙØ³ ÙÙØ· "
++"اÙÙ
ستخدÙ
Ø§ÙØ®Ø§Ø±Ù."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"ÙØ¯ ÙØªØ³Ø¨Ø¨ ÙØ°Ø§ باستخداÙ
hddtemp Ø£Ø«ÙØ§Ø¡ اÙÙØ¬ÙÙ
عÙÙ"
++"Ø£Ù
Ù Ø§ÙØ¬Ùاز. Ø¥Ù ÙÙØª ÙÙ Ø´ÙØ ÙØ§ ØªÙØªÙ ÙØ°Ø§ Ø§ÙØ®Ùار."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "ÙÙ
Ù٠تعدÙÙ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØ§ØÙا٠بتÙÙÙØ° Ø§ÙØ£Ù
ر 'dpkg-reconfigure hddtemp'."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "اÙÙØ§ØµÙ Ø§ÙØ²Ù
ÙÙ ÙÙØªØÙÙ Ù
Ù ØØ±Ø§Ø±Ø© اÙÙØ±Øµ Ø§ÙØµÙب:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"ÙØ³ØªØ·Ùع hddtemp تسجÙÙ ØØ±Ø§Ø±Ø© Ø§ÙØ£Ùراص Ø§ÙØµÙبة عبر "
++"ÙØ§Ø¬ÙØ© Ø³Ø¬ÙØ§Øª اÙÙØ¸Ø§Ù
Ø§ÙØ§Ø¹ØªÙØ§Ø¯ÙØ©."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++#| msgid ""
++#| "Please enter a value in seconds corresponding to the interval between two "
++#| "checks. To disable this feature, simply enter 0."
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Ø§ÙØ±Ø¬Ø§Ø¡ إدخا٠ÙÙÙ
Ø© Ø¨Ø§ÙØ«ÙاÙÙ ØªØØ¯Ø¯ اÙÙØ§ØµÙ Ø§ÙØ²Ù
Ù٠بÙÙ ÙÙ "
++"عÙ
ÙÙØ©. ÙØªØ¹Ø·ÙÙ ÙØ°Ù اÙÙ
ÙØ²Ø©Ø أدخ٠0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#| msgid "Do you want to start the hddtemp daemon on startup?"
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "ÙÙ ØªØ±ÙØ¯ تشغÙÙ Ø¹ÙØ±Ùت hddtemp Ø¹ÙØ¯ Ø§ÙØ¥ÙÙØ§Ø¹Ø"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#| msgid ""
++#| "hddtemp can be run as a daemon, listening on port 7634 for incoming "
++#| "connections. It is used some by software such as gkrellm to get the "
++#| "temperature of the hard drives."
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"ÙÙ
Ù٠تشغÙÙ Ø¨Ø±ÙØ§Ù
ج hddtemp ÙØ¹ÙØ±ÙØªØ ÙÙØµØºÙ ÙÙÙ
ÙÙØ° 7634 ÙØ£Ù"
++"Ø§ØªØµØ§ÙØ§Øª ÙØ§Ø±Ø¯Ø©. ÙÙØ³ØªØ®Ø¯Ù
Ø§ÙØ¨Ø±ÙاÙ
ج Ù
Ù ÙØ¨Ù بعض Ø§ÙØ¨Ø±Ø§Ù
ج Ø§ÙØ£Ø®Ø±Ù Ù
ث٠gkrellm "
++"ÙÙ
Ø±Ø§ÙØ¨Ø© "
++"درجة ØØ±Ø§Ø±Ø© Ø§ÙØ£Ùراص Ø§ÙØµÙبة."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#| msgid ""
++#| "You have the option of starting the hddtemp daemon automatically on the "
++#| "computer startup. If in doubt, it is suggested to not start it "
++#| "automatically on startup. If you later change your mind, you can run: "
++#| "'dpkg-reconfigure hddtemp'."
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"ÙØ¯ÙÙ Ø®ÙØ§Ø± تشغÙÙ Ø¹ÙØ±Ùت hddtemp Ø¢ÙÙØ§Ù Ø¹ÙØ¯ Ø¥ÙÙØ§Ø¹ "
++"اÙÙØ¸Ø§Ù
. Ø¥Ù ÙÙØª ÙÙ Ø´ÙØ ÙÙØªØ±Ø عدÙ
تشغÙÙ٠آÙÙØ§Ù Ø¹ÙØ¯ Ø§ÙØ¥ÙÙØ§Ø¹."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "اÙÙØ§Ø¬ÙØ© Ø§ÙØªÙ ÙØµØºÙ Ø¥ÙÙÙØ§:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#| msgid ""
++#| "hddtemp can listen for incoming connections on a specific interface, or "
++#| "on all interfaces."
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"ÙØ³ØªØ·Ùع Ø¨Ø±ÙØ§Ù
ج hddtemp Ø§ÙØ¥ØµØºØ§Ø¡ ÙÙØ§ØªØµØ§Ùات اÙÙØ§Ø±Ø¯Ø© عÙÙ ÙØ§Ø¬ÙØ© "
++"Ù
ØØ¯Ø¯Ø©Ø أ٠جÙ
ÙØ¹ اÙÙØ§Ø¬Ùات."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#| msgid ""
++#| "To listen on a specific interface, enter the IP address of that "
++#| "interface (127.0.0.1 which is the default value corresponds to the lo "
++#| "interface). To listen on all interfaces, simply enter 0.0.0.0."
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"ÙÙØ¥ØµØºØ§Ø¡ Ø¥ÙÙ ÙØ§Ø¬ÙØ© Ù
ØØ¯Ø¯Ø©Ø أدخ٠عÙÙØ§Ù IP ÙØªÙ٠اÙÙØ§Ø¬ÙØ© "
++"(Ø§Ø®ØªÙØ§Ø± 127.0.0.1 سÙÙ ÙØ³ØªÙØ¨Ù Ø§ÙØ§ØªØµØ§Ùات اÙÙ
ØÙÙØ© ÙÙØ·). ÙÙØ¥ØµØºØ§Ø¡ ÙØ¬Ù
ÙØ¹ "
++"اÙÙØ§Ø¬ÙØ§ØªØ Ø£Ø¯Ø®Ù Ø§ÙÙÙÙ
Ø© 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "اÙÙ
ÙÙØ° Ø§ÙØ°Ù ÙØµØºÙ Ø¥ÙÙÙ:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++#| msgid ""
++#| "By default, hddtemp listen for incoming connections on port 7634. However "
++#| "if you don't find this port appropriate, you can enter an other one."
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"بشÙÙ Ø§ÙØªØ±Ø§Ø¶ÙØ ÙØ³ØªÙ
ع hddtemp ÙÙØ§ØªØµØ§Ùات اÙÙØ§Ø±Ø¯Ø© عÙ٠اÙÙ
ÙÙØ° 7634. ÙÙÙ
ÙÙ"
++"تغÙÙØ± ÙØ°Ø§ Ø§ÙØ±ÙÙ
Ø¥Ù٠آخر."
++
++#~ msgid "You have the option of installing hddtemp with the SUID bit set."
++#~ msgstr "ÙØ¯ÙÙ Ø®ÙØ§Ø± ØªØ«Ø¨ÙØª hddtemp بتعÙÙ٠بت SUID."
++
++#~ msgid ""
++#~ "If you make hddtemp SUID, unprivileged users of your systems will be able "
++#~ "to run it. This could, however, potentially allow hddtemp to be used "
++#~ "during a security attack on your computer. If in doubt, it is suggested "
++#~ "to install it without SUID. If you later change your mind, you can run: "
++#~ "'dpkg-reconfigure hddtemp'."
++#~ msgstr ""
++#~ "Ø¥Ù ÙÙ
ت بتعÙÙÙ hddtemp SUIDØ ÙØ³ÙØ³ØªØ·ÙØ¹ اÙÙ
ستخدÙ
ÙÙ Ø§ÙØºÙر Ù
Ø®ÙÙÙÙ ÙÙØ¸Ø§Ù
Ù "
++#~ "تشغÙÙÙ. ÙØ¯ ÙØªØ³Ø¨Ø¨ ÙØ°Ø§ عÙÙ Ø£Ù ØØ§Ù Ø¨Ø§ÙØ³Ù
Ø§Ø Ø¨Ø§Ø³ØªØ®Ø¯Ø§Ù
hddtemp Ø£Ø«ÙØ§Ø¡ اÙÙØ¬ÙÙ
"
++#~ "Ø§ÙØ£Ù
Ù٠عÙÙ ØØ§Ø³Ø¨Ù. Ø¥Ù ÙÙØª ÙÙ Ø´ÙØ Ø£ÙØªØ±Ø ØªØ«Ø¨ÙØªÙ دÙ٠تعÙÙÙ SUID. Ø¥Ù Ø¨Ø¯ÙØª رأÙÙ "
++#~ "ÙØ§ØÙØ§ÙØ ÙÙ
ÙÙ٠تشغÙÙ: 'dpkg-reconfigure hddtemp'."
++
++#~ msgid ""
++#~ "hddtemp can periodically log the temperature of the hard drive(s) via the "
++#~ "SYSLOG interface."
++#~ msgstr ""
++#~ "ÙØ³ØªØ·Ùع hddtemp تسجÙÙ ØØ±Ø§Ø±Ø© Ø§ÙØ£Ùراص Ø§ÙØµÙبة بشÙÙ Ø¯ÙØ±Ù عبر ÙØ§Ø¬ÙØ© SYSLOG."
+--- hddtemp-0.3-beta15.orig/debian/po/ja.po
++++ hddtemp-0.3-beta15/debian/po/ja.po
+@@ -0,0 +1,138 @@
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-05-29 13:50+0900\n"
++"Last-Translator: Kenshi Muto <kmuto@debian.org>\n"
++"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "/usr/sbin/hddtemp ã SUID root ã§ã¤ã³ã¹ãã¼ã«ãã¾ãã?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr "SUID ããããè¨å®ã㦠hddtemp ãã¤ã³ã¹ãã¼ã«ãããã©ããã鏿ãã¾ããããã¯ãã¹ã¼ãã¼ã¦ã¼ã¶ã ãã§ãªãä¸è¬ã¦ã¼ã¶ã§ã (ãã¼ããã©ã¤ãã®æ¸©åº¦ã®å ±åã) å®è¡ãããã¨ã許å¯ãããã¨ã«ãªãã¾ãã"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr "ããã¯æ½å¨çã«ã¯ã³ã³ãã¥ã¼ã¿ã®ã»ãã¥ãªãã£ã«å¯¾ããæ»æã«ä½¿ãããå¯è½æ§ã hddtemp ã«è¨±ããã¨ã«ãªãã¾ããçããããã°ããããããã¨çãã¦ãã ããã"
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "ãã®è¨å®ã¯ãã¨ã§ 'dpkg-reconfigure hddtemp' ãå®è¡ãããã¨ã§å¤æ´ã§ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "ãã¼ããã©ã¤ãã®æ¸©åº¦ãã§ãã¯ã®ééã¤ã³ã¿ã¼ãã«:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr "hddtemp ã§ãã¼ããã©ã¤ãã®æ¸©åº¦ãä¸è¬çãªã·ã¹ãã ãã®ã³ã°ã¤ã³ã¿ã¼ãã§ã¤ã¹ãéãã¦è¨é²ã§ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr "2ã¤ã®ãã§ãã¯ã®éã®ã¤ã³ã¿ã¼ãã«ã«ç¸å½ããç§æ°ãå
¥åãã¦ãã ããããã®æ©è½ãç¡å¹ã«ããã«ã¯ã0 ã¨å
¥åãã¦ãã ããã"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "èµ·åæã« hddtemp ãã¼ã¢ã³ãéå§ãã¾ãã?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr "hddtemp ããã°ã©ã ã¯ãå
¥åæ¥ç¶ã®ããã®ãã¼ã 7634 ããªã¹ã³ãããã¼ã¢ã³ã¨ãã¦å®è¡ã§ãã¾ãããã¼ããã©ã¤ãã®æ¸©åº¦ãå¾ãããã«ãgkrellm ã®ãããªããã¤ãã®ã½ããã¦ã§ã¢ã«ãã£ã¦ä½¿ããã¾ãã"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr "ã³ã³ãã¥ã¼ã¿ã®èµ·åæã« hddtemp ãã¼ã¢ã³ãèªåçã«éå§ãã鏿è¢ã§ããçãããã®ã§ããã°ãèµ·åæã«èªåçã«ã¯éå§ããªããã¨ãææ¡ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "ãªã¹ã³ããã¤ã³ã¿ã¼ãã§ã¤ã¹:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr "hddtemp ããã°ã©ã ã¯ãç¹å®ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ã¾ãã¯ãã¹ã¦ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ã®å
¥åæ¥ç¶ããªã¹ã³ã§ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr "ç¹å®ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ããªã¹ã³ããã«ã¯ãã¤ã³ã¿ã¼ãã§ã¤ã¹ã® IP ã¢ãã¬ã¹ãå
¥åãã¦ãã ãã (127.0.0.1 ãé¸ã¶ã¨ããã¼ã«ã«ã®æ¥ç¶ã®ã¿ã許å¯ããããã«ãªãã¾ã)ããã¹ã¦ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ããªã¹ã³ããã«ã¯ã0.0.0.0 ã¨å
¥åãã¦ãã ããã"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "ãªã¹ã³ãããã¼ã:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr "ããã©ã«ãã§ã¯ãhddtemp ã¯ãã¼ã 7634 ã§å
¥åæ¥ç¶ããªã¹ã³ãã¾ããããã¯å¥ã®ãã¼ãçªå·ã«å¤æ´ã§ãã¾ãã"
+--- hddtemp-0.3-beta15.orig/debian/po/fi.po
++++ hddtemp-0.3-beta15/debian/po/fi.po
+@@ -0,0 +1,151 @@
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-04 12:18+0200\n"
++"Last-Translator: Esko Arajärvi <edu@iki.fi>\n"
++"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"X-Poedit-Language: Finnish\n"
++"X-Poedit-Country: FINLAND\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Tulisiko /usr/sbin/hddtemp asentaa asetuksella SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Ohjelma hddtemp voidaan asentaa SUID-bitti asetettuna, jolloin pääkäyttäjien "
++"lisäksi myös tavalliset käyttäjät voivat ajaa ohjelman (saaden tietää "
++"kovalevyjen lämpötilat)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Tämä saattaa mahdollistaa hddtempin käytön tietoturvahyökkäyksessä konetta "
++"vastaan. Jos olet epävarma, älä valitse tätä vaihtoehtoa."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Tätä asetusta voidaan myöhemmin muuttaa ajamalla komento âdpkg-reconfigure "
++"hddtempâ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Aikaväli kovalevyjen lämpötilojen tarkistusten välillä:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Kovalevyjen lämpötilat voidaan kirjoittaa yleiseen järjestelmälokiin "
++"hddtempin toimesta."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Anna tarkistusten välinen aika sekunneissa. Syötä 0 poistaaksesi tämän "
++"ominaisuuden käytöstä."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Tulisiko hddtemp-taustaohjelma käynnistää käynnistettäessä tietokone?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Ohjelma hddtemp voidaan ajaa taustaohjelmana, joka kuuntelee yhteydenottoja "
++"portissa 7634. Jotkin ohjelmat, kuten gkrellm, käyttävät tätä hakeakseen "
++"kovalevyjen lämpötilat."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"hddtemp-taustaohjelma voidaan käynnistää automaattisesti käynnistettäessä "
++"järjestelmä. Jos olet epävarma, ohjelmaa ei suositella käynnistettäväksi "
++"automaattisesti."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Kuunneltavat liitynnät:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Ohjelma hddtemp voi kuunnella yhteydenottoja tietystä liitynnästä tai "
++"kaikista liitynnöistä."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Voit määrittää tietyn liitynnän antamalla sen IP-osoitteen (asetus 127.0.0.1 "
++"hyväksyy vain paikalliset yhteydet). Kaikki liitynnät määritetään "
++"asetuksella 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Kuunneltava portti:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Oletuksena hddtemp kuuntelee yhteydenottoja portissa 7634. Tämä portin "
++"numero voidaan vaihtaa."
+--- hddtemp-0.3-beta15.orig/debian/po/templates.pot
++++ hddtemp-0.3-beta15/debian/po/templates.pot
+@@ -0,0 +1,131 @@
++# 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: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\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"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=CHARSET\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
+--- hddtemp-0.3-beta15.orig/debian/po/es.po
++++ hddtemp-0.3-beta15/debian/po/es.po
+@@ -0,0 +1,172 @@
++# hddtemp debconf translation to spanish
++# Copyright (C) 2003, 2006, 2008 Software in the Public Interest
++# This file is distributed under the same license as the hddtemp package.
++#
++# Changes:
++# - Initial translation
++# Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>, 2003
++# - Revisions:
++# Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>, 2006, 2008
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta15-39:\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-31 16:50+0100\n"
++"Last-Translator: Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>\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: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "¿Desea instalar «/usr/sbin/hddtemp» con el bit SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Puede instalar hddtemp con el bit SUID activado, permitiendo asà su "
++"ejecución (informando de la temperatura de los discos duros) por parte de "
++"usuarios normales y no sólo del superusuario."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Esto podrÃa permitir que se utilizara hddtemp para comprometer la seguridad "
++"del sistema durante un ataque. Si está en duda, se recomienda que no active "
++"el bit SUID."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Esta elección puede modificarse posteriormente ejecutando «dpkg-reconfigure "
++"hddtemp»."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "PerÃodo entre dos comprobaciones de temperatura:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"La temperatura del disco o discos duros puede ser registrada por hddtemp "
++"mediante la interfaz de registro genérica del sistema."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Introduzca un valor en segundos para el perÃodo entre dos comprobaciones "
++"sucesivas. Para desactivar esta caracterÃstica, introduzca 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "¿Desea iniciar el demonio de hddtemp en el arranque del sistema?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"hddtemp puede ejecutarse en modo demonio, escuchando conexiones entrantes en "
++"el puerto 7634. Algunos programas, como gkrellm, lo utilizan para obtener la "
++"temperatura de los discos duros."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Puede iniciar el demonio de hddtemp automáticamente cada vez que arranque el "
++"sistema. Si está en duda, se recomienda que no lo inicie automáticamente al "
++"arrancar."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interfaz en la que escuchar:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"hddtemp puede escuchar conexiones entrantes en una interfaz concreta, o bien "
++"en todas."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para escuchar en una interfaz determinada, introduzca la dirección IP de "
++"dicha interfaz (si elige 127.0.0.1 sólo se aceptarán conexiones locales). "
++"Para escuchar en todas las interfaces, introduzca 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Puerto en el que escuchar:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"De manera predeterminada hddtemp escucha en el puerto 7634, pero puede "
++"cambiarlo por otro."
+--- hddtemp-0.3-beta15.orig/debian/po/sk.po
++++ hddtemp-0.3-beta15/debian/po/sk.po
+@@ -0,0 +1,155 @@
++# Slovak translations for hddtemp package
++# Slovenské preklady pre balÃk hddtemp.
++# Copyright (C) 2011 THE hddtemp'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the hddtemp package.
++# Automatically generated, 2011.
++# Slavko <linux@slavino.sk>, 2011.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta15-48\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2011-08-30 16:30+0200\n"
++"Last-Translator: Slavko <linux@slavino.sk>\n"
++"Language-Team: Slovak <nomail>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Language: sk\n"
++"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Má byť /usr/sbin/hddtemp nainštalovaný s SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Môžete si zvoliť inštaláciu hddtemp s nastaveným bitom SUID, ktorý dovoľuje "
++"jeho spustenie (hlásenie stavu teploty pevných diskov) obyÄajným "
++"použÃvateľom a nie len super-použÃvateľovi."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Toto môže potenciálne umožniÅ¥, aby bol hddtemp použitý poÄas útoku na "
++"bezpeÄnosÅ¥ poÄÃtaÄa. Ak si nie ste istý, nevyberajte túto možnosÅ¥."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "Môžete to zmeniÅ¥ aj neskôr, spustenÃm âdpkg-reconfigure hddtempâ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Interval medzi kontrolami teploty pevného disku:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Teplota pevného disko(ov) môže hddtemp zaznamenávaÅ¥ pomocou spoloÄného "
++"rozhrania systémových záznamov."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"ProsÃm, zadajte hodnotu v sekundách, ktorá zodpovedá intervalu medzi dvomi "
++"meraniami. Na zakázanie tejto funkcie zadajte 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Má byť démon hddtemp spustený pri zavedenà systému?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Program hddtemp môže byÅ¥ spustený ako démon, naÄúvajúci prÃchodzÃm spojeniam "
++"na porte 7634. Je to použÃvané niektorými programami, napr. gkrellm, na "
++"zÃskanie teploty pevných diskov."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Môžete si zvoliť automatické spúšťanie démona hddtemp pri zavedenà systému. "
++"Ak si nie ste istý, odporúÄame nespúšťaÅ¥ ho automaticky pri azvedenÃ."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Rozhranie, na ktorom naÄúvaÅ¥:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Program hddtemp môže oÄakávaÅ¥ prÃchodzie spojenia na zadanom rozhranà alebo "
++"na všetkých rozhraniach."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Aby naÄúval na zadanom rozhranÃ, zadajte IP adresu daného rozhrania (zadanÃm "
++"127.0.0.1 budú prijÃmané len lokálne spojenia). Na naÄúvanie na vÅ¡etkých "
++"rozhraniach, zadajte 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, na ktorom naÄúvaÅ¥:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Predvolene hddtemp oÄakáva prÃchodzie spojenia na porte 7634. Môžete to "
++"zmeniÅ¥ na akékoľvek iné ÄÃslo portu."
+--- hddtemp-0.3-beta15.orig/debian/po/POTFILES.in
++++ hddtemp-0.3-beta15/debian/po/POTFILES.in
+@@ -0,0 +1 @@
++[type: gettext/rfc822deb] templates
+--- hddtemp-0.3-beta15.orig/debian/po/nl.po
++++ hddtemp-0.3-beta15/debian/po/nl.po
+@@ -0,0 +1,159 @@
++# Dutch translation of hddtemp debconf templates.
++# Copyright (C) 2006-2011 THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the hddtemp package.
++# Kurt De Bree <kdebree@telenet.be>, 2006.
++# Jeroen Schot <schot@a-eskwadraat.nl>, 2011.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 3.3-beta15-46\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2011-06-01 08:31+0200\n"
++"Last-Translator: Jeroen Schot <schot@a-eskwadraat.nl>\n"
++"Language-Team: Debian l10n Dutch <debian-l10n-dutch@lists.debian.org>\n"
++"Language: nl\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Wilt u /usr/sbin/hddtemp als SUID root installeren?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"U heeft de keuze om hddtemp te installeren met de SUID-bit ingesteld. Dit "
++"zorgt ervoor dat het kan worden uitgevoerd (en hardeschijf-temperatuur "
++"meldt) door gewone gebruikers en niet enkel de beheerder."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Hierdoor zou hddtemp mogelijk gebruikt kunnen worden bij aan aanval om de "
++"beveiling van de computer te omzeilen. Als u twijfelt, kies dan niet voor "
++"deze optie."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Deze instelling kan later worden gewijzigd door 'dpkg-reconfigure hddtemp' "
++"uit te voeren."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Interval tussen controles van de hardeschijf-temperatuur:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"De temperatuur van de harde schijven kan worden bijgehouden via de algemene "
++"systeemloginterface."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Geef een waarde (in seconden) overeenkomend met de interval tussen twee "
++"controles. '0' schakelt deze functie uit."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr ""
++"Wilt u dat hddtemp-achtergronddienst wordt gestart bij de systeemstart?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Het hddtemp-programma kan worden uitgevoerd als achtergronddienst, "
++"luisterend naar inkomende verbindingen op poort 7634. Dit wordt gebruikt "
++"door sommige toepassingen zoals gkrellm om de temperatuur van de harde "
++"schijven op te halen."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"U heeft de optie om de hddtemp-achtergronddienst automatisch op te starten "
++"bij de systeemstart. Bij twijfel wordt aangeraden om de dienst niet "
++"automatisch op te starten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "De interface waarop hddtemp moet luisteren:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Het hddtemp-programma kan naar inkomende verbindingen luisteren op één "
++"specifieke interface, of op alle interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Om op één specifieke interface te luisteren, voer het IP-addres van deze "
++"interface in (als u 127.0.0.1 kiest zullen alleen lokale verbindingen worden "
++"geaccepeert). Om op alle interfaces te luisteren, voer 0.0.0.0. in."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "De poort waarop hddtemp moet luisteren:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Standaard luistert hddtemp naar inkomende verbindingen op poort 7634. Dit "
++"kan veranderd worden in een ander poortnummer."
+--- hddtemp-0.3-beta15.orig/debian/po/nb.po
++++ hddtemp-0.3-beta15/debian/po/nb.po
+@@ -0,0 +1,152 @@
++# translation of hddtemp_nb.po to Norwegian Bokmål
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Bjørn Steensrud <bjornst@skogkatt.homelinux.org>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_nb\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-27 17:39+0100\n"
++"Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n"
++"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\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"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Skal /usr/sbin/hddtemp installeres med SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Du kan installere hddtemp med SUID-biten satt, slik at vanlige brukere og "
++"ikke bare superbrukeren kan kjøre det for å undersøke temperatur på "
++"harddisken(e)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Dette kan kanskje tillate at hddtemp blir brukt i et angrep mot systemets "
++"sikkerhet. Er du i tvil, så ikke velg dette."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Denne innstillingen kan endres senere ved å kjøre «dpkg-reconfigure hddtemp»."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervall mellom sjekker på disktemperaturen:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"hddtemp kan logge disken(e)s temperatur via systemets eget log-grensesnitt."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Oppgi en verdi i sekunder som tilsvarer intervallet mellom to sjekker. Dette "
++"blir slått av hvis verdien er 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Skal hddtemp-daemonen startes ved oppstart?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"hddtemp-programmet kan kjøres som en daemon som lytter på port 7634. Dette "
++"brukes av noen programmer slik som gkrellm for å finne temperaturen på "
++"harddisker."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Du kan velge å starte hddtemp-daemonen automatisk når systemet starter opp. "
++"Er du i tvil, foreslår vi at den ikke startes automatisk ved oppstart."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Grensesnitt det skal lyttes på:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"hddtemp-programmet kan lytte etter inkommende tilkoblinger på et bestemt "
++"grensesnitt, eller alle grensesnitt."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Oppgi grensesnittets IP-adresse for å lytte på det grensesnittet. (127.0.0.1 "
++"godtar bare lokale tilkoblinger). Oppgi 0.0.0.0 for å lytte på alle "
++"grensesnitt."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port å lytte på:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Standardporten der hddtemp lytter etter innkommende tilkoblinger er port "
++"7634. Dette kan endres til et annet portnummer."
+--- hddtemp-0.3-beta15.orig/doc/hddtemp.8
++++ hddtemp-0.3-beta15/doc/hddtemp.8
+@@ -58,6 +58,10 @@
+ .B \-f, \-\-file=\fIfile\fI
+ Specify the database file to use.
+ .TP
++.B \-F, \-\-foreground
++Don't fork into the background even in daemon mode. This is useful
++when running under a process supervisor.
++.TP
+ .B \-l, \-\-listen=\fIaddr\fR
+ Listen on a specific address. \fIaddr\fR is a string containing a
+ host name or a numeric host address string. The numeric host address
+@@ -80,6 +84,9 @@
+ .B \-q, \-\-quiet
+ Don't check if the drive is supported.
+ .TP
++.B \-u, \-\-unit=\fIC|F\fR
++Force output temperature either in Celsius or Fahrenheit.
++.TP
+ .B \-v, \-\-version
+ Display hddtemp version number.
+ .TP
+@@ -96,7 +103,7 @@
+ .SH "DRIVE DATABASE"
+ If you know your drive has a temperature sensor but it is being
+ reported unsupported, tell me which model and which manufacturer it
+-is, and/or just add a new entry in /usr/share/misc/hddtemp.db. Each
++is, and/or just add a new entry in /etc/hddtemp.db. Each
+ line of hddtemp.db is either a comment, a blank line or a line
+ containing:
+ .TP
+@@ -112,7 +119,7 @@
+ Feedback is welcome (see the REPORT section below).
+
+ .SH "TCP/IP DAEMON MODE"
+-Exemple of type forcing:
++Example of type forcing:
+ .PP
+ # hddtemp SATA:/dev/sda PATA:/dev/hda
+ .PP
+@@ -120,7 +127,7 @@
+ .B hddtemp
+ in daemon mode, start it like this:
+ .PP
+-# hddtemp -d /dev/hd[abcd]
++# hddtemp \-d /dev/hd[abcd]
+ .PP
+ .PP
+ and use
+@@ -165,8 +172,8 @@
+ investigation they do not. But fields 194 (which is the standard
+ field for temperature) and 231 are good candidates.
+ .PP
+-Then, you can send me a report with outputs from `hddtemp --debug ...',
+-`smartctl' or `hdparm -i ...', and/or add an entry in hddtemp.db
++Then, you can send me a report with outputs from `hddtemp \-\-debug ...',
++`smartctl' or `hdparm \-i ...', and/or add an entry in hddtemp.db
+ yourself.
+
+ .SH "BUGS"
+@@ -183,5 +190,5 @@
+ .PP
+ Emmanuel Varagnat (hddtemp@guzu.net).
+ .PP
+-This manual page was originaly written by Aurelien Jarno <aurel32@debian.org>,
++This manual page was originally written by Aurelien Jarno <aurel32@debian.org>,
+ for the Debian GNU/Linux system (but may be used by others).
+--- hddtemp-0.3-beta15.orig/po/fr.po
++++ hddtemp-0.3-beta15/po/fr.po
+@@ -7,9 +7,9 @@
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: fr\n"
+-"Report-Msgid-Bugs-To: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
+-"PO-Revision-Date: 2003-06-03 00:58GMT+1\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
++"PO-Revision-Date: 2011-08-30 16:38+0200\n"
+ "Last-Translator: Aurelien Jarno <aurelien@aurel32.net>\n"
+ "Language-Team: FRANCAIS <fr@li.org>\n"
+ "MIME-Version: 1.0\n"
+@@ -17,23 +17,7 @@
+ "Content-Transfer-Encoding: 8bit\n"
+ "X-Generator: KBabel 1.0.1\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"Regexp%s| Valeur | Description\n"
+-"------%s----------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr "%s%s| %5d | %s\n"
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -46,7 +30,7 @@
+ "Modèle: %s\n"
+ "\n"
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -60,75 +44,60 @@
+ "net).\n"
+ "ATTENTION : Voir les options --help, --debug et --drivebase.\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s : pas de capteur\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"ATTENTION : Le lecteur %s n'apparait pas dans la base de données des "
+-"lecteurs supportés\n"
+-"ATTENTION : Mais en utilisant une valeur courante, il renvoie quelque "
+-"chose.\n"
+-"ATTENTION : Notez que la température renvoyée peut être erronée.\n"
+-"ATTENTION : Voir les options --help, --debug et --drivebase.\n"
+-"ATTENTION : Et n'oubliez pas d'ajouter votre lecteur au fichier hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s : %d%sC ou %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s : le lecteur est en veille\n"
+
+-#: src/hddtemp.c:217
++#: src/hddtemp.c:242
+ #, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr ""
+ "%s: %s: lecteur connu, mais il ne possède pas de capteur de température.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "ERREUR : %s : %s : status inconnu\n"
+
+-#: src/hddtemp.c:235
++#: src/hddtemp.c:261
+ #, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "ERREUR : séparateur invalide.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "ERREUR : numéro de port invalide.\n"
+
+-#: src/hddtemp.c:329
+-#, fuzzy, c-format
++#: src/hddtemp.c:371
++#, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -138,6 +107,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -145,6 +115,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -153,11 +125,14 @@
+ "\n"
+ "Report bugs or new drives to <hddtemp@guzu.net>.\n"
+ msgstr ""
+-" Utilisation: hddtemp [OPTIONS] DISQUE1 [DISQUE2]...\n"
++" Utilisation: hddtemp [OPTIONS] [TYPE:]DISQUE1 [[TYPE:]DISQUE2]...\n"
+ "\n"
+ " hddtemp affiche la température des lecteurs passés en argument.\n"
+ " Les lecteurs doivent avoir le support S.M.A.R.T.\n"
+ "\n"
++" TYPE peut être SATA, PATA ou SCSI. Si le type est omis, hddtemp essaiera\n"
++" de le deviner.\n"
++"\n"
+ " -b --drivebase : affiche le contenu du fichier de base de donnée "
+ "qui \n"
+ " permet à hddtemp de reconnaître les lecteurs "
+@@ -172,6 +147,7 @@
+ "défaut).\n"
+ " -f --file=FILE : specifie le fichier à utiliser comme base de "
+ "données.\n"
++" -F --foreground : ne pas démoniser, rester au premier plan.\n"
+ " -l --listen=addr : écoute sur une interface spécifique (en mode démon "
+ "TCP/IP).\n"
+ " -n --numeric : affiche seulement la température.\n"
+@@ -180,6 +156,8 @@
+ "démon TCP/IP).\n"
+ " -S --syslog=s : enregistre la température dans syslog tous les s "
+ "secondes.\n"
++" -u --unit=[C|F] : affiche la température en degrés Celsius ou "
++"Fahrenheit.\n"
+ " -q --quiet : ne vérifie pas si le lecteur est supporté.\n"
+ " -v --version : affiche la version de hddtemp.\n"
+ " -w --wake-up : réveiller le lecteur si nécessaire.\n"
+@@ -188,62 +166,95 @@
+ "\n"
+ "Report bugs or new drives to <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "hddtemp version %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "ERREUR : intervalle invalide.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr "Trop peu d'arguments : vous devez spécifier au moins un lecteur.\n"
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr ""
+ "ERREUR: impossible d'utiliser les options --debug et --daemon ou --syslog en "
+ "même temps.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr ""
+ "ERREUR: %s: impossible de déterminer le type de bus (ou ce type de bus est "
+ "inconnu)\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "inconnu"
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "champ(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. non disponible"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Valeur | Description\n"
++"------%s----------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: ne peut ouvrir %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "ERREUR: erreur de syntaxe à la ligne %1$d: %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr " ERREUR: ligne exécdant %1$d caractères dans %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr "echec de 'log sense' : %s "
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "ATTENTION : Le lecteur %s n'apparait pas dans la base de données des "
++#~ "lecteurs supportés\n"
++#~ "ATTENTION : Mais en utilisant une valeur courante, il renvoie quelque "
++#~ "chose.\n"
++#~ "ATTENTION : Notez que la température renvoyée peut être erronée.\n"
++#~ "ATTENTION : Voir les options --help, --debug et --drivebase.\n"
++#~ "ATTENTION : Et n'oubliez pas d'ajouter votre lecteur au fichier hddtemp."
++#~ "db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "champ(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/ru.po
++++ hddtemp-0.3-beta15/po/ru.po
+@@ -6,8 +6,8 @@
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: hddtemp 0.3-beta3\n"
+-"Report-Msgid-Bugs-To: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: 2003-03-08 16:42+0300\n"
+ "Last-Translator: Michael Shigorin <mike@altlinux.ru>\n"
+ "Language-Team: Russian <ru@li.org>\n"
+@@ -15,23 +15,7 @@
+ "Content-Type: text/plain; charset=koi8-r\n"
+ "Content-Transfer-Encoding: 8bit\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"òÅÇÜËÓ%s| úÎÁÞ. | ïÐÉÓÁÎÉÅ \n"
+-"------%s---------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr ""
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -40,7 +24,7 @@
+ "\n"
+ msgstr ""
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -53,72 +37,59 @@
+ "÷îéíáîéå: åÓÌÉ ×Ù ÔÏÞÎÏ ÚÎÁÅÔÅ, ÞÔÏ ÄÁÔÞÉË ÅÓÔØ, ÎÁÐÉÛÉÔÅ hddtemp@guzu.net\n"
+ "÷îéíáîéå: (ÓÍ. ÏÐÃÉÉ --help, --debug É --drivebase).\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s: ÎÅÔ ÄÁÔÞÉËÁ\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"÷îéíáîéå: äÉÓË %s ÎÅ ×ËÌÀÞÅÎ × ÂÁÚÕ ÄÁÎÎÙÈ ÐÏÄÄÅÒÖÉ×ÁÅÍÙÈ ÐÒÉ×ÏÄÏ×.\n"
+-"÷îéíáîéå: îÏ Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ ÒÁÓÐÒÏÓÔÒÁÎÅÎÎÙÈ ÐÁÒÁÍÅÔÒÏ× ÏÎ ÞÔÏ-ÔÏ ×ÙÄÁÅÔ.\n"
+-"÷îéíáîéå: úÁÍÅÔØÔÅ, ÞÔÏ ÐÏËÁÚÁÎÎÁÑ ÔÅÍÐÅÒÁÔÕÒÁ ÍÏÖÅÔ ÔÁËÏ×ÏÊ ÎÅ Ñ×ÌÑÔØÓÑ.\n"
+-"÷îéíáîéå: óÍ. ÏÐÃÉÉ --help, --debug É --drivebase.\n"
+-"÷îéíáîéå: é ÎÅ ÚÁÂÕÄØÔÅ, ÞÔÏ ÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÒÉ×ÏÄ × hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s: %d%sC ÉÌÉ %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s: ÎÅÔ ÄÁÔÞÉËÁ\n"
+
+-#: src/hddtemp.c:217
+-#, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++#: src/hddtemp.c:242
++#, fuzzy, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr "%s: %s: ÉÚ×ÅÓÔÎÙÊ ÄÉÓË, ÎÅ ÓÏÄÅÒÖÁÝÉÊ ÄÁÔÞÉËÁ ÔÅÍÐÅÒÁÔÕÒÙ.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "ïûéâëá: %s: %s: ÎÅÉÚ×ÅÓÔÎÙÊ ÓÔÁÔÕÓ ×ÏÚ×ÒÁÔÁ\n"
+
+-#: src/hddtemp.c:235
++#: src/hddtemp.c:261
+ #, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "ïûéâëá: ÎÅ×ÅÒÎÙÊ ÒÁÚÄÅÌÉÔÅÌØ.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "ïýéâëá: ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÏÒÔÁ.\n"
+
+-#: src/hddtemp.c:329
++#: src/hddtemp.c:371
+ #, fuzzy, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -128,6 +99,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -135,6 +107,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -168,59 +142,90 @@
+ "\n"
+ "óÏÏÂÝÅÎÉÑ Ï ÏÛÉÂËÁÈ É ÄÁÎÎÙÅ ÄÌÑ ÄÉÓËÏ× ÏÔÐÒÁ×ÌÑÊÔÅ ÎÁ <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "÷ÅÒÓÉÑ hddtemp: %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, fuzzy, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "ïûéâëá: ÎÅ×ÅÒÎÙÊ ÒÁÚÄÅÌÉÔÅÌØ.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:557
+-#, fuzzy
++#: src/hddtemp.c:448
++#, fuzzy, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr "ïûéâëá: ÏÄÎÏ×ÒÅÍÅÎÎÏÅ ÉÓÐÏÌØÚÏ×ÁÎÉÅ --debug É --daemon ÎÅÄÏÐÕÓÔÉÍÏ.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr "ïûéâëá: %s: ÎÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÔÉÐ ÛÉÎÙ\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "ÎÅÉÚ×."
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "ÐÏÌÅ(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. ÎÅÄÏÓÔÕÐÅÎ"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"òÅÇÜËÓ%s| úÎÁÞ. | ïÐÉÓÁÎÉÅ \n"
++"------%s---------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr ""
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ïûéâëá × ÓÔÒÏËÅ %1$d ÆÁÊÌÁ %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr "ïûéâëá: ÓÔÒÏËÁ ÄÌÉÎÎÅÅ %1$d ÓÉÍ×ÏÌÏ× × %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr ""
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "÷îéíáîéå: äÉÓË %s ÎÅ ×ËÌÀÞÅÎ × ÂÁÚÕ ÄÁÎÎÙÈ ÐÏÄÄÅÒÖÉ×ÁÅÍÙÈ ÐÒÉ×ÏÄÏ×.\n"
++#~ "÷îéíáîéå: îÏ Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ ÒÁÓÐÒÏÓÔÒÁÎÅÎÎÙÈ ÐÁÒÁÍÅÔÒÏ× ÏÎ ÞÔÏ-ÔÏ "
++#~ "×ÙÄÁÅÔ.\n"
++#~ "÷îéíáîéå: úÁÍÅÔØÔÅ, ÞÔÏ ÐÏËÁÚÁÎÎÁÑ ÔÅÍÐÅÒÁÔÕÒÁ ÍÏÖÅÔ ÔÁËÏ×ÏÊ ÎÅ "
++#~ "Ñ×ÌÑÔØÓÑ.\n"
++#~ "÷îéíáîéå: óÍ. ÏÐÃÉÉ --help, --debug É --drivebase.\n"
++#~ "÷îéíáîéå: é ÎÅ ÚÁÂÕÄØÔÅ, ÞÔÏ ÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÒÉ×ÏÄ × hddtemp.db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "ÐÏÌÅ(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/sv.po
++++ hddtemp-0.3-beta15/po/sv.po
+@@ -6,8 +6,8 @@
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: hddtemp 0.3-beta14-4\n"
+-"Report-Msgid-Bugs-To: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: 2005-11-02 19:03+0100\n"
+ "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
+ "Language-Team: Swedish <sv@li.org>\n"
+@@ -17,23 +17,7 @@
+ "X-Poedit-Language: swe\n"
+ "X-Poedit-Country: swe\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"Regexp%s| Värde | Beskrivning\n"
+-"------%s---------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr "%s%s| %5d | %s\n"
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -46,7 +30,7 @@
+ "Modell: %s\n"
+ "\n"
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -60,76 +44,63 @@
+ "net).\n"
+ "VARNING: Se --help, --debug och --drivebase flaggorna.\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s: ingen sensor\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"VARNING: Disken %s verkar inte finnas i databasen över diskar som stöds\n"
+-"VARNING: Men använder man ett vanligt värde rapporterar den något.\n"
+-"VARNING: Notera att temperaturen som visas kan vara felaktig.\n"
+-"VARNING: Se --help, --debug och --drivebase flaggorna.\n"
+-"VARNING: Och glöm inte att du kan lägga till din disk till hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s: %d%sC eller %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s: disken sover\n"
+
+-#: src/hddtemp.c:217
+-#, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++#: src/hddtemp.c:242
++#, fuzzy, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr "%s: %s: känd disk men den har ingen temperatursensor.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "FEL: %s: %s: okänd returnerad status\n"
+
+-#: src/hddtemp.c:235
+-#, c-format
++#: src/hddtemp.c:261
++#, fuzzy, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+ "\n"
+ "Om ett av fältvärdena verkar matcha temperaturen, var säker på att du\n"
+ "läst manualsidan för hddtemp före du skickar en rapport till mig (sektionen\n"
+ "REPORT). Tack.\n"
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "FEL: ogiltig separator.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "FEL: ogiltigt portnummer.\n"
+
+-#: src/hddtemp.c:329
+-#, c-format
++#: src/hddtemp.c:371
++#, fuzzy, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -139,6 +110,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -146,6 +118,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -184,61 +158,91 @@
+ "\n"
+ "Rapportera buggar eller nya hårddiskar till <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "hddtemp version %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "FEL: ogiltigt intervall.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr "För få argument: du måste specificera åtminstone en disk.\n"
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr ""
+ "FEL: kan inte använda --debug och --daemon eller --syslog flaggorna "
+ "tillsammans.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr ""
+ "FEL: %s: kan inte fastställa busstyp (eller så är denna busstyp okänd)\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "okänd"
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "fält(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. är inte tillgänglig"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Värde | Beskrivning\n"
++"------%s---------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: kan inte öppna %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "FEL: syntaxfel på rad %1$d i %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr " FEL: raden överstiger %1$d tecken i %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr "igenkänning av logg misslyckades : %s"
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "VARNING: Disken %s verkar inte finnas i databasen över diskar som stöds\n"
++#~ "VARNING: Men använder man ett vanligt värde rapporterar den något.\n"
++#~ "VARNING: Notera att temperaturen som visas kan vara felaktig.\n"
++#~ "VARNING: Se --help, --debug och --drivebase flaggorna.\n"
++#~ "VARNING: Och glöm inte att du kan lägga till din disk till hddtemp.db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "fält(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/pt.po
++++ hddtemp-0.3-beta15/po/pt.po
+@@ -7,7 +7,7 @@
+ msgstr ""
+ "Project-Id-Version: hddtemp 0.3-beta14\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: 2006-03-29 23:22+0000\n"
+ "Last-Translator: Miguel Figueiredo <elmig@debianp.org>\n"
+ "Language-Team: Portuguese <traduz@debianpt.org>\n"
+@@ -15,23 +15,7 @@
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"Regexp%s| Valor | Descrição\n"
+-"------%s-------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr "%s%s| %5d | %s\n"
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -44,7 +28,7 @@
+ "Modelo: %s\n"
+ "\n"
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -54,79 +38,68 @@
+ msgstr ""
+ "AVISO: O disco %s não parece ter um sensor de temperatura.\n"
+ "AVISO: Isto não significa que não tem nenhum.\n"
+-"AVISO: Se tem a certeza que tem um, por favor contacte-me (hddtemp@guzu.net).\n"
++"AVISO: Se tem a certeza que tem um, por favor contacte-me (hddtemp@guzu."
++"net).\n"
+ "AVISO: Veja as opções --help, --debug e --drivebase.\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s: sem sensor\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"AVISO: O disco %s não parece estar na base de dados de discos suportados\n"
+-"AVISO: Mas ao utilizar um valor usual, relata alguma coisa.\n"
+-"AVISO: Note que a temperatura mostrada pode estar errada.\n"
+-"AVISO: Veja as opções --help, --debug e --frivebase.\n"
+-"AVISO: E não se esqueça de adicionar o seu disco a hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s: %d%sC ou %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s: o disco está adormecido\n"
+
+-#: src/hddtemp.c:217
+-#, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++#: src/hddtemp.c:242
++#, fuzzy, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr "%s: %s: disco conhecido, mas não tem um sensor de temperatura.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "ERRO: %s: %s: estado devolvido desconhecido\n"
+
+-#: src/hddtemp.c:235
+-#, c-format
++#: src/hddtemp.c:261
++#, fuzzy, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+ "\n"
+-"Se um dos campos de valores parecer coincidir com a temperatura, assegure-se\n"
++"Se um dos campos de valores parecer coincidir com a temperatura, assegure-"
++"se\n"
+ "que lê a página do manual hddtemp antes de me enviar um relatório (secção\n"
+ "REPORT). Obrigado.\n"
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "ERRO: separador inválido.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "ERRO: número de port inválido\n"
+
+-#: src/hddtemp.c:329
+-#, c-format
++#: src/hddtemp.c:371
++#, fuzzy, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -136,6 +109,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -143,6 +117,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -156,19 +132,23 @@
+ " hddtemp mostra a temperatura dos discos indicados no argumento.\n"
+ " Os discos têm de suportar S.M.A.R.T.\n"
+ "\n"
+-" -b --drivebase : mostrar o conteúdo do ficheiro de base de dados que\n"
++" -b\t --drivebase : mostrar o conteúdo do ficheiro de base de dados que\n"
+ " permite ao hddtemp reconhecer os discos suportados.\n"
+-" -D --debug : mostrar vários campos S.M.A.R.T. e os seus valores.\n"
+-" Ãtil para encontrar um valor que pareça coincidir com "
+-" a temperatura e/ou para me enviar um relatório.\n"
++" -D\t --debug : mostrar vários campos S.M.A.R.T. e os seus valores.\n"
++" Ãtil para encontrar um valor que pareça coincidir "
++"com a temperatura e/ou para me enviar um relatório.\n"
+ " (feito para cada disco indicado).\n"
+-" -d --daemon : correr o hddtemp no modo daemon TCP/IP\n (porto %d por omissão.)\n"
++" -d --daemon : correr o hddtemp no modo daemon TCP/IP\n"
++" (porto %d por omissão.)\n"
+ " -f --file=FILE : especificar o ficheiro de base de dados a utilizar.\n"
+-" -l --listen=addr : escutar um interface especÃfico (no modo daemon TCP/IP).\n"
++" -l --listen=addr : escutar um interface especÃfico (no modo daemon TCP/"
++"IP).\n"
+ " -n --numeric : escrever apenas a temperatura.\n"
+ " -p --port=# : port para escutar (no modo daemon TCP/IP).\n"
+-" -s --separator=C : separador a utilizar entre campos (no modo daemon TCP/IP).\n"
+-" -S --syslog=s : registar a temperatura para o syslog a cada s segundos.\n"
++" -s --separator=C : separador a utilizar entre campos (no modo daemon "
++"TCP/IP).\n"
++" -S --syslog=s : registar a temperatura para o syslog a cada s "
++"segundos.\n"
+ " -q --quiet : não verificar se o disco é suportado.\n"
+ " -v --version : mostrar o número da versão do hddtemp.\n"
+ " -w --wake-up : acordar o disco se necessário.\n"
+@@ -177,58 +157,93 @@
+ "\n"
+ "Relatar bugs ou novos discos para <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "hddtemp versão %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "ERRO: intervalo inválido.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+-msgstr "Número de argumentos insuficiente: tem de especificar pelo menos um disco.\n"
++msgstr ""
++"Número de argumentos insuficiente: tem de especificar pelo menos um disco.\n"
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+-msgstr "ERRO: não pode utilizar em conjunto as opções --debug e --daemon ou --syslog.\n"
++msgstr ""
++"ERRO: não pode utilizar em conjunto as opções --debug e --daemon ou --"
++"syslog.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+-msgstr "ERRO: %s: não é possÃvel determinar o tipo do bus (ou este tipo de bus é desconhecido)\n"
++msgstr ""
++"ERRO: %s: não é possÃvel determinar o tipo do bus (ou este tipo de bus é "
++"desconhecido)\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "desconhecido"
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "campo(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. não está disponÃvel"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Valor | Descrição\n"
++"------%s-------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: não pode abrir %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "ERRO: erro de sintaxe na linha %1$d em %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr " ERRO: a linha execedeu %1$d caracteres em %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr "detecção de log falhou: %s"
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "AVISO: O disco %s não parece estar na base de dados de discos suportados\n"
++#~ "AVISO: Mas ao utilizar um valor usual, relata alguma coisa.\n"
++#~ "AVISO: Note que a temperatura mostrada pode estar errada.\n"
++#~ "AVISO: Veja as opções --help, --debug e --frivebase.\n"
++#~ "AVISO: E não se esqueça de adicionar o seu disco a hddtemp.db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "campo(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/de.po
++++ hddtemp-0.3-beta15/po/de.po
+@@ -0,0 +1,250 @@
++# German translation of hddtemp.
++# Copyright (C) 2008 Free Software Foundation, Inc.
++# This file is distributed under the same license as the hddtemp package.
++# Vinzenz Vietzke <vinz@v1nz.org>, 2008.
++# ,
++#
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta15-44\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
++"PO-Revision-Date: 2011-08-30 16:40+0200\n"
++"Last-Translator: Vinzenz Vietzke <vinz@v1nz.org>\n"
++"Language-Team: <debian-l10n-german@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit"
++
++#: src/hddtemp.c:156
++#, c-format
++msgid ""
++"\n"
++"================= hddtemp %s ==================\n"
++"Model: %s\n"
++"\n"
++msgstr ""
++"\n"
++"================= hddtemp %s ==================\n"
++"Modell: %s\n"
++"\n"
++
++#: src/hddtemp.c:189
++#, c-format
++msgid ""
++"WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
++"WARNING: This doesn't mean it hasn't got one.\n"
++"WARNING: If you are sure it has one, please contact me (hddtemp@guzu."
++"net).\n"
++"WARNING: See --help, --debug and --drivebase options.\n"
++msgstr ""
++"WARNUNG: Laufwerk %s scheint keinen Temperatur-Sensor zu haben.\n"
++"WARNUNG: Das bedeutet nicht, dass es keinen besitzt.\n"
++"WARNUNG: Falls Sie sicher sind, dass es einen besitzt, kontaktieren Sie "
++"mich bitte (hddtemp@guzu.net).\n"
++"WARNUNG: Siehe Optionen --help, --debug und --drivebase.\n"
++
++#: src/hddtemp.c:197
++#, c-format
++msgid "%s: %s: no sensor\n"
++msgstr "%s: %s: kein Sensor\n"
++
++#: src/hddtemp.c:211
++#, c-format
++msgid "%s: %s: %d%sC or %sF\n"
++msgstr "%s: %s: %d%s°C oder %s°F\n"
++
++#: src/hddtemp.c:235
++#, c-format
++msgid "%s: %s: drive is sleeping\n"
++msgstr "%s: %s: Laufwerk schläft\n"
++
++#: src/hddtemp.c:242
++#, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
++msgstr ""
++"%s: %s: Laufwerk unterstützt, aber es hat keinen Temperatur-Sensor.\n"
++
++#: src/hddtemp.c:246
++#, c-format
++msgid "ERROR: %s: %s: unknown returned status\n"
++msgstr "FEHLER: %s: %s: zurückgegebener Status unbekannt\n"
++
++#: src/hddtemp.c:261
++#, c-format
++msgid ""
++"\n"
++"If one of the field value seems to match the temperature, be sure to read\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
++msgstr ""
++"\n"
++"Falls einer der Feldwerte der Temperatur zu entsprechen scheint, stellen "
++"Sie\n"
++"sicher, die hddtemp-Handbuchseite gelesen zu haben, bevor Sie einen "
++"Bericht\n"
++"senden (Abschnitt BERICHT). Danke.\n"
++
++#: src/hddtemp.c:338
++#, c-format
++msgid "ERROR: invalid separator.\n"
++msgstr "FEHLER: ungültiges Trennzeichen.\n"
++
++#: src/hddtemp.c:349
++#, c-format
++msgid "ERROR: invalid port number.\n"
++msgstr "FEHLER: ungültige Portnummer.\n"
++
++#: src/hddtemp.c:371
++#, c-format
++msgid ""
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
++"\n"
++" hddtemp displays the temperature of drives supplied in argument.\n"
++" Drives must support S.M.A.R.T.\n"
++"\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
++" -b --drivebase : display database file content that allow hddtemp "
++"to\n"
++" recognize supported drives.\n"
++" -D --debug : display various S.M.A.R.T. fields and their "
++"values.\n"
++" Useful to find a value that seems to match the\n"
++" temperature and/or to send me a report.\n"
++" (done for every drive supplied).\n"
++" -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
++"default.)\n"
++" -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
++" -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
++"mode).\n"
++" -n --numeric : print only the temperature.\n"
++" -p --port=# : port to listen to (in TCP/IP daemon mode).\n"
++" -s --separator=C : separator to use between fields (in TCP/IP daemon "
++"mode).\n"
++" -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
++" -q --quiet : do not check if the drive is supported.\n"
++" -v --version : display hddtemp version number.\n"
++" -w --wake-up : wake-up the drive if need.\n"
++" -4 : listen on IPv4 sockets only.\n"
++" -6 : listen on IPv6 sockets only.\n"
++"\n"
++"Report bugs or new drives to <hddtemp@guzu.net>.\n"
++msgstr ""
++" Verwendung: hddtemp [OPTIONEN] [TYP:]LAUFWERK1 [[TYP:]LAUFWERK2]...\n"
++"\n"
++" hddtemp zeigt die Temperatur der via Argument angegeben Laufwerke.\n"
++" Laufwerke müssen S.M.A.R.T. unterstützen.\n"
++"\n"
++" TYP kann SATA, PATA oder SCSI sein. Falls ausgelassen, wird hddtemp \n"
++" versuchen, diesen zu erraten.\n"
++"\n"
++" -b --drivebase : Datenbank-Datei-Inhalt anzeigen, der hddtemp "
++"erlaubt\n"
++" unterstützte Laufwerke zu erkennen.\n"
++" -D --debug : verschiedene S.M.A.R.T.-Felder und deren Werte "
++"anzeigen.\n"
++" Nützlich, um Werte zu finden, die der Temperatur "
++"entsprechen\n"
++" und/oder um mir einen Bericht zu senden.\n"
++" (bereits erledigt für jedes bereitgestellte "
++"Laufwerk).\n"
++" -d --daemon : hddtemp im TCP/IP-Daemon-Modus ausführen "
++"(StandardmäÃig Port %d)\n"
++" -f --file=DATEI : zu verwendende Datenbank-Datei festlegen.\n"
++" -F --foreground : nicht daemonisieren, im Vordergrund bleiben.\n"
++" -l --listen=addr : auf einer bestimmten Schnittstelle auf Anfragen "
++"warten (im TCP/IP-Daemon-Modus).\n"
++" -n --numeric : nur die Temperatur ausgeben.\n"
++" -p --port=# : Port, auf dem auf Anfragen gewartet werden soll "
++"(im TCP/IP-Daemon-Modus).\n"
++" -s --separator=C : Trennzeichen zur Verwendung zwischen Feldern (im "
++"TCP/IP-Daemon-Modus).\n"
++" -S --syslog=s : Temperatur alle s Sekunden in das syslog "
++"eintragen.\n"
++" -u --unit=[C|F] : Ausgabe der Temperatur entweder in Celsius oder "
++"Fahrenheit erzwingen.\n"
++" -q --quiet : nicht prüfen, ob das Laufwerk unterstützt wird.\n"
++" -v --version : Versionsnummer von hddtemp anzeigen.\n"
++" -w --wake-up : Laufwerk bei Bedarf aufwecken.\n"
++" -4 : nur auf IPv4-Sockets auf Anfragen warten.\n"
++" -6 : nur auf IPv6-Sockets auf Anfragen warten.\n"
++"\n"
++"Fehler oder neue Laufwerke an <hddtemp@guzu.net> melden.\n"
++
++#: src/hddtemp.c:402
++#, c-format
++msgid "hddtemp version %s\n"
++msgstr "hddtemp Version %s\n"
++
++#: src/hddtemp.c:418
++#, c-format
++msgid "ERROR: invalid interval.\n"
++msgstr "FEHLER: ungültiges Intervall.\n"
++
++#: src/hddtemp.c:438
++#, c-format
++msgid "Too few arguments: you must specify one drive, at least.\n"
++msgstr "Zu wenige Argumente: Sie müssen mindestens ein Laufwerk angeben.\n"
++
++#: src/hddtemp.c:448
++#, c-format
++msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
++msgstr ""
++"FEHLER: kann Optionen --debug und --daemon oder --syslog nicht zusammen "
++"verwenden.\n"
++
++#: src/hddtemp.c:505
++#, c-format
++msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
++msgstr ""
++"FEHLER: %s: kann Bus-Typ nicht ermitteln (oder dieser Bus-Typ ist "
++"unbekannt)\n"
++
++#: src/ata.c:66 src/scsi.c:64
++msgid "unknown"
++msgstr "unbekannt"
++
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
++#, c-format
++msgid "S.M.A.R.T. not available"
++msgstr "S.M.A.R.T. nicht verfügbar"
++
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Wert | Beschreibung\n"
++"------%s---------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
++#, c-format
++msgid "hddtemp: can't open %1$s: %2$s\n"
++msgstr "hddtemp: kann %1$s nicht öffnen: %2$s\n"
++
++#: src/db.c:250
++#, c-format
++msgid "ERROR: syntax error at line %1$d in %2$s\n"
++msgstr "FEHLER: Syntaxfehler in Zeile %1$d in %2$s\n"
++
++#: src/db.c:257
++#, c-format
++msgid " ERROR: line exceed %1$d characters in %2$s.\n"
++msgstr " FEHLER: Zeile überschreitet %1$d Zeichen in %2$s.\n"
++
++#: src/scsi.c:111 src/scsi.c:129
++#, c-format
++msgid "log sense failed : %s"
++msgstr "Protokoll-Erkennung fehlgeschlagen : %s"
+--- hddtemp-0.3-beta15.orig/po/LINGUAS
++++ hddtemp-0.3-beta15/po/LINGUAS
+@@ -1,2 +1,2 @@
+ # Set of available languages.
+-fr pt ru sv
++de fr pt ru sv
+--- hddtemp-0.3-beta15.orig/po/hddtemp.pot
++++ hddtemp-0.3-beta15/po/hddtemp.pot
+@@ -1,35 +1,22 @@
+-
+-# Copyright (C) 2006 Free Software Foundation, Inc.
+-# This file is distributed under the same license as the 'hddtemp' package.
+-# Emmanuel VARAGNAT <hddtemp@guzu.net>, 2006.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR Free Software Foundation, Inc.
++# 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: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+-"Last-Translator: Emmanuel Varagnat <hddtemp@guzu.net>\n"
++"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+ "Language-Team: LANGUAGE <LL@li.org>\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=CHARSET\n"
+ "Content-Transfer-Encoding: 8bit\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr ""
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -38,7 +25,7 @@
+ "\n"
+ msgstr ""
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -47,67 +34,59 @@
+ "WARNING: See --help, --debug and --drivebase options.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:192
+-#, c-format
+-msgid "%s: %s: no sensor\n"
+-msgstr ""
+-
+ #: src/hddtemp.c:197
+ #, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
++msgid "%s: %s: no sensor\n"
+ msgstr ""
+
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr ""
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr ""
+
+-#: src/hddtemp.c:217
++#: src/hddtemp.c:242
+ #, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr ""
+
+-#: src/hddtemp.c:235
++#: src/hddtemp.c:261
+ #, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:329
++#: src/hddtemp.c:371
+ #, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -117,6 +96,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -124,6 +104,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -133,58 +115,69 @@
+ "Report bugs or new drives to <hddtemp@guzu.net>.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr ""
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr ""
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr ""
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
++msgid "S.M.A.R.T. not available"
+ msgstr ""
+
+-#: src/ata.c:167
+-msgid "S.M.A.R.T. not available"
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
+ msgstr ""
+
+-#: src/db.c:180
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr ""
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr ""
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr ""
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr ""
+--- hddtemp-0.3-beta15.orig/src/sata.c
++++ hddtemp-0.3-beta15/src/sata.c
+@@ -118,11 +118,22 @@
+ int i;
+ u16 * p;
+
+- if(dsk->db_entry && dsk->db_entry->attribute_id == 0) {
++ if(dsk->db_entry->attribute_id == 0) {
+ close(dsk->fd);
+ dsk->fd = -1;
+ return GETTEMP_NOSENSOR;
+ }
++
++ switch(ata_get_powermode(dsk->fd)) {
++ case PWM_STANDBY:
++ case PWM_SLEEPING:
++ if (!wakeup)
++ return GETTEMP_DRIVE_SLEEP;
++ case PWM_UNKNOWN:
++ case PWM_ACTIVE: /* active or idle */
++ default:
++ break;
++ }
+
+ /* get SMART values */
+ if(sata_enable_smart(dsk->fd) != 0) {
+@@ -154,24 +165,15 @@
+ }
+
+ /* temperature */
+- if(dsk->db_entry && dsk->db_entry->attribute_id > 0)
+- field = sata_search_temperature(values, dsk->db_entry->attribute_id);
+- else
+- field = sata_search_temperature(values, DEFAULT_ATTRIBUTE_ID);
++ field = sata_search_temperature(values, dsk->db_entry->attribute_id);
+
+ if(field)
+ dsk->value = *(field+3);
+
+ if(dsk->db_entry && dsk->value != -1)
+ return GETTEMP_KNOWN;
+- else {
+- if(dsk->value != -1) {
+- return GETTEMP_GUESS;
+- }
+- else {
+- return GETTEMP_UNKNOWN;
+- }
+- }
++ else
++ return GETTEMP_UNKNOWN;
+
+ /* never reached */
+ }
+--- hddtemp-0.3-beta15.orig/src/satacmds.c
++++ hddtemp-0.3-beta15/src/satacmds.c
+@@ -39,7 +39,7 @@
+ #include <sys/ioctl.h>
+ #include <scsi/sg.h>
+ #include <linux/hdreg.h>
+-#include <netinet/in.h>
++#include <byteswap.h>
+
+ // Application specific includes
+ #include "satacmds.h"
+@@ -80,8 +80,8 @@
+
+ ret = scsi_SG_IO(device, cdb, sizeof(cdb), buffer, cmd[3] * 512, sense, sizeof(sense), dxfer_direction);
+
+- /* Verify SATA magics */
+- if (sense[0] != 0x72 || sense[7] != 0x0e || sense[9] != 0x0e || sense[10] != 0x00)
++ /* Verify SATA magic */
++ if (sense[0] != 0x72)
+ return 1;
+ else
+ return ret;
+@@ -95,10 +95,10 @@
+ p = s;
+ end = &s[bytecount & ~1]; /* bytecount must be even */
+
+- /* convert from big-endian to host byte order */
++ /* convert from big-endian to string order */
+ for (p = end ; p != s;) {
+ unsigned short *pp = (unsigned short *) (p -= 2);
+- *pp = ntohs(*pp);
++ *pp = bswap_16(*pp);
+ }
+
+ /* strip leading blanks */
+--- hddtemp-0.3-beta15.orig/src/backtrace.c
++++ hddtemp-0.3-beta15/src/backtrace.c
+@@ -16,9 +16,10 @@
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
++#define _GNU_SOURCE
+ #include <features.h>
+
+-#if defined(__i386__) && defined(__GLIBC__)
++#if (defined(__i386__) || defined(__x86_64__)) && defined(__GLIBC__)
+
+ #include <execinfo.h>
+
+@@ -31,8 +32,12 @@
+ #include <bits/sigcontext.h>
+ #include <sys/param.h>
+
+-#define __USE_GNU
+ #include <ucontext.h>
++#if defined(__i386__)
++# define REG_IP REG_EIP
++#elif defined(__x86_64__)
++# define REG_IP REG_RIP
++#endif
+
+ #define MAX_BTSIZE 64
+
+@@ -42,7 +47,6 @@
+ static char **messages = NULL;
+ static size_t btsize = 0;
+ static size_t i;
+- static unsigned int old_eip, old_ebp;
+ static char *strerr = "???";
+ static FILE *fstrm;
+
+@@ -61,10 +65,10 @@
+ SIC_CASE(SEGV_MAPERR);
+ SIC_CASE(SEGV_ACCERR);
+ }
+- fprintf(fstrm, "=== SEGFAULT (%s) : invalid access to %p, in 0x%08x\n",
++ fprintf(fstrm, "=== SEGFAULT (%s) : invalid access to %p, in %p\n",
+ strerr,
+ ist->si_addr,
+- puc->uc_mcontext.gregs[REG_EIP]);
++ (void*)puc->uc_mcontext.gregs[REG_IP]);
+ break;
+ case SIGILL:
+ switch(ist->si_code) {
+@@ -77,10 +81,10 @@
+ SIC_CASE(ILL_COPROC);
+ SIC_CASE(ILL_BADSTK);
+ }
+- fprintf(fstrm, "=== ILLEGAL INSTR (%s) : invalid access to %p, in 0x%08x\n",
++ fprintf(fstrm, "=== ILLEGAL INSTR (%s) : invalid access to %p, in %p\n",
+ strerr,
+ ist->si_addr,
+- puc->uc_mcontext.gregs[REG_EIP]);
++ (void*)puc->uc_mcontext.gregs[REG_IP]);
+ break;
+ case SIGBUS:
+ switch(ist->si_code) {
+@@ -88,10 +92,10 @@
+ SIC_CASE(BUS_ADRERR);
+ SIC_CASE(BUS_OBJERR);
+ }
+- fprintf(fstrm, "=== BUS ERROR (%p) : invalid access to %p, in 0x%08x\n",
++ fprintf(fstrm, "=== BUS ERROR (%p) : invalid access to %p, in %p\n",
+ strerr,
+ ist->si_addr,
+- puc->uc_mcontext.gregs[REG_EIP]);
++ (void*)puc->uc_mcontext.gregs[REG_IP]);
+ break;
+ }
+ fflush(fstrm);
+@@ -101,7 +105,7 @@
+ /*
+ old_eip = *(unsigned int*)((void*)&n-4);
+ old_ebp = *(unsigned int*)((void*)&n-8);
+- *(unsigned int*)((void*)&n-4) = puc->uc_mcontext.gregs[REG_EIP];
++ *(unsigned int*)((void*)&n-4) = puc->uc_mcontext.gregs[REG_IP];
+ *(unsigned int*)((void*)&n-8) = puc->uc_mcontext.gregs[REG_EBP];
+
+ btsize = backtrace(btinfo, MAX_BTSIZE);
+@@ -111,14 +115,14 @@
+ */
+
+ btsize = backtrace(btinfo, MAX_BTSIZE);
+- btinfo[1] = (void*) puc->uc_mcontext.gregs[REG_EIP];
++ btinfo[1] = (void*) puc->uc_mcontext.gregs[REG_IP];
+
+ messages = backtrace_symbols(btinfo, btsize);
+
+ for(i = 1;
+ i < btsize;
+ i++)
+- fprintf(fstrm, "[%d] #%d: %s\n", getpid(), i, messages[i]);
++ fprintf(fstrm, "[%d] #%zu: %s\n", getpid(), i, messages[i]);
+ fflush(fstrm);
+ fclose(fstrm);
+
+--- hddtemp-0.3-beta15.orig/src/daemon.c
++++ hddtemp-0.3-beta15/src/daemon.c
+@@ -163,19 +163,16 @@
+
+ switch(dsk->ret) {
+ case GETTEMP_NOT_APPLICABLE:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cNA%c*",
+ dsk->drive, separator,
+ dsk->model, separator,
+- "NA", separator,
+- '*');
++ separator);
+ break;
+- case GETTEMP_GUESS:
+ case GETTEMP_UNKNOWN:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cUNK%c*",
+ dsk->drive, separator,
+- dsk->model, separator,
+- "UNK", separator,
+- '*');
++ dsk->model, separator,
++ separator);
+ break;
+ case GETTEMP_KNOWN:
+ n = snprintf(msg, sizeof(msg), "%s%c%s%c%d%c%c",
+@@ -185,26 +182,23 @@
+ get_unit(dsk));
+ break;
+ case GETTEMP_NOSENSOR:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cNOS%c*",
+ dsk->drive, separator,
+ dsk->model, separator,
+- "NOS", separator,
+- '*');
++ separator);
+ break;
+ case GETTEMP_DRIVE_SLEEP:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cSLP%c*",
+ dsk->drive, separator,
+ dsk->model, separator,
+- "SLP", separator,
+- '*');
++ separator);
+ break;
+ case GETTEMP_ERROR:
+ default:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cERR%c*",
+ dsk->drive, separator,
+ (dsk->model) ? dsk->model : "???", separator,
+- "ERR", separator,
+- '*');
++ separator);
+ break;
+ }
+ write(cfd,&separator, 1);
+@@ -222,14 +216,11 @@
+ for(dsk = ldisks; dsk; dsk = dsk->next) {
+ switch(dsk->ret) {
+ case GETTEMP_KNOWN:
+- case GETTEMP_GUESS:
+- value_to_unit(dsk);
+-
+ syslog(LOG_INFO, "%s: %s: %d %c",
+ dsk->drive,
+ dsk->model,
+- dsk->value,
+- dsk->db_entry->unit);
++ value_to_unit(dsk),
++ get_unit(dsk));
+ break;
+ case GETTEMP_DRIVE_SLEEP:
+ syslog(LOG_WARNING, _("%s: %s: drive is sleeping"),
+@@ -270,28 +261,30 @@
+ fd_set deffds;
+ time_t next_time;
+
+- switch(fork()) {
+- case -1:
+- perror("fork");
+- exit(2);
+- break;
+- case 0:
+- break;
+- default:
+- exit(0);
+- }
+-
+- setsid();
+-
+- switch(fork()) {
+- case -1:
+- perror("fork");
+- exit(2);
+- break;
+- case 0:
+- break;
+- default:
+- exit(0);
++if (!foreground) {
++ switch(fork()) {
++ case -1:
++ perror("fork");
++ exit(2);
++ break;
++ case 0:
++ break;
++ default:
++ exit(0);
++ }
++
++ setsid();
++
++ switch(fork()) {
++ case -1:
++ perror("fork");
++ exit(2);
++ break;
++ case 0:
++ break;
++ default:
++ exit(0);
++ }
+ }
+ chdir("/");
+ umask(0);
+--- hddtemp-0.3-beta15.orig/src/hddtemp.c
++++ hddtemp-0.3-beta15/src/hddtemp.c
+@@ -75,7 +75,7 @@
+ char separator = SEPARATOR;
+
+ struct bustype * bus[BUS_TYPE_MAX];
+-int tcp_daemon, debug, quiet, numeric, wakeup, af_hint;
++int tcp_daemon, debug, quiet, numeric, wakeup, foreground, af_hint;
+
+ static enum { DEFAULT, CELSIUS, FAHRENHEIT } unit;
+
+@@ -194,23 +194,7 @@
+ if (numeric && quiet)
+ printf("0\n");
+ else
+- printf(_("%s: %s: no sensor\n"), dsk->drive, dsk->model);
+-
+- break;
+- case GETTEMP_GUESS:
+-
+- if(!quiet)
+- fprintf(stderr,
+- _("WARNING: Drive %s doesn't appear in the database of supported drives\n"
+- "WARNING: But using a common value, it reports something.\n"
+- "WARNING: Note that the temperature shown could be wrong.\n"
+- "WARNING: See --help, --debug and --drivebase options.\n"
+- "WARNING: And don't forget you can add your drive to hddtemp.db\n"), dsk->drive);
+-
+- if (! numeric)
+- printf(_("%s: %s: %d%sC or %sF\n"), dsk->drive, dsk->model, dsk->value, degree, degree);
+- else
+- printf("%d\n", value_to_unit(dsk));
++ fprintf(stderr, _("%s: %s: no sensor\n"), dsk->drive, dsk->model);
+
+ break;
+ case GETTEMP_KNOWN:
+@@ -232,14 +216,14 @@
+ if (numeric && quiet)
+ printf("0\n");
+ else
+- printf(_("%s: %s: drive is sleeping\n"), dsk->drive, dsk->model);
++ fprintf(stderr, _("%s: %s: drive is sleeping\n"), dsk->drive, dsk->model);
+
+ break;
+ case GETTEMP_NOSENSOR:
+ if (numeric && quiet)
+ printf("0\n");
+ else
+- printf(_("%s: %s: drive supported, but it doesn't have a temperature sensor.\n"), dsk->drive, dsk->model);
++ fprintf(stderr, _("%s: %s: drive supported, but it doesn't have a temperature sensor.\n"), dsk->drive, dsk->model);
+
+ break;
+ default:
+@@ -268,8 +252,9 @@
+
+ int main(int argc, char* argv[]) {
+ int i, c, lindex = 0, db_loaded = 0;
++ int ret = 0;
+ int show_db;
+- struct disk * ldisks;
++ struct disk * ldisks;
+
+ backtrace_sigsegv();
+ backtrace_sigill();
+@@ -279,7 +264,7 @@
+ bindtextdomain (PACKAGE, LOCALEDIR);
+ textdomain (PACKAGE);
+
+- show_db = debug = numeric = quiet = wakeup = af_hint = syslog_interval = 0;
++ show_db = debug = numeric = quiet = wakeup = af_hint = syslog_interval = foreground = 0;
+ unit = DEFAULT;
+ portnum = PORT_NUMBER;
+ listen_addr = NULL;
+@@ -294,6 +279,7 @@
+ {"drivebase", 0, NULL, 'b'},
+ {"debug", 0, NULL, 'D'},
+ {"file", 1, NULL, 'f'},
++ {"foreground", 0, NULL, 'F'},
+ {"listen", 1, NULL, 'l'},
+ {"version", 0, NULL, 'v'},
+ {"port", 1, NULL, 'p'},
+@@ -305,7 +291,7 @@
+ {0, 0, 0, 0}
+ };
+
+- c = getopt_long (argc, argv, "bDdf:l:hp:qs:u:vnw46S:", long_options, &lindex);
++ c = getopt_long (argc, argv, "bDdf:l:hp:qs:u:vnw46FS:", long_options, &lindex);
+ if (c == -1)
+ break;
+
+@@ -382,12 +368,13 @@
+ " (done for every drive supplied).\n"
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++ " -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon mode).\n"
+ " -n --numeric : print only the temperature.\n"
+ " -p --port=# : port to listen to (in TCP/IP daemon mode).\n"
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
+- " -u --unit=[C|F] : force output temperature either in Celius or Fahrenheit.\n"
++ " -u --unit=[C|F] : force output temperature either in Celsius or Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -418,6 +405,9 @@
+ }
+ }
+ break;
++ case 'F':
++ foreground = 1;
++ break;
+ default:
+ exit(1);
+ }
+@@ -489,6 +479,7 @@
+ if( (dsk->fd = open(dsk->drive, O_RDONLY | O_NONBLOCK)) < 0) {
+ snprintf(dsk->errormsg, MAX_ERRORMSG_SIZE, "open: %s\n", strerror(errno));
+ dsk->type = ERROR;
++ ret = 1;
+ continue;
+ }
+
+@@ -501,6 +492,7 @@
+
+ ldisks = dsk->next;
+ free(dsk);
++ ret = 1;
+ continue;
+ }
+
+@@ -514,11 +506,17 @@
+ db_loaded = 1;
+ }
+
++ dsk->db_entry = (struct harddrive_entry *)malloc(sizeof(struct harddrive_entry));
+ dbe = is_a_supported_drive(dsk->model);
+- if(dbe) {
+- dsk->db_entry = (struct harddrive_entry *)malloc(sizeof(struct harddrive_entry));
++ if(dbe)
+ memcpy(dsk->db_entry, dbe, sizeof(struct harddrive_entry));
+- }
++ else {
++ dsk->db_entry->regexp = "";
++ dsk->db_entry->description = "";
++ dsk->db_entry->attribute_id = DEFAULT_ATTRIBUTE_ID;
++ dsk->db_entry->unit = 'C';
++ dsk->db_entry->next = NULL;
++ }
+ }
+ }
+
+@@ -530,5 +528,5 @@
+ do_direct_mode(ldisks);
+ }
+
+- return 0;
++ return ret;
+ }
+--- hddtemp-0.3-beta15.orig/src/ata.c
++++ hddtemp-0.3-beta15/src/ata.c
+@@ -75,7 +75,7 @@
+ int i;
+ u16 * p;
+
+- if(dsk->db_entry && dsk->db_entry->attribute_id == 0) {
++ if(dsk->db_entry->attribute_id == 0) {
+ close(dsk->fd);
+ dsk->fd = -1;
+ return GETTEMP_NOSENSOR;
+@@ -140,24 +140,15 @@
+ */
+
+ /* temperature */
+- if(dsk->db_entry && dsk->db_entry->attribute_id > 0)
+- field = ata_search_temperature(values, dsk->db_entry->attribute_id);
+- else
+- field = ata_search_temperature(values, DEFAULT_ATTRIBUTE_ID);
++ field = ata_search_temperature(values, dsk->db_entry->attribute_id);
+
+ if(field)
+ dsk->value = *(field+3);
+
+- if(dsk->db_entry && dsk->value != -1)
++ if(dsk->value != -1)
+ return GETTEMP_KNOWN;
+- else {
+- if(dsk->value != -1) {
+- return GETTEMP_GUESS;
+- }
+- else {
+- return GETTEMP_UNKNOWN;
+- }
+- }
++ else
++ return GETTEMP_UNKNOWN;
+
+ /* never reached */
+ }
+--- hddtemp-0.3-beta15.orig/src/hddtemp.h
++++ hddtemp-0.3-beta15/src/hddtemp.h
+@@ -39,8 +39,6 @@
+ GETTEMP_ERROR, /* Error */
+ GETTEMP_NOT_APPLICABLE, /* */
+ GETTEMP_UNKNOWN, /* Drive is not in database */
+- GETTEMP_GUESS, /* Not in database, but something was guessed, user must
+- check that the temperature returned is correct */
+ GETTEMP_KNOWN, /* Drive appear in database */
+ GETTEMP_NOSENSOR, /* Drive appear in database but is known to have no sensor */
+ GETTEMP_DRIVE_SLEEP /* Drive is sleeping */
+@@ -78,7 +76,7 @@
+
+ extern struct bustype * bus[BUS_TYPE_MAX];
+ extern char errormsg[MAX_ERRORMSG_SIZE];
+-extern int tcp_daemon, debug, quiet, wakeup, af_hint;
++extern int tcp_daemon, debug, quiet, wakeup, af_hint, foreground;
+ extern char separator;
+ extern long portnum, syslog_interval;
+ extern char * listen_addr;
+--- hddtemp-0.3-beta15.orig/src/scsicmds.c
++++ hddtemp-0.3-beta15/src/scsicmds.c
+@@ -147,6 +147,7 @@
+ return 1;
+ else {
+ scsi_fixstring(buffer + 8, 24);
++ buffer[32] = 0;
+ return 0;
+ }
+ }
diff --git a/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb b/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb
new file mode 100644
index 0000000..fc38d86
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb
@@ -0,0 +1,30 @@
+SUMMARY = "Hard disk temperature monitor daemon"
+SECTION = "console/network"
+LICENSE = "GPLv2+"
+
+SRC_URI = "http://download.savannah.nongnu.org/releases/hddtemp/hddtemp-0.3-beta15.tar.bz2 \
+ file://hddtemp-no-nls-support.patch \
+ file://hddtemp_0.3-beta15-52.diff \
+ file://hddtemp-0.3-beta15-autodetect-717479.patch \
+ file://hddtemp-db.patch;striplevel=0 \
+ file://hddtemp.db \
+ "
+
+SRC_URI[md5sum] = "8b829339e1ae9df701684ec239021bb8"
+SRC_URI[sha256sum] = "618541584054093d53be8a2d9e81c97174f30f00af91cb8700a97e442d79ef5b"
+
+LIC_FILES_CHKSUM = "file://GPL-2;md5=eb723b61539feef013de476e68b5c50a"
+
+inherit autotools gettext update-rc.d
+
+FILES_${PN} += "/usr/share/misc/hddtemp.db"
+
+do_install_append() {
+ install -d ${D}/usr/share/misc/
+ install -m 0644 ${WORKDIR}/hddtemp.db ${D}/usr/share/misc/hddtemp.db
+ install -d ${D}${sysconfdir}/init.d
+ install -m 0644 debian/init ${D}${sysconfdir}/init.d/hddtemp
+}
+
+INITSCRIPT_NAME = "hddtemp"
+INITSCRIPT_PARAMS = "start 99 2 3 4 5 . stop 20 0 1 6 ."
--
1.7.9.5
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [meta-oe][PATCH] hddtemp: add from OE-Classic and update
2012-10-19 16:46 Paul Eggleton
@ 2012-10-20 11:54 ` Otavio Salvador
2012-10-20 12:22 ` Paul Eggleton
2012-10-20 15:07 ` Otavio Salvador
1 sibling, 1 reply; 9+ messages in thread
From: Otavio Salvador @ 2012-10-20 11:54 UTC (permalink / raw)
To: openembedded-devel
On Fri, Oct 19, 2012 at 1:46 PM, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> hddtemp is unmaintained upstream so we have to do a bit of patching. All
> patches sourced from Debian/Fedora, except hddtemp-no-nls-support.patch
> which came from OE-Classic.
>
> Other improvements:
> * Install initscript
> * Make LICENSE more accurate
> * Add LIC_FILES_CHKSUM
> * inherit gettext to avoid error during configure
>
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
I think some patches could be cleaned up. Specially the generated
files. Debian includes them in the patch and the packaging guide
advices to do it (there're reasons for it) but OE regenerated those so
I think it could be dropped.
Another thing, I remember to see this patch before on mailing list.
Did you forget to mark it as v2?
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-oe][PATCH] hddtemp: add from OE-Classic and update
2012-10-20 11:54 ` Otavio Salvador
@ 2012-10-20 12:22 ` Paul Eggleton
2012-10-20 13:13 ` Otavio Salvador
0 siblings, 1 reply; 9+ messages in thread
From: Paul Eggleton @ 2012-10-20 12:22 UTC (permalink / raw)
To: Otavio Salvador; +Cc: openembedded-devel
On Saturday 20 October 2012 08:54:37 Otavio Salvador wrote:
> I think some patches could be cleaned up. Specially the generated
> files. Debian includes them in the patch and the packaging guide
> advices to do it (there're reasons for it) but OE regenerated those so
> I think it could be dropped.
I'd really rather not touch the content of the patches - hddtemp upstream is
dead, we're not intending to maintain our own fork and it's easier if we can
just pull in any new patches as-is from Debian or Fedora (with source
information, which I did add to the top of each patch).
> Another thing, I remember to see this patch before on mailing list.
> Did you forget to mark it as v2?
No, all the patches I have sent to the list are the same. Sorry for the noise
but none of them are being picked up by patchwork for some reason and Khem was
trying to fix that (still doesn't seem to be fixed as I have noted).
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-oe][PATCH] hddtemp: add from OE-Classic and update
2012-10-20 12:22 ` Paul Eggleton
@ 2012-10-20 13:13 ` Otavio Salvador
2012-10-20 13:31 ` Paul Eggleton
0 siblings, 1 reply; 9+ messages in thread
From: Otavio Salvador @ 2012-10-20 13:13 UTC (permalink / raw)
To: Paul Eggleton; +Cc: openembedded-devel
On Sat, Oct 20, 2012 at 9:22 AM, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> On Saturday 20 October 2012 08:54:37 Otavio Salvador wrote:
>> I think some patches could be cleaned up. Specially the generated
>> files. Debian includes them in the patch and the packaging guide
>> advices to do it (there're reasons for it) but OE regenerated those so
>> I think it could be dropped.
>
> I'd really rather not touch the content of the patches - hddtemp upstream is
> dead, we're not intending to maintain our own fork and it's easier if we can
> just pull in any new patches as-is from Debian or Fedora (with source
> information, which I did add to the top of each patch).
Right but including generated files is waste of space, unpack time and
patching time. We're rewrite those in do_configure.
>> Another thing, I remember to see this patch before on mailing list.
>> Did you forget to mark it as v2?
>
> No, all the patches I have sent to the list are the same. Sorry for the noise
> but none of them are being picked up by patchwork for some reason and Khem was
> trying to fix that (still doesn't seem to be fixed as I have noted).
>
> Cheers,
> Paul
>
> --
>
> Paul Eggleton
> Intel Open Source Technology Centre
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-oe][PATCH] hddtemp: add from OE-Classic and update
2012-10-20 13:13 ` Otavio Salvador
@ 2012-10-20 13:31 ` Paul Eggleton
0 siblings, 0 replies; 9+ messages in thread
From: Paul Eggleton @ 2012-10-20 13:31 UTC (permalink / raw)
To: Otavio Salvador; +Cc: openembedded-devel
On Saturday 20 October 2012 10:13:50 Otavio Salvador wrote:
> On Sat, Oct 20, 2012 at 9:22 AM, Paul Eggleton
> <paul.eggleton@linux.intel.com> wrote:
> > On Saturday 20 October 2012 08:54:37 Otavio Salvador wrote:
> >> I think some patches could be cleaned up. Specially the generated
> >> files. Debian includes them in the patch and the packaging guide
> >> advices to do it (there're reasons for it) but OE regenerated those so
> >> I think it could be dropped.
> >
> > I'd really rather not touch the content of the patches - hddtemp upstream
> > is dead, we're not intending to maintain our own fork and it's easier if
> > we can just pull in any new patches as-is from Debian or Fedora (with
> > source information, which I did add to the top of each patch).
>
> Right but including generated files is waste of space, unpack time and
> patching time. We're rewrite those in do_configure.
So leaving aside the tiny amount of time/space we're talking about for a
second, which files are you referring to exactly?
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-oe][PATCH] hddtemp: add from OE-Classic and update
2012-10-19 16:46 Paul Eggleton
2012-10-20 11:54 ` Otavio Salvador
@ 2012-10-20 15:07 ` Otavio Salvador
1 sibling, 0 replies; 9+ messages in thread
From: Otavio Salvador @ 2012-10-20 15:07 UTC (permalink / raw)
To: openembedded-devel
On Fri, Oct 19, 2012 at 1:46 PM, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> hddtemp is unmaintained upstream so we have to do a bit of patching. All
> patches sourced from Debian/Fedora, except hddtemp-no-nls-support.patch
> which came from OE-Classic.
>
> Other improvements:
> * Install initscript
> * Make LICENSE more accurate
> * Add LIC_FILES_CHKSUM
> * inherit gettext to avoid error during configure
>
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
...
> diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff b/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
> new file mode 100644
> index 0000000..393b5f4
> --- /dev/null
> +++ b/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
> @@ -0,0 +1,7545 @@
> +Megapatch from debian
> +
> +Original URL: http://ftp.debian.org/debian/pool/main/h/hddtemp/hddtemp_0.3-beta15-52.diff.gz
> +
> +Upstream-Status: unmaintained
> +
> +--- hddtemp-0.3-beta15.orig/README
> ++++ hddtemp-0.3-beta15/README
Not need; we don't use README
...
> +--- hddtemp-0.3-beta15.orig/debian/rules
> ++++ hddtemp-0.3-beta15/debian/rules
...
> +--- hddtemp-0.3-beta15.orig/debian/docs
> ++++ hddtemp-0.3-beta15/debian/docs
...
> +--- hddtemp-0.3-beta15.orig/debian/postrm
> ++++ hddtemp-0.3-beta15/debian/postrm
...
> +--- hddtemp-0.3-beta15.orig/debian/changelog
> ++++ hddtemp-0.3-beta15/debian/changelog
...
> +--- hddtemp-0.3-beta15.orig/debian/templates
> ++++ hddtemp-0.3-beta15/debian/templates
...
> +--- hddtemp-0.3-beta15.orig/debian/dirs
> ++++ hddtemp-0.3-beta15/debian/dirs
...
> +--- hddtemp-0.3-beta15.orig/debian/copyright
> ++++ hddtemp-0.3-beta15/debian/copyright
...
> +--- hddtemp-0.3-beta15.orig/debian/config
> ++++ hddtemp-0.3-beta15/debian/config
...
> +--- hddtemp-0.3-beta15.orig/debian/postinst
> ++++ hddtemp-0.3-beta15/debian/postinst
...
> +--- hddtemp-0.3-beta15.orig/debian/control
> ++++ hddtemp-0.3-beta15/debian/control
...
> +--- hddtemp-0.3-beta15.orig/debian/compat
> ++++ hddtemp-0.3-beta15/debian/compat
> +@@ -0,0 +1 @@
> ++5
> +--- hddtemp-0.3-beta15.orig/debian/README.Debian
> ++++ hddtemp-0.3-beta15/debian/README.Debian
...
> +--- hddtemp-0.3-beta15.orig/debian/po/*
> ++++ hddtemp-0.3-beta15/debian/po/*
Those are the ones I think is not worth keeping ... those are Debian
specific (except the po update but doesn't look worth to me).
In my opinion you could filterout all debian/ changes and copy the
init file (as you use it). This will reduce a lot the change size.
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 9+ messages in thread
* [meta-oe][PATCH] hddtemp: add from OE-Classic and update
@ 2012-10-20 11:25 Paul Eggleton
2012-10-20 11:41 ` Otavio Salvador
0 siblings, 1 reply; 9+ messages in thread
From: Paul Eggleton @ 2012-10-20 11:25 UTC (permalink / raw)
To: openembedded-devel
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 316739 bytes --]
hddtemp is unmaintained upstream so we have to do a bit of patching. All
patches sourced from Debian/Fedora, except hddtemp-no-nls-support.patch
which came from OE-Classic.
Other improvements:
* Install initscript
* Make LICENSE more accurate
* Add LIC_FILES_CHKSUM
* inherit gettext to avoid error during configure
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
.../hddtemp-0.3-beta15-autodetect-717479.patch | 90 +
.../recipes-support/hddtemp/files/hddtemp-db.patch | 133 +
.../hddtemp/files/hddtemp-no-nls-support.patch | 66 +
meta-oe/recipes-support/hddtemp/files/hddtemp.db | 523 ++
.../hddtemp/files/hddtemp_0.3-beta15-52.diff | 7545 ++++++++++++++++++++
.../recipes-support/hddtemp/hddtemp_0.3-beta15.bb | 30 +
6 files changed, 8387 insertions(+)
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp.db
create mode 100644 meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
create mode 100644 meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch b/meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch
new file mode 100644
index 0000000..19f8380
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp-0.3-beta15-autodetect-717479.patch
@@ -0,0 +1,90 @@
+Auto-detect disks if none specified
+
+Refer to:
+https://bugzilla.redhat.com/show_bug.cgi?id=717479
+
+diff -up hddtemp-0.3-beta15/doc/hddtemp.8~ hddtemp-0.3-beta15/doc/hddtemp.8
+--- hddtemp-0.3-beta15/doc/hddtemp.8~ 2011-08-18 00:36:05.689001470 +0300
++++ hddtemp-0.3-beta15/doc/hddtemp.8 2011-08-18 00:44:46.753006253 +0300
+@@ -19,7 +19,7 @@
+ hddtemp \- Utility to monitor hard drive temperature
+ .SH SYNOPSIS
+ .B hddtemp
+-.RI [ options ] " [type:]disk" ...
++.RI [ options ] " [[type:]disk]" ...
+ .SH "DESCRIPTION"
+ .PP
+ .B hddtemp
+@@ -35,7 +35,8 @@ You can specify one or more device drive
+ with a
+ .B type
+ like PATA, SATA or SCSI to force hddtemp too use one of these type
+-(because detection can fail).
++(because detection can fail). If no paths are specified, autodetection of
++installed drives is attempted.
+
+
+ .SH "OPTIONS"
+diff -up hddtemp-0.3-beta15/src/hddtemp.c~ hddtemp-0.3-beta15/src/hddtemp.c
+--- hddtemp-0.3-beta15/src/hddtemp.c~ 2011-08-18 00:36:05.638996861 +0300
++++ hddtemp-0.3-beta15/src/hddtemp.c 2011-08-18 00:35:55.485060798 +0300
+@@ -54,6 +54,7 @@
+ #include <linux/hdreg.h>
+ #include <ctype.h>
+ #include <assert.h>
++#include <glob.h>
+
+ // Application specific includes
+ #include "ata.h"
+@@ -255,6 +256,7 @@ int main(int argc, char* argv[]) {
+ int ret = 0;
+ int show_db;
+ struct disk * ldisks;
++ glob_t diskglob;
+
+ backtrace_sigsegv();
+ backtrace_sigill();
+@@ -419,11 +421,6 @@ int main(int argc, char* argv[]) {
+ exit(0);
+ }
+
+- if(argc - optind <= 0) {
+- fprintf(stderr, _("Too few arguments: you must specify one drive, at least.\n"));
+- exit(1);
+- }
+-
+ if(debug) {
+ /* argc = optind + 1;*/
+ quiet = 1;
+@@ -434,6 +431,23 @@ int main(int argc, char* argv[]) {
+ exit(1);
+ }
+
++ memset(&diskglob, 0, sizeof(glob_t));
++ if(argc - optind <= 0) {
++ if(glob("/dev/[hs]d[a-z]", 0, NULL, &diskglob) == 0) {
++ argc = diskglob.gl_pathc;
++ argv = diskglob.gl_pathv;
++ optind = 0;
++ } else {
++ argc = 0;
++ }
++ }
++
++ if(argc - optind <= 0) {
++ globfree(&diskglob);
++ fprintf(stderr, _("Too few arguments: you must specify one drive, at least.\n"));
++ exit(1);
++ }
++
+ init_bus_types();
+
+ /* collect disks informations */
+@@ -527,6 +541,7 @@ int main(int argc, char* argv[]) {
+ else {
+ do_direct_mode(ldisks);
+ }
++ globfree(&diskglob);
+
+ return ret;
+ }
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch b/meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch
new file mode 100644
index 0000000..a71a9dd
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp-db.patch
@@ -0,0 +1,133 @@
+hddtemp database update
+
+Patch from Fedora 18 SRPM.
+
+--- ../hddtemp.db~ 2007-09-14 21:11:37.000000000 +0300
++++ ../hddtemp.db 2008-02-09 22:10:31.000000000 +0200
+@@ -80,6 +80,8 @@
+
+ "FUJITSU MHV2100AH" 194 C "FUJITSU MHV2100AH"
+ "FUJITSU MHV2100AT" 194 C "FUJITSU MHV2100AT"
++"FUJITSU MHV2100BH" 194 C "FUJITSU MHV2100BH"
++"FUJITSU MHV2060AH" 194 C "FUJITSU MHV2060AH"
+ "FUJITSU MHV2080[AB]H" 194 C "FUJITSU MHV2080AH"
+
+ "FUJITSU MPF3204AH" 194 C "Fujitsu MPF3204AH"
+@@ -325,11 +327,14 @@
+ "ST3120026A" 194 C "Seagate Barracuda V ST3120026A"
+ "ST3160021A" 194 C "Seagate Barracuda 7200.7 - ST3160021A"
+ "ST3160023(A|AS)" 194 C "Seagate Barracuda V ST3160023A and AS (160Gb, ATA100 or Serial ATA)"
++"ST316081[12](A|AS)" 194 C "Seagate Barracuda 7200.9 160GB"
+ "ST3160827AS" 194 C "Seagate Barracuda 7200.7 160GB (Serial ATA)"
+ "ST3200021A" 194 C "Seagate Barracuda 7200.7 Plus 200GB"
+ "ST3200822(A|AS)" 194 C "Seagate Barracuda 7200.7 Plus 200GB (PATA or SATA)"
+-"ST3200826A" 194 C "Seagate Barracuda 7200.8 200Gb"
++"ST3200826A" 194 C "Seagate Barracuda 7200.8 200GB"
+ "ST3250623A" 194 C "Seagate Barracuda 7200.16 250GB"
++"ST3250624AS" 194 C "Seagate Barracuda 7200.9 250GB SATA"
++"ST3250624NS" 194 C "Seagate NL35 SATA (RAID-Edition) 7200 250GB"
+ "ST3250823A" 194 C "Seagate Barracuda 7200.8 250GB"
+ "ST3250823A" 194 C "Seagate Barracuda 7200.7 Plus 250GB"
+ "ST3250823NS" 194 C "Seagate NL35 SATA (RAID-Edition) 7200 250GB"
+@@ -338,9 +343,7 @@
+ "ST3400633(A|AS)" 194 C "Seagate Barracuda 7200.7 400 GB"
+ "ST3500630NS" 194 C "Seagate"
+ "ST3400632NS" 194 C "Seagate"
+-"ST3320620AS" 194 C "Seagate Barracuda 7200.7 320 GB"
+-"ST3500630AS" 194 C "Seagate Barracuda 7200.7 500 GB"
+-"ST3802110A" 194 C "Seagate Barracuda 7200.9 80 GB"
++"ST380[28]110(A|AS)" 194 C "Seagate Barracuda 7200.9 80 GB"
+ "ST910021A" 194 C "Seagate Momentus 7200.1 100GB"
+ "ST910082[35]A" 194 C "Seagate Momentus 5400.2 100GB"
+ "ST9120821A" 194 C "Seagate Momentus 5400.2 120GB"
+@@ -351,12 +354,14 @@
+ "ST960822A" 194 C "Seagate Momentus 5400.2 60GB"
+ "ST96812AS" 194 C "Seagate Momentus 5400.2 60GB SATA"
+ "ST9808211A" 194 C "Seagate Momentus 5400.2 80GB"
++"ST98823AS" 194 C "Seagate Momentus 5400.2 80GB SATA"
+
+ ########################################
+ ############# TOSHIBA Laptops
+ ########################################
+ "MK4313MAT" 220 C "Toshiba MK4313MAT"
+ "TOSHIBA MK1032GAX" 194 C "Toshiba MK1032GAX"
++"TOSHIBA MK1032GSX" 194 C "Toshiba MK1032GSX"
+ "TOSHIBA MK1517GAP" 0 C "Toshiba MK1517GAP"
+ "TOSHIBA MK2018GAS" 226 F "Toshiba MK2018GAS"
+ "TOSHIBA MK2023GAS" 194 C "Toshiba MK2023GAS"
+@@ -377,6 +382,7 @@
+ "TOSHIBA MK6026GAX" 194 C "Toshiba MK6026GAX"
+ "TOSHIBA MK8025GAS" 194 C "Toshiba MK8025GAS"
+ "TOSHIBA MK8026GAX" 194 C "Toshiba MK8026GAX"
++"TOSHIBA MK8032GSX" 194 C "Toshiba MK8032GSX"
+
+ "MK4025GAS" 194 C "Toshiba MK4025GAS"
+
+@@ -397,7 +403,7 @@
+ "WDC WD300BB-00CAA0" 0 C "Western Digital WD300BB"
+ "WDC WD360GD-00FNA0" 194 C "Western Digital SATA Raptor 36.7GB"
+ "WDC WD400BB-00CAA0" 0 C "Western Digital 400BB-00CAA0"
+-"WDC WD400BB-00J[KH]A0" 194 C "Western Digital Caviar WD400BB"
++"WDC WD400BB-00[DJ][KH]A0" 194 C "Western Digital Caviar WD400BB"
+ "WDC WD400BB-23JHC0" 194 C "Western Digital 23JHC0"
+ #"WDC WD400BB-00GFA0" 0 C ""
+ "WDC WD400BB-55HEA0" 194 C "Western Digital Caviar WD400BB"
+@@ -416,7 +422,7 @@
+ "WDC WD600VE-75HDT0" 194 C "Western Digital 600VE-75HDT0"
+ "WDC WD600VE-00HDT0" 194 C "Western Digital 600VE-00HDT0"
+ "WDC WD740GD-00FL21.0" 194 C "Western Digital SATA Raptor"
+-"WDC WD740GD-([05]0FL[AC]0|75FLA1)" 194 C "Western Digital SATA Raptor 74GB 8MB"
++"WDC WD740GD-([05]0FL[AC][01]|75FLA1)" 194 C "Western Digital SATA Raptor 74GB 8MB"
+ "WDC WD800BB-00CAA1" 0 C "Western Digital WD800BB-00CAA1"
+ "WDC WD800BB-(00|22)DKA0" 194 C "Western Digital WD800BB 80 Go"
+ "WDC WD800BB-32CCB0" 194 C "Western Digital 800BB-32CCB0"
+@@ -428,14 +434,13 @@
+ "WDC WD800JB-00CRA1" 0 C "Western Digital Caviar WD800JB"
+ "WDC WD800JB-00(ET|FM|FS)A0" 194 C "Western Digital Caviar 80GB Special Edition 8MB"
+ "WDC WD800JB-00JJ[AC]0" 194 C "Western Digital WD800JB"
+-"WDC WD800JD-(00|55)(HK|JR)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+-"WDC WD800JD-00(HK|JN)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
++"WDC WD800JD-(00|55|75)(HK|JR|JN)[AC]0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+ "WDC WD800LB-(00|55)DNA0" 194 C "Western Digital Caviar WD800LB 80 Go ATA-100"
+ "WDC WD800VE-07HDT0" 194 C "Western Digital 800VE-07HDT0"
+ "WDC WD1200BB-00(FTA|GUA)0" 194 C "Western Digital Caviar EIDE 2MB Cache"
+-"WDC WD1200JB-00(EV|FU|GV)A0" 194 C "Western Digital Caviar 120GB Special Edition 8MB"
++"WDC WD1200JB-00(EV|FU|GV|RE)A0" 194 C "Western Digital Caviar 120GB Special Edition 8MB"
+ "WDC WD1200JB-22GVA0" 194 C "Western Digital Caviar 120GB"
+-"WDC WD1200JD-00(GBB|HBC)0" 194 C "Western Digital WD1200JD"
++"WDC WD1200JD-00(FYB|GBB|HBC)0" 194 C "Western Digital WD1200JD"
+ "WDC WD1200LB-55EDA0" 194 C "Western Digital WD1220LB"
+ "WDC WD1200SB-01KB[AC]0" 194 C "Western Digital Caviar RE (Raid Edition) 120 GB"
+ "WDC WD1600BB-00DWA0" 194 C "Western Digital Caviar WD1600BB"
+@@ -443,10 +448,11 @@
+ "WDC WD2000BB-00FTA0" 194 C "Western Digital WD2000BB"
+ "WDC WD2000JB-(00EV|32EV|34EV|00FU|00GV|55GV|98GV|00KF)A0" 194 C "Western Digital Caviar 200GB Special Edition 8MB"
+ "WDC WD2000JB-00GVC0" 194 C "Western Digital WD2000JB"
++"WDC WD2000JD-00FYB0" 194 C "Western Digital WD2000JD"
+ "WDC WD2000JS-00MHB1" 194 C "Western Digital SATA 200GB"
+ "WDC WD2500JB-(00RE|00EV|00FU|32FU|00GV|55GV)A0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+ "WDC WD2500JB-00GVC0" 194 C "Western Digital 250GB"
+-"WDC WD2500JD-(00G|32H)BB0" 194 C "Western Digital SATA Caviar 250GB Special Edition 8MB"
++"WDC WD2500JD-(00G|32H|75H)BB0" 194 C "Western Digital SATA Caviar 250GB Special Edition 8MB"
+ "WDC WD2500JD-40HBC0" 194 C "Western Digital WD2500JD-40HBC0"
+ "WDC WD2500PB-98FBA0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+ "WDC WD2500PD-00FZB1" 194 C "Western Digital WD2500PD-00FZB1"
+@@ -510,7 +516,7 @@
+ "Maxtor 7(L|V)300(F|R|S)0" 194 C "Maxtor MaXLine III 300GB 7200rpm"
+ "MAXTOR STM3320620AS" 194 C ""
+
+-"WDC WD1500ADFD-00NLR1" 194 C "Western Digital Raptor 150GB"
++"WDC WD1500ADFD-00NLR[01]" 194 C "Western Digital Raptor 150GB"
+ "WDC WD1600JS-00NCB1" 194 C "Western Digital Caviar 1600JS 160GB Sata"
+ "WDC WD1600SD-01KCC0" 194 C "Western Digital Caviar RE Serial ATA series"
+ "WDC WD2500JD-57HBC0" 194 C "Western Digital Caviar SE (Serial ATA) 250 GB"
+@@ -518,6 +524,8 @@
+ "WDC WD2500JS-41MVB1" 194 C "Western Digital SATAII Caviar 250GB Special Edition 8MB"
+ "WDC WD2500JD-00HBB0" 194 C "Western Digital SATA 250GB"
+ "WDC WD2500KS-00MJB0" 194 C "Western Digital SATA-II Caviar 250GB Special Edition 16MB"
++"WDC WD2500YD-01NVB1" 194 C "Western Digital Caviar RE 250GB 16MB"
+ "WDC WD3000JS-00PDB0" 194 C "Western Digital WD3000JS"
+-"WDC WD3200KS-00PFB0" 194 C ""
++"WDC WD3200KS-00PFB0" 194 C "Western Digital Caviar 320GB 16MB"
+ "WDC WD3200JD-22KLB0" 194 C "Western Digital Caviar SE 320GB 8MB"
++"WDC WD3200SD-01KNB0" 194 C "Western Digital Caviar RE 320GB SATA 8MB"
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch b/meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch
new file mode 100644
index 0000000..8f6b9c3
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp-no-nls-support.patch
@@ -0,0 +1,66 @@
+diff -ru hddtemp-0.3-beta15.orig/configure.in hddtemp-0.3-beta15/configure.in
+--- hddtemp-0.3-beta15.orig/configure.in 2005-10-17 20:14:19.000000000 +0100
++++ hddtemp-0.3-beta15/configure.in 2008-06-27 00:00:46.000000000 +0100
+@@ -17,6 +17,7 @@
+ # append the host alias to the tools for cross compiling
+ AC_HEADER_STDC
+ AC_CHECK_HEADERS(fcntl.h)
++AC_CHECK_HEADERS(iconv.h)
+ AC_CHECK_HEADERS(netinet/in.h)
+ AC_CHECK_TYPE(in_addr_t, ,[AC_DEFINE_UNQUOTED([in_addr_t], [uint32_t], [Define to 'uint32_t' if <netinet/in.h> does not define.])], [#include <netinet/in.h>])
+
+@@ -29,6 +30,8 @@
+ AM_GNU_GETTEXT
+ #AM_GNU_GETTEXT([external])
+
++AC_CHECK_FUNCS([bindtextdomain textdomain iconv])
++
+ dnl reasonable guesses for where stuff is installed
+ dnl if we don't do that now, the config.h will use ${prefix}
+ dnl for DEFAULT_DATABASE_PATH.
+diff -ru hddtemp-0.3-beta15.orig/src/hddtemp.c hddtemp-0.3-beta15/src/hddtemp.c
+--- hddtemp-0.3-beta15.orig/src/hddtemp.c 2006-04-19 03:37:35.000000000 +0100
++++ hddtemp-0.3-beta15/src/hddtemp.c 2008-06-26 23:59:40.000000000 +0100
+@@ -276,8 +276,12 @@
+ backtrace_sigbus();
+
+ setlocale (LC_ALL, "");
++#ifdef HAVE_BINDTEXTDOMAIN
+ bindtextdomain (PACKAGE, LOCALEDIR);
++#endif
++#ifdef HAVE_TEXTDOMAIN
+ textdomain (PACKAGE);
++#endif
+
+ show_db = debug = numeric = quiet = wakeup = af_hint = syslog_interval = 0;
+ unit = DEFAULT;
+diff -ru hddtemp-0.3-beta15.orig/src/utf8.c hddtemp-0.3-beta15/src/utf8.c
+--- hddtemp-0.3-beta15.orig/src/utf8.c 2006-04-19 03:37:02.000000000 +0100
++++ hddtemp-0.3-beta15/src/utf8.c 2008-06-27 00:02:15.000000000 +0100
+@@ -23,7 +23,9 @@
+
+ // Standard includes
+ #include <stdlib.h>
++#ifdef HAVE_ICONV_H
+ #include <iconv.h>
++#endif
+ #include <langinfo.h>
+ #include <locale.h>
+ #include <string.h>
+@@ -34,6 +36,7 @@
+
+ static char *iconv_from_utf8_to_locale(const char *string, const char* fallback_string)
+ {
++#ifdef HAVE_ICONV
+ const size_t buffer_inc = 80; // Increment buffer size in 80 bytes step
+ const char *charset;
+ iconv_t cd;
+@@ -93,6 +96,8 @@
+ if (dest_buffer != NULL)
+ free(dest_buffer); // free buffer
+ free(src_buffer); // free string
++#endif
++
+ return strdup(fallback_string); // and return fallback string
+ }
+
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp.db b/meta-oe/recipes-support/hddtemp/files/hddtemp.db
new file mode 100644
index 0000000..4a061cf
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp.db
@@ -0,0 +1,523 @@
+#
+# Insert a regular expression for support of the model or the serie of your hard drive.
+# If you don't know what to put in the second field, put the number
+# that appears most often for your brand :o)
+# A value of zero meens that we know that the drive doesn't have
+# a temperature sensor (you can set the unit to C or F).
+#
+############################################################################
+# The following list was found at (http://www.almico.com/forumharddisks.php)
+# If your drive is in the list send me a mail.
+#
+# Manufacturer Model Size Notes
+# FUJITSU FUJITSU MPF3102AH 10.0GB
+# FUJITSU FUJITSU MPG3204AH E 20.0GB
+# FUJITSU FUJITSU MPG3307AT 30.0GB
+# FUJITSU FUJITSU MPG3409AH 40.0GB
+# FUJITSU FUJITSU MPG3409AH EF 40.0GB
+# HITACHI HITACHI_DK23CA-10 9.8GB
+# HITACHI HITACHI_DK23CA-15 14.7GB
+# SAMSUNG SAMSUNG SV3012H 29.4GB
+# SEAGATE ST310210A 10.0GB
+# SEAGATE ST310211A 9.8GB
+# SEAGATE ST310215A 10.0GB
+# SEAGATE ST315320A 14.9GB
+# SEAGATE ST320410A 19.6GB
+# SEAGATE ST320413A 19.6GB
+# SEAGATE ST320420A 19.9GB
+# SEAGATE ST330610A 29.3GB
+# SEAGATE ST330620A 29.3GB
+# SEAGATE ST330621A 29.3GB
+# SEAGATE ST330630A 29.9GB
+# SEAGATE ST340016A 39.1GB
+# SEAGATE ST340810ACE 39.1GB
+# SEAGATE ST380020ACE 78.2GB
+# WESTERN DIGITAL WDC AC210200D 10.0GB
+# WESTERN DIGITAL WDC AC29100D 8.9GB
+# WESTERN DIGITAL WDC AC420400D 19.9GB
+# WESTERN DIGITAL WDC WD102AA 10.0GB
+#
+#################################################
+
+########################################
+############# ExcelStor drives
+########################################
+# "ExcelStor Technology CT215" ??? ? "ExcelStor CT215"
+"ExcelStor Technology J3.0" 194 C "ExcelStor Technology 3xy (xy GB)"
+"ExcelStor Technology J6.0" 194 C "ExcelStor Technology 6xy (xy GB)"
+"ExcelStor Technology J680" 194 C "ExcelStor Technology J680 (80 GB)"
+"ExcelStor Technology J860" 194 C "ExcelStor Technology J860 (60 GB)"
+"ExcelStor Technology J880" 194 C "ExcelStor Technology J880 (80 GB)"
+
+
+
+########################################
+############# Fujitsu drives
+########################################
+"FUJITSU MHM2100AT" 0 C "Fujitsu MHM2100AT"
+
+"FUJITSU MHN2150AT" 194 C "Fujitsu MHN2150AT"
+"FUJITSU MHN2200AT" 194 C "Fujitsu MHN2200AT"
+"FUJITSU MHN2300AT" 194 C "Fujitsu MHN2300AT"
+
+"FUJITSU MHR2020AT" 194 C "Fujitsu MHR2020AT"
+"FUJITSU MHR2030AT" 194 C "Fujitsu MHR2030AT"
+
+"FUJITSU MHS2030AT" 194 C "Fujitsu MHS2030AT"
+"FUJITSU MHS2040AT" 194 C "Fujitsu MHS2040AT"
+"FUJITSU MHS2060AT" 194 C "Fujitsu MHS2060AT (Apple PowerBook G4)"
+
+"FUJITSU MHT2030AC" 194 C "Fujitsu Mobile 30GB, 2MB, 4200RPM (automotive)"
+
+"FUJITSU MHT2030AT" 194 C "Fujitsu MHT2030AT"
+"FUJITSU MHT2040AH" 194 C "Fujitsu MHT2040AH"
+"FUJITSU MHT2040AT" 194 C "Fujitsu MHT2040AT"
+"FUJITSU MHT2060AH" 194 C "Fujitsu MHT2060AH"
+"FUJITSU MHT2060AT" 194 C "Fujitsu MHT2060AT"
+"FUJITSU MHT2080AH" 194 C "Fujitsu MHT2080AH"
+
+"FUJITSU MHU2100AT" 194 C "Fujitsu MHU2100AT 100GB, 8MB (4200RPM)"
+
+"FUJITSU MHV2100AH" 194 C "FUJITSU MHV2100AH"
+"FUJITSU MHV2100AT" 194 C "FUJITSU MHV2100AT"
+"FUJITSU MHV2080[AB]H" 194 C "FUJITSU MHV2080AH"
+
+"FUJITSU MPF3204AH" 194 C "Fujitsu MPF3204AH"
+
+"FUJITSU MPG3204AT.*" 194 C "Fujitsu MPG3204AT"
+"FUJITSU MPG3307AT" 194 C "Fujitsu MPG3307AT"
+"FUJITSU MPG3409AT.*" 194 C "Fujitsu MPG3409AT E"
+"FUJITSU MPG3409AH.*" 194 C "Fujitsu MPG3409AH E"
+"FUJITSU MPG3204AH" 194 C "Fujitsu MPG3204AH"
+"FUJITSU MPG3102AT E" 194 C "FUJITSU MPG3102AT E"
+
+
+
+########################################
+############# Hitachi drives
+########################################
+"HITACHI_DK13FA-40B" 194 C "Hitachi DK13FA-40B"
+"HITACHI_DK228A-65" 0 C "Hitachi DK228A-65"
+"HITACHI_DK23CA-(15|20|30|30B|75)" 194 C "Hitachi DK23CA series"
+"HITACHI_DK23DA-[234]0" 194 C "Hitachi DK23DA series"
+"HITACHI_DK23EA-[2346]0" 194 C "Hitachi DK23EA series"
+"HITACHI_DK23EB-40" 194 C "Hitachi DK23EB series"
+"HITACHI_DK23FA-[468]0" 194 C "Hitachi DK23FA series"
+"HITACHI_DK23FB-[46]0" 194 C "Hitachi DK23FB series"
+
+"HDS722516VLAT[28]0" 194 C "Hitachi Deskstar 7K250 160GB 2/8MB cache"
+"HDS722525VLAT80" 194 C "Hitachi Deskstar 7K250 200/250GB, 7200RPM, 8MB, Parallel-ATA"
+"HDS722512VLAT80" 194 C "Hitachi Deskstar 7K250 80GB"
+"HDS722540VLAT20" 194 C "Hitachi Deskstar 7K250, 40GB, 7200RPM, 2MB cache"
+"HDS722580VLAT20" 194 C "Deskstar 7K250 60GB"
+"HDS724040KLSA80" 194 C "Hitachi Deskstar 7K250 400GB, 7200RPM, 8MB, Serial-ATA"
+"HDS728080PLAT20" 194 C "Hitachi Deskstar 7K80 80GB"
+
+"HDS722525VLSA80" 194 C "Hitachi Deskstar 7K250 250GB, 7200RPM, 8MB, SATA"
+"HDS722516VLSA80" 194 C "Hitachi Deskstar 7K250 160GB 8Mo cache SATA"
+"HDS722580VLSA80" 194 C "Hitachi Deskstar 7K250 80GB SATA"
+"HDS728040PLAT20" 194 C "Hitachi Deskstar 7K80 40GB"
+
+"HDS724040KLAT80" 194 C "Hitachi Deskstar 7K400 400GB 8Mo cache PATA"
+
+"HDT7225(16|25)DLAT80" 194 C "Hitachi Deskstar T7K250 series, 7200RPM, 8MB, PATA"
+"HDT722516DLA380 V43O" 194 C "Hitachi T7K250 SATA"
+"HDT722525DLA380" 194 C "Hitachi Deskstar T7K250 250GB 8Mo cache SATAII"
+"HDT725050VLA360" 194 C "Hitachi Deskstar T7K500 500GB, 7200RPM, 16MB, SATA II"
+
+"HTE721010G9AT00" 194 C "Hitachi Travelstar 100GB (7200RPM)"
+"HTE726060M9AT00" 194 C "Hitachi Travelstar 60GB (7200RPM)"
+"HTS424030M9AT00" 194 C "Hitachi Travelstar 30GB (4200RPM)"
+"HTS424040M9AT00" 194 C "Hitachi Travelstar 4K40 40GB 2MB cache (4200RPM)"
+"HTS541010G9SA00" 194 C "Hitachi Travelstar 100GB SATA"
+"HTS541040G9AT00" 194 C "Hitachi Travelstar 40GB (5400RPM)"
+"HTS541080G9AT00" 194 C "Hitachi Travelstar 80GB (5400RPM)"
+"HTS548020M9AT00" 194 C "Hitachi Travelstar 20GB (5400RPM)"
+"HTS548030M9AT00" 194 C "Hitachi Travelstar 30GB (5400RPM)"
+"HTS548040M9AT00" 194 C "Hitachi Travelstar 40GB (5400RPM)"
+"HTS548060M9AT00" 194 C "Hitachi Travelstar 60GB (5400RPM)"
+"HTS548080M9AT00" 194 C "Hitachi Travelstar 80GB (5400RPM)"
+"HTS721080G9AT00" 194 C "Hitachi Travelstar 7K100 80GB (7200RPM)"
+"HTS726060M9AT00" 194 C "Hitachi Travelstar 60GB"
+
+
+########################################
+############# IBM drives
+########################################
+
+# DJSA serie is using F0h command to report temperature and also have
+# SMART capabilties but it was reported not to work.
+# "DJSA-2(30|32|10|20|05)" 0 C "IBM Travelstar 20GN, 32GH, 30GT series"
+
+"IBM-DARA-212000" 0 C "IBM Travelstar 12GN"
+"IBM-DTTA-35*" 0 C "IBM Deskstar 16GP serie"
+
+# according to specifications they do not seems to have sensor
+# but I prefer waiting for a report
+#"IBM-DTTA-37*" 0 C "IBM Deskstar 14GXP serie"
+
+"IBM-DJNA-35.*" 231 C "IBM Deskstar 25 GP serie"
+"IBM-DJNA-37.*" 231 C "IBM Deskstar 22 GXP serie"
+"IBM-DHEA-(34330|36480)" 0 C "IBM Deskstar 5 serie"
+"IBM-DHEA-(34331|36481|38451)" 0 C "IBM Deskstar 8 serie"
+"IBM-DPTA-37.*" 231 C "IBM Deskstar 34GXP serie"
+"IBM-DPTA-35.*" 231 C "IBM Deskstar 37GP serie"
+"IBM-DTLA-30[57]0[123467][05]" 194 C "IBM Deskstar 40GV & 75GXP series"
+"IC25N0[1234]0ATCS04-0" 194 C "IBM Travelstar 40GN serie"
+"IC25N0[24]0ATC[SX]05-0" 194 C "IBM Travelstar 40GNX serie"
+"IC25N0(10|15|20|30)ATDA04-0" 194 C "IBM Travelstar 30GN serie"
+"IC25N0[23468]0ATMR04*" 194 C "Hitachi Travelstar 80GN"
+"IC25T048ATDA05-0" 194 C "IBM Travelstar 48GH serie"
+"IC25T060ATC[SX]05-0" 194 C "IBM Travelstar 60GH serie"
+"IC35L0[12346]0AVER07" 194 C "IBM Deskstar 60GXP serie"
+"IC35L[01][02468]0AVV[AN]07*" 194 C "IBM Deskstar 120GXP serie"
+"IC35L[01][23689]0AVV207*" 194 C "IBM Deskstar 180GXP serie"
+
+########################################
+############# Maxtor drives
+########################################
+#"Maxtor 2B0[012][04568]H1" ??? C "Maxtor Fireball 541DX"
+"Maxtor 2F0[234]0[LJ]0" 194 C "Maxtor Fireball 3"
+# which one must I trust ?
+#"Maxtor 4D040H2" 9 C "Maxtor DiamondMax D540X-4D"
+#"Maxtor 4D040H2" 0 C "Maxtor 4D040H2"
+#"Maxtor 4D080H4" 12 C "Maxtor DiamondMax D540X-4D"
+#"Maxtor 4D060H3" 12 C "Maxtor DiamondMax D540X-4D"
+#"Maxtor 4D080H4" 9 C "Maxtor DiamondMax D540X-4D"
+"MAXTOR 4K0[468]0H[234]" 194 C "Maxtor DiamondMax D540X serie"
+"MAXTOR 4K020H1" 194 C "Maxtor 4K020H1"
+"Maxtor 4A300J0" 194 C "Maxtor MaxLine II 300GB 5400RPM"
+"Maxtor 4[RA](25|16|12|08|06)0[LJ]0" 194 C "Maxtor DiamondMax 16"
+"Maxtor 5(1024|1369|2049|2732|3073|4098)U(2|3|4|6|8)" 0 C "Maxtor DiamondMax Plus 40"
+"Maxtor 5A250J0" 194 C "Maxtor MaXline II 250GB 5400RPM"
+"Maxtor 5A300J0" 194 C "Maxtor 5A300J0"
+"Maxtor 5T0[24]0H[24]" 0 C "Maxtor DiamondMax Plus 60"
+"Maxtor 6E0[234]0L0" 194 C "Maxtor DiamondMax Plus 8"
+"MAXTOR 6L0[2468]0[LJ][1234]" 194 C "Maxtor DiamondMax Plus D740X family"
+"Maxtor 6V320F0" 194 C "Maxtor Diamond Max 10 SATA II 320 GB"
+"Maxtor 6Y(06|08|12|16|20|25)0[LPM]0" 194 C "Maxtor DiamondMax Plus 9"
+"Maxtor 7L300[RS]0" 194 C "Maxtor 7L300R0 MaxLine+III 300GB 7200rpm"
+"Maxtor 7Y250[PM]0" 194 C "Maxtor MaXLine Plus II 250GB 7200RPM"
+"Maxtor 94098U8" 11 C "Maxtor DiamondMax 40 94098U8"
+
+#"Maxtor 6(B|L)(08|12|16|20|25|30)0[RSPM]0" 194 C "Maxtor DiamondMax Plus 10"
+"Maxtor 6B080M0" 194 C "Maxtor DiamondMax 10 80GB 8MB SATA"
+"Maxtor 6B120M0" 194 C "Maxtor DiamondMax 10 120GB 8MB SATA"
+"Maxtor 6B160M0" 194 C "Maxtor DiamondMax 10 160GB 8MB SATA"
+"Maxtor 6B160P0" 194 C "Maxtor DiamondMax 10 160GB 8MB ATA/133"
+"Maxtor 6B200M0" 194 C "Maxtor DiamondMax 10 200GB 8MB SATA"
+"Maxtor 6B200P0" 194 C "Maxtor DiamondMax 10 200GB 8MB ATA/133"
+"Maxtor 6B250R0" 194 C "Maxtor DiamondMax 10 250GB 16MB ATA/133"
+"Maxtor 6B250S0" 194 C "Maxtor DiamondMax 10 250GB 16MB SATA"
+"Maxtor 6B300R0" 194 C "Maxtor DiamondMax 10 300GB 16MB ATA/133"
+"Maxtor 6B300S0" 194 C "Maxtor DiamondMax 10 300GB 16MB SATA"
+"Maxtor 6L080L0" 194 C "Maxtor DiamondMax 10 80GB 2MB ATA/133 RoHS"
+"Maxtor 6L080M0" 194 C "Maxtor DiamondMax 10 80GB 8MB SATA RoHS"
+"Maxtor 6L080P0" 194 C "Maxtor DiamondMax 10 80GB 8MB ATA/133 RoHS"
+"Maxtor 6L120M0" 194 C "Maxtor DiamondMax 10 120GB 8MB SATA RoHS"
+"Maxtor 6L120P0" 194 C "Maxtor DiamondMax 10 120GB 8MB ATA/133 RoHS"
+"Maxtor 6L160M0" 194 C "Maxtor DiamondMax 10 160GB 8MB SATA RoHS"
+"Maxtor 6L160P0" 194 C "Maxtor DiamondMax 10 160GB 8MB ATA/133 RoHS"
+"Maxtor 6L200M0" 194 C "Maxtor DiamondMax 10 200GB 8MB SATA RoHS"
+"Maxtor 6L200P0" 194 C "Maxtor DiamondMax 10 200GB 8MB ATA/133 RoHS"
+"Maxtor 6L250R0" 194 C "Maxtor DiamondMax 10 250GB 16MB ATA/133 RoHS"
+"Maxtor 6L250S0" 194 C "Maxtor DiamondMax 10 250GB 16MB SATA RoHS"
+"Maxtor 6L300R0" 194 C "Maxtor DiamondMax 10 300GB 16MB ATA/133 RoHS"
+"Maxtor 6L300S0" 194 C "Maxtor DiamondMax 10 300GB 16MB SATA RoHS"
+"Maxtor 6V080E0" 194 C "Maxtor DiamondMax 10 80GB 8MB SATAII RoHS"
+"Maxtor 6V160E0" 194 C "Maxtor DiamondMax 10 160GB 8MB SATAII RoHS"
+"Maxtor 6V200E0" 194 C "Maxtor DiamondMax 10 200GB 8MB SATAII RoHS"
+"Maxtor 6V250F0" 194 C "Maxtor DiamondMax 10 250GB 16MB SATAII RoHS"
+"Maxtor 6V300F0" 194 C "Maxtor DiamondMax 10 300GB 16MB SATAII RoHS"
+
+
+
+########################################
+############# Quantum drives
+########################################
+"QUANTUM FIREBALLP AS40.0" 0 C "Quantum Fireball AS40"
+"QUANTUM FIREBALL CX10.2A" 0 C "Quantum Fireball CX10.2A"
+#"QUANTUM FIREBALLlct10 20" 4 C "Quantum Fireball CT10 20GB"
+# I suspect the QUANTUM FIREBALL_TM2110A to have a sensor in field 9...
+# "QUANTUM FIREBALL_TM2110A" 9 C "Quantum Fireball TM2110A"
+
+
+
+########################################
+############# Samsung drives
+########################################
+# somenone reported a problem with the SP8004H which reports a temperature
+# 10°C below the ambient temperature
+"SAMSUNG HA(200|250)JC" 194 C "Samsung SpinPoint V120CE series"
+"SAMSUNG HD160JJ" 194 C "Samsung 160GB, 7200RPM, 8MB cache, SATA"
+"SAMSUNG HD160JJ/P" 194 C "Samsung SpinPoint P80 SD 160GB (7200RPM, 8MB cache)"
+"SAMSUNG HD[30|32|40][01]L[DJ]" 194 C "Samsung SpinPoint T133 series (300-400MB)"
+"SAMSUNG HD250KD" 194 C "Samsung SpinPoint T133 series (250 MB PATA)"
+"SAMSUNG HD321KJ" 194 C "Samsung Spinpoint T166 (7200RPM, 16MB cache) - SATA"
+"SAMSUNG HD501LJ" 194 C "Samsung HD501LJ"
+"SAMSUNG MP0(302|402|603|804)H" 194 C "Samsung SpinPoint M40 2.5inch"
+"SAMSUNG SW0434A" 0 C "Samsung SW0434A"
+"SAMSUNG SP(2001|4002|6003|8004|40A2)H" 194 C "Samsung SpinPoint P40 serie"
+"SAMSUNG SP(0612|0802|1203|1604|0812|1213|1614)N" 194 C "Samsung SpinPoint P80 serie"
+"SAMSUNG SP(0612|0802|1203|1604|0812|1213|1614)C" 194 C "Samsung SpinPoint P80 series - SATA"
+"SAMSUNG SP0411N" 194 C "Samsung SpinPoint PL40 serie"
+"SAMSUNG SP0822N" 194 C "Samsung SP0822N"
+"SAMSUNG SP(0812|1213|1614)C" 194 C "Samsung Spinpoint 160G SATA"
+"SAMSUNG SP2[05]14N" 194 C "Samsung SpinPoint P120 series (7200RPM, 8MB cache)"
+"SAMSUNG SP2[05]04C" 194 C "Samsung SpinPoint P120 series - SATA"
+"SAMSUNG SV0432A" 0 C "Samsung SV0432A"
+"SAMSUNG SV3002H" 0 C "Samsung SpinPoint V30 serie"
+"SAMSUNG SV(2001|4002|4012|6003|8004)H" 194 C "Samsung SpinPoint V40 serie"
+#"SAMSUNG SV(0221|0602|0813|1204)H" 9 C "Samsung SpinPoint V60 serie"
+#"SAMSUNG SV1204H" 194 C "Samsung 120G"
+"SAMSUNG SV(0401|0802|1203|1604)N" 194 C "Samsung SpinPoint V80 serie"
+"SAMSUNG SV4012H" 194 C "Samsung 40GB, 5400RPM, 2MB cache"
+
+########################################
+############# Seagate drives
+########################################
+"Seagate Technology 1275MB - ST31276A" 0 C "Seagate ST31276A"
+"ST3412A" 0 C "Seagate ST3412A"
+"ST38641A" 0 C "Seagate ST38641A"
+"ST310014A" 194 C "Seagate ST310014A"
+"ST310210A" 0 C "Seagate ST310210A"
+"ST310211A" 194 C "Seagate ST310211A"
+"ST310220A" 0 C "Seagate ST310220A"
+# SEAGATE ST313021A 13.0GB
+"ST313021A" 0 C "Seagate U8 ST313021A"
+"ST310240A" 0 C "Seagate Medalist 10240 Ultra ATA-3"
+"ST315320A" 194 C "Seagate ST315320A"
+"ST320423A" 0 C "Seagate U10 20423, Ultra ATA/66"
+"ST320011A" 194 C "Seagate ST320011A"
+"ST320014A" 194 C "Seagate ST320014A (5400 rpm, 20Gb)"
+"ST320410A" 194 C "Seagate ST320410A"
+"ST320413A" 194 C "Seagate ST320413A"
+"ST320414A" 194 C "Seagate ST320414A"
+"ST320420A" 194 C "Seagate Barracuda II ST320420A"
+"ST330013A" 194 C "Seagate ST330013A Barracuda ATA V 30GB, 7200 rpm"
+"ST330620A" 194 C "Seagate ST330620A"
+"ST330621A" 194 C "Seagate ST330621A"
+"ST330630A" 194 C "Seagate Barracuda ST330630A"
+"ST340014A" 194 C "Seagate Barracuda 7200.7 40Gb"
+"ST340015A" 194 C "Seagate Barracuda 5400.1 40GB"
+"ST340016A" 194 C "Seagate ST340016A"
+"ST340810A" 194 C "Seagate U Series 40810 (40Gb, Ultra ATA/100, 5400 rpm)"
+"ST340823A" 194 C "Seagate U Series 5 40823"
+"ST340824A" 194 C "Seagate Barracuda III"
+"ST360015A" 194 C "Seagate Barracuda V ST360015A"
+"ST360020A" 194 C "Seagate U Series 60020"
+"ST360021A" 194 C "Seagate Barracuda IV ST360021A"
+"ST380011A" 194 C "Seagate Barracuda 7200.7 80GB"
+"ST380012A" 194 C "Seagate ST380012A 80GB"
+"ST380013A" 194 C "Seagate Barracuda 7200.7 80GB"
+"ST380013AS" 194 C "Seagate Barracuda 7200.7 80GB (Serial ATA)"
+"ST380020A" 194 C "Seagate U Series 80020 (80Gb, Ultra ATA/100, 5400 rpm)"
+"ST380021A" 194 C "Seagate Barracuda IV ST380021A"
+"ST380022A" 194 C "Seagate Barracuda U7 80022, Ultra ATA/100"
+"ST380023A" 194 C "Seagate Barracuda V ST380023A"
+"ST380817AS" 194 C "Seagate Barracuda 7200.7 80GB - SATA"
+"ST39111A" 194 C "Seagate ST39111A (from Sun Ultra)"
+"ST3120020A" 194 C "Seagate ST3120020A"
+"ST3120022A" 194 C "Seagate Baraccuda 7200.7 120GB"
+"ST3120023A" 194 C "Seagate Barracuda V ST3120023A"
+"ST3120024A" 194 C "Seagate Barracuda V ST3120024A"
+"ST3120025ACE" 194 C "Seagate Barracuda V ST3120025ACE"
+"ST3120026A" 194 C "Seagate Barracuda V ST3120026A"
+"ST3160021A" 194 C "Seagate Barracuda 7200.7 - ST3160021A"
+"ST3160023(A|AS)" 194 C "Seagate Barracuda V ST3160023A and AS (160Gb, ATA100 or Serial ATA)"
+"ST3160827AS" 194 C "Seagate Barracuda 7200.7 160GB (Serial ATA)"
+"ST3200021A" 194 C "Seagate Barracuda 7200.7 Plus 200GB"
+"ST3200822(A|AS)" 194 C "Seagate Barracuda 7200.7 Plus 200GB (PATA or SATA)"
+"ST3200826A" 194 C "Seagate Barracuda 7200.8 200Gb"
+"ST3250623A" 194 C "Seagate Barracuda 7200.16 250GB"
+"ST3250823A" 194 C "Seagate Barracuda 7200.8 250GB"
+"ST3250823A" 194 C "Seagate Barracuda 7200.7 Plus 250GB"
+"ST3250823NS" 194 C "Seagate NL35 SATA (RAID-Edition) 7200 250GB"
+"ST3300831A" 194 C "Seagate 300GB ST3300831A"
+"ST3400832A" 194 C "Seagate Barracuda 7200.8 Plus 400GB"
+"ST3400633(A|AS)" 194 C "Seagate Barracuda 7200.7 400 GB"
+"ST3500630NS" 194 C "Seagate"
+"ST3400632NS" 194 C "Seagate"
+"ST3320620AS" 194 C "Seagate Barracuda 7200.7 320 GB"
+"ST3500630AS" 194 C "Seagate Barracuda 7200.7 500 GB"
+"ST3802110A" 194 C "Seagate Barracuda 7200.9 80 GB"
+"ST910021A" 194 C "Seagate Momentus 7200.1 100GB"
+"ST910082[35]A" 194 C "Seagate Momentus 5400.2 100GB"
+"ST9120821A" 194 C "Seagate Momentus 5400.2 120GB"
+"ST94019A" 194 C "Seagate ST94019A"
+"ST94813A" 194 C "Seagate Momentus 5400.2 40GB"
+"ST94[08]11A" 194 C "Seagate ST94011A"
+"ST960821A" 194 C "Seagate ST960821A"
+"ST960822A" 194 C "Seagate Momentus 5400.2 60GB"
+"ST96812AS" 194 C "Seagate Momentus 5400.2 60GB SATA"
+"ST9808211A" 194 C "Seagate Momentus 5400.2 80GB"
+
+########################################
+############# TOSHIBA Laptops
+########################################
+"MK4313MAT" 220 C "Toshiba MK4313MAT"
+"TOSHIBA MK1032GAX" 194 C "Toshiba MK1032GAX"
+"TOSHIBA MK1517GAP" 0 C "Toshiba MK1517GAP"
+"TOSHIBA MK2018GAS" 226 F "Toshiba MK2018GAS"
+"TOSHIBA MK2023GAS" 194 C "Toshiba MK2023GAS"
+
+"TOSHIBA MK3017GAP" 0 C "Toshiba MK3017GAP"
+"TOSHIBA MK3021GAS" 194 C "Toshiba MK3021GAS"
+"TOSHIBA MK3025GAS" 194 C "Toshiba MK3025GAS"
+
+#"TOSHIBA MK4019GAX" 222 C "Toshiba MK4019GAX"
+"TOSHIBA MK4021GAS" 194 C "Toshiba MK4021GAS"
+"TOSHIBA MK4025GAS" 194 C "Toshiba MK4025GAS 40 Go"
+"TOSHIBA MK4026GAS" 194 C "Toshiba MK4026GAS 40 Go"
+"TOSHIBA MK4032GAX" 194 C "Toshiba MK4032GAX"
+
+"TOSHIBA MK6021GAS" 194 C "Toshiba MK6021GAS"
+"TOSHIBA MK6022GAX" 194 C "Toshiba MK6022GAX"
+"TOSHIBA MK6025GAS" 194 C "Toshiba MK6025GAS"
+"TOSHIBA MK6026GAX" 194 C "Toshiba MK6026GAX"
+"TOSHIBA MK8025GAS" 194 C "Toshiba MK8025GAS"
+"TOSHIBA MK8026GAX" 194 C "Toshiba MK8026GAX"
+
+"MK4025GAS" 194 C "Toshiba MK4025GAS"
+
+
+########################################
+############# Western Digital drives
+########################################
+# WDC AC310100B and WDC AC2850F are reported not working
+# no more informations were given
+"WDC AC22000L" 0 C "Western Digital Caviar AC22000"
+"WDC AC420400D" 231 C "Western Digital Caviar AC420400D"
+"WDC AC418000D" 231 C "Western Digital AC418000D"
+"WDC WD135BA" 231 C "Western Digital WD135BA"
+
+"WDC WD100EB-00BHF0" 0 C "Western Digital 100EB-00BHF0"
+"WDC WD200BB-00AUA1" 0 C "Western Digital Caviar WD200BB"
+#"WDC WD200BB-60DGA0" 0 C "Western Digital Caviar WD200BB"
+"WDC WD300BB-00CAA0" 0 C "Western Digital WD300BB"
+"WDC WD360GD-00FNA0" 194 C "Western Digital SATA Raptor 36.7GB"
+"WDC WD400BB-00CAA0" 0 C "Western Digital 400BB-00CAA0"
+"WDC WD400BB-00J[KH]A0" 194 C "Western Digital Caviar WD400BB"
+"WDC WD400BB-23JHC0" 194 C "Western Digital 23JHC0"
+#"WDC WD400BB-00GFA0" 0 C ""
+"WDC WD400BB-55HEA0" 194 C "Western Digital Caviar WD400BB"
+"WDC WD400BB-(18CA|00DE)A0" 0 C "Western Digital Caviar WD400BB"
+"WDC WD400BB-75FJA1" 194 C "Western Digital Caviar WD400BB"
+"WDC WD400EB-00CPF0" 0 C "Western Digital 400EB-00CPF0"
+"WDC WD400JB-00(JJ|FM|FS)A0" 194 C "Western Digital Caviar 40GB Special Edition 8MB"
+"WDC WD400JB-00ETA0" 194 C "Western Digital 400JB-00ETA0"
+"WDC WD400JB-00JJC0" 194 C "Western Digital 400JB-00JJC0 40GB"
+"WDC WD400LB-00DNA0" 194 C "Western Digital 400LB-00DNA0"
+"WDC WD400UE-22HCT0" 194 C "Western Digital 40GB Notebook HDD"
+"WDC WD400VE-75HDT1" 194 C "Western Digital Scorpio 40GB"
+"WDC WD600BB-32BSA0" 0 C "Western Digital 600BB-32BSA0"
+"WDC WD600JB-00ETA0" 194 C "Western Digital 600JB-00ETA0"
+"WDC WD600LB-00DNA0" 194 C "Western Digital 60GB"
+"WDC WD600VE-75HDT0" 194 C "Western Digital 600VE-75HDT0"
+"WDC WD600VE-00HDT0" 194 C "Western Digital 600VE-00HDT0"
+"WDC WD740GD-00FL21.0" 194 C "Western Digital SATA Raptor"
+"WDC WD740GD-([05]0FL[AC]0|75FLA1)" 194 C "Western Digital SATA Raptor 74GB 8MB"
+"WDC WD800BB-00CAA1" 0 C "Western Digital WD800BB-00CAA1"
+"WDC WD800BB-(00|22)DKA0" 194 C "Western Digital WD800BB 80 Go"
+"WDC WD800BB-32CCB0" 194 C "Western Digital 800BB-32CCB0"
+"WDC WD800BB-55HEA0" 194 C "Western Digital 800BB-55HEA0"
+"WDC WD800BB-00JHA0" 194 C "Western Digital 800BB-00JHA0"
+"WDC WD800BB-00JKA0" 194 C "Western Digital 800BB-00JKA0"
+"WDC WD800BB-55JKA0" 194 C "Western Digital 800BB-55JKA0"
+"WDC WD800BB-75FRA0" 194 C "Western Digital Caviar WD800BB"
+"WDC WD800JB-00CRA1" 0 C "Western Digital Caviar WD800JB"
+"WDC WD800JB-00(ET|FM|FS)A0" 194 C "Western Digital Caviar 80GB Special Edition 8MB"
+"WDC WD800JB-00JJ[AC]0" 194 C "Western Digital WD800JB"
+"WDC WD800JD-(00|55)(HK|JR)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+"WDC WD800JD-00(HK|JN)A0" 194 C "Western Digital SATA 80GB, 8MB Cache"
+"WDC WD800LB-(00|55)DNA0" 194 C "Western Digital Caviar WD800LB 80 Go ATA-100"
+"WDC WD800VE-07HDT0" 194 C "Western Digital 800VE-07HDT0"
+"WDC WD1200BB-00(FTA|GUA)0" 194 C "Western Digital Caviar EIDE 2MB Cache"
+"WDC WD1200JB-00(EV|FU|GV)A0" 194 C "Western Digital Caviar 120GB Special Edition 8MB"
+"WDC WD1200JB-22GVA0" 194 C "Western Digital Caviar 120GB"
+"WDC WD1200JD-00(GBB|HBC)0" 194 C "Western Digital WD1200JD"
+"WDC WD1200LB-55EDA0" 194 C "Western Digital WD1220LB"
+"WDC WD1200SB-01KB[AC]0" 194 C "Western Digital Caviar RE (Raid Edition) 120 GB"
+"WDC WD1600BB-00DWA0" 194 C "Western Digital Caviar WD1600BB"
+"WDC WD1600JB-(00EV|00FU|00GV|22GV|75GV)A0" 194 C "Western Digital Caviar 160GB Special Edition 8MB"
+"WDC WD2000BB-00FTA0" 194 C "Western Digital WD2000BB"
+"WDC WD2000JB-(00EV|32EV|34EV|00FU|00GV|55GV|98GV|00KF)A0" 194 C "Western Digital Caviar 200GB Special Edition 8MB"
+"WDC WD2000JB-00GVC0" 194 C "Western Digital WD2000JB"
+"WDC WD2000JS-00MHB1" 194 C "Western Digital SATA 200GB"
+"WDC WD2500JB-(00RE|00EV|00FU|32FU|00GV|55GV)A0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+"WDC WD2500JB-00GVC0" 194 C "Western Digital 250GB"
+"WDC WD2500JD-(00G|32H)BB0" 194 C "Western Digital SATA Caviar 250GB Special Edition 8MB"
+"WDC WD2500JD-40HBC0" 194 C "Western Digital WD2500JD-40HBC0"
+"WDC WD2500PB-98FBA0" 194 C "Western Digital Caviar 250GB Special Edition 8MB"
+"WDC WD2500PD-00FZB1" 194 C "Western Digital WD2500PD-00FZB1"
+"WDC WD2500SD-01KCB0" 194 C "Western Digital Caviar RE 250GB 8MB"
+"WDC WD3000JB-00KFA0" 194 C "Western Digital WD3000JB"
+"WDC WD3200JB-00KFA0" 194 C "Western Digital Caviar 320GB 8MB"
+"WDC WD4000KD-00NAB0" 194 C "Western Digital Caviar SE16 400GB 16MB"
+"WDC WD4000YR-01PLB0" 194 C "Western Digital Caviar RE2 400GB 16MB"
+"WD4000YS-01MPB0" 194 C "Western Digital RE2 7200 SATA II 400 GB"
+
+# not sure for next
+# "WDC WD1200JB-00CRA1" 9 C "Western Digital 1200JB-00CRA1"
+# "WDC WD273BA" 9 C "Western Digital WD273BA"
+
+
+
+
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+########################################################################################################################
+
+"ST3750640AS" 194 C "Seagate Barracuda 7200.10 SATA 750GB"
+"ST3750840AS" 194 C "Seagate Barracuda 7200.10 SATA 750GB"
+"ST3500630AS" 194 C "Seagate Barracuda 7200.10 SATA 500GB"
+"ST3500830AS" 194 C "Seagate Barracuda 7200.10 SATA 500GB"
+"ST3400620AS" 194 C "Seagate Barracuda 7200.10 SATA 400GB"
+"ST3400620A" 194 C "Seagate Barracuda 7200.10 400GB"
+"ST3400820AS" 194 C "Seagate Barracuda 7200.10 SATA 400GB"
+"ST3320620AS" 194 C "Seagate Barracuda 7200.10 SATA 320GB"
+"ST3320820AS" 194 C "Seagate Barracuda 7200.10 SATA 320GB"
+"ST3300620AS" 194 C "Seagate Barracuda 7200.10 SATA 300GB"
+"ST3300820AS" 194 C "Seagate Barracuda 7200.10 SATA 300GB"
+"ST3250620AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3250820AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3250410AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3250310AS" 194 C "Seagate Barracuda 7200.10 SATA 250GB"
+"ST3200820AS" 194 C "Seagate Barracuda 7200.10 SATA 200GB"
+"ST3160815AS" 194 C "Seagate Barracuda 7200.10 SATA 160GB"
+"ST3160215AS" 194 C "Seagate Barracuda 7200.10 SATA 160GB"
+"ST3120815AS" 194 C "Seagate Barracuda 7200.10 SATA 120GB"
+"ST3120215AS" 194 C "Seagate Barracuda 7200.10 SATA 120GB"
+"ST380815AS" 194 C "Seagate Barracuda 7200.10 SATA 80GB"
+"ST380215AS" 194 C "Seagate Barracuda 7200.10 SATA 80GB"
+"ST340815AS" 194 C "Seagate Barracuda 7200.10 SATA 40GB"
+"ST340215AS" 194 C "Seagate Barracuda 7200.10 SATA 40GB"
+"ST3300622AS" 194 C "Seagate Barracuda 7200.9 SATA2.5 300GB"
+"ST3300831A" 194 C "Seagate Barracuda 7200.8 PATA 300GB"
+
+"Maxtor 7(L|V)250(F|R|S)0" 194 C "Maxtor MaXLine III 250GB 7200rpm"
+"Maxtor 7(L|V)300(F|R|S)0" 194 C "Maxtor MaXLine III 300GB 7200rpm"
+"MAXTOR STM3320620AS" 194 C ""
+
+"WDC WD1500ADFD-00NLR1" 194 C "Western Digital Raptor 150GB"
+"WDC WD1600JS-00NCB1" 194 C "Western Digital Caviar 1600JS 160GB Sata"
+"WDC WD1600SD-01KCC0" 194 C "Western Digital Caviar RE Serial ATA series"
+"WDC WD2500JD-57HBC0" 194 C "Western Digital Caviar SE (Serial ATA) 250 GB"
+"WDC WD2500JS" 194 C "Western Digital WD2500JS"
+"WDC WD2500JS-41MVB1" 194 C "Western Digital SATAII Caviar 250GB Special Edition 8MB"
+"WDC WD2500JD-00HBB0" 194 C "Western Digital SATA 250GB"
+"WDC WD2500KS-00MJB0" 194 C "Western Digital SATA-II Caviar 250GB Special Edition 16MB"
+"WDC WD3000JS-00PDB0" 194 C "Western Digital WD3000JS"
+"WDC WD3200KS-00PFB0" 194 C ""
+"WDC WD3200JD-22KLB0" 194 C "Western Digital Caviar SE 320GB 8MB"
diff --git a/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff b/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
new file mode 100644
index 0000000..393b5f4
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/files/hddtemp_0.3-beta15-52.diff
@@ -0,0 +1,7545 @@
+Megapatch from debian
+
+Original URL: http://ftp.debian.org/debian/pool/main/h/hddtemp/hddtemp_0.3-beta15-52.diff.gz
+
+Upstream-Status: unmaintained
+
+--- hddtemp-0.3-beta15.orig/README
++++ hddtemp-0.3-beta15/README
+@@ -28,10 +28,7 @@
+ INFORMATION
+ ===========
+ hddtemp accesses to the SATA disks via ATA pass-through commands (defined in
+-T10/04-262r7). At the time of writing (kernel 2.6.11-rc5 has just been
+-released), kernels doesn't have support for ATA pass-through. You have to
+-update the libata driver with a newer version that could be found on:
+-http://www.kernel.org/pub/linux/kernel/people/jgarzik/libata/
++T10/04-262r7). Only kernel >= 2.6.16 have this support.
+
+ In daemon mode, hddtemp doesn't allow too much query at a time. If the interval
+ between two query is inferior to 1 minute, hddtemp will give the previous value
+--- hddtemp-0.3-beta15.orig/debian/rules
++++ hddtemp-0.3-beta15/debian/rules
+@@ -0,0 +1,110 @@
++#!/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
++
++# These are used for cross-compiling and for saving the configure script
++# from having to guess our platform (since we know it already)
++DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
++DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
++
++# Get flags from dpkg-buildflags
++CFLAGS = $(shell dpkg-buildflags --get CFLAGS)
++CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS)
++LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS)
++
++ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
++ INSTALL_PROGRAM += -s
++endif
++
++config.status: configure
++ dh_testdir
++
++ -test -r /usr/share/misc/config.sub && \
++ cp -f /usr/share/misc/config.sub config.sub
++ -test -r /usr/share/misc/config.guess && \
++ cp -f /usr/share/misc/config.guess config.guess
++
++ CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" \
++ ./configure --host=$(DEB_HOST_GNU_TYPE) \
++ --build=$(DEB_BUILD_GNU_TYPE) \
++ --prefix=/usr \
++ --mandir=\$${prefix}/share/man \
++ --infodir=\$${prefix}/share/info \
++ --with-db-path=/etc/hddtemp.db
++
++build: build-arch build-indep
++
++build-arch: build-arch-stamp
++build-arch-stamp: config.status
++ dh_testdir
++ $(MAKE)
++ touch build-stamp
++
++build-indep:
++
++clean: debian-clean
++ dh_clean
++
++debian-clean:
++ dh_testdir
++ dh_testroot
++ [ ! -f Makefile ] || $(MAKE) distclean
++ rm -f po/*.gmo po/stamp-po
++ -rm -f *-stamp
++ -rm -f config.sub config.guess
++
++install: build
++ dh_testdir
++ dh_testroot
++ dh_clean -k
++ dh_installdirs
++
++ # Add here commands to install the package into debian/hddtemp.
++ $(MAKE) install DESTDIR=$(CURDIR)/debian/hddtemp
++
++ install -p -o root -g root -m 644 $(CURDIR)/debian/hddtemp.db \
++ $(CURDIR)/debian/hddtemp/etc/hddtemp.db
++
++ cp -a $(CURDIR)/contribs $(CURDIR)/debian/hddtemp/usr/share/doc/hddtemp
++ rm -f $(CURDIR)/debian/hddtemp/usr/share/doc/hddtemp/Makefile*
++
++# 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_installdebconf
++ dh_installdocs
++ dh_installexamples
++ dh_installmenu
++ dh_installlogcheck
++# dh_installlogrotate
++# dh_installemacsen
++# dh_installpam
++# dh_installmime
++ dh_installinit
++ dh_installcron
++ dh_installman
++ dh_installinfo
++ dh_installchangelogs ChangeLog
++ 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 build-arch build-indep clean binary-indep binary-arch binary install
++
+--- hddtemp-0.3-beta15.orig/debian/docs
++++ hddtemp-0.3-beta15/debian/docs
+@@ -0,0 +1,2 @@
++README
++TODO
+--- hddtemp-0.3-beta15.orig/debian/postrm
++++ hddtemp-0.3-beta15/debian/postrm
+@@ -0,0 +1,28 @@
++#! /bin/sh
++# postrm script for hddtemp
++set -e
++
++conffile="/etc/default/hddtemp"
++
++case "$1" in
++ purge)
++ rm -f $conffile
++ ;;
++ remove)
++ rm -f /usr/bin/hddtemp
++ rm -f /usr/share/man/man1/hddtemp.1.gz
++ ;;
++ upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
++ ;;
++ *)
++ echo "postrm called with unknown argument \`$1'" >&2
++ exit 1
++ ;;
++esac
++
++# dh_installdeb will replace this with shell code automatically
++# generated by other debhelper scripts.
++
++#DEBHELPER#
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/changelog
++++ hddtemp-0.3-beta15/debian/changelog
+@@ -0,0 +1,1289 @@
++hddtemp (0.3-beta15-52) unstable; urgency=low
++
++ * Decrease hddtemp/daemon priority to medium from high (closes:
++ bug#680877).
++ * Bumped Standards-Version to 3.9.3.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 09 Jul 2012 08:12:30 +0200
++
++hddtemp (0.3-beta15-51) unstable; urgency=low
++
++ * init script: also probe for double letter drives (closes: bug#646724).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 30 Oct 2011 20:21:06 +0100
++
++hddtemp (0.3-beta15-50) unstable; urgency=low
++
++ * Convert hddtemp.db to UTF-8 (closes: bug#640899).
++ * Don't restart on reload in init.d (closes: bug#643610).
++ * Add a status option in init.d (closes: bug#643611).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 09 Oct 2011 20:16:06 +0200
++
++hddtemp (0.3-beta15-49) unstable; urgency=low
++
++ * Added Slovak debconf templates. Thanks to Slavko (closes: bug#634519).
++ * Fix a few typo in translation and enable German translation. Thanks to
++ Ville Skyttä for tha patch.
++ * Add build-arch and build-indep targets.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 30 Aug 2011 16:32:45 +0200
++
++hddtemp (0.3-beta15-48) unstable; urgency=low
++
++ * Fix backtrace support on i386.
++ * Add backtrace support on amd64.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 05 Jun 2011 00:18:46 +0200
++
++hddtemp (0.3-beta15-47) unstable; urgency=low
++
++ * Fix reading model on SATA big-endian (closes: #602307).
++ * Updated Arabic debconf templates, thanks to Ossama Khaya (closes:
++ bug#596177).
++ * Updated Swedish debconf template, thanks to Joe Hansen (closes:
++ bug#603109).
++ * Update Dutch debconf translation, thanks to Jeroen Schot (closes:
++ bug#628757).
++ * Bumped Standards-Version to 3.9.2 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 04 Jun 2011 21:36:32 +0200
++
++hddtemp (0.3-beta15-46) unstable; urgency=low
++
++ * Don't probe /dev/sg? by default (closes: bug#531849).
++ * Add initial German translation, by Helge Kreutzmann (closes: #503710).
++ * Fix a typo in the help message (closes: #503711).
++ * Correctly zero-terminate long product ID strings (closes: #517981).
++ * Bumped Standards-Version to 3.8.4 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 07 Feb 2010 20:24:49 +0100
++
++hddtemp (0.3-beta15-45) unstable; urgency=low
++
++ * Updated Swedish debconf templates. Thanks to Martin Bagge (closes:
++ bug#491768).
++ * Improve init script, by Cristian Ionescu-Idbohrn (closes: bug#486235).
++ * Mention /etc/init.d/hddtemp and /etc/default/hddtemp in README.Debian
++ (closes: bug#482982).
++ * Bumped Standards-Version to 3.8.0 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Jul 2008 09:44:06 +0200
++
++hddtemp (0.3-beta15-44) unstable; urgency=low
++
++ * Updated Japanese debconf templates. Thanks to Kenshi Muto (closes:
++ bug#483504).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 02 Jun 2008 10:30:58 +0200
++
++hddtemp (0.3-beta15-43) unstable; urgency=low
++
++ * Don't wake up SATA drives if not asked (closes: #479840).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 10 May 2008 13:24:18 +0200
++
++hddtemp (0.3-beta15-42) unstable; urgency=low
++
++ * Use minus instead of hyphenin manpage.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 02 Mar 2008 19:14:14 +0100
++
++hddtemp (0.3-beta15-41) unstable; urgency=low
++
++ * Fixed LSB header in init script (closes: bug#466281).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 17 Feb 2008 18:22:21 +0100
++
++hddtemp (0.3-beta15-40) unstable; urgency=low
++
++ * Added Basque debconf templates. Thanks to Piarres Beobide (closes:
++ bug#465731).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 15 Feb 2008 21:59:07 +0100
++
++hddtemp (0.3-beta15-39) unstable; urgency=low
++
++ [ Aurelien Jarno ]
++ * Bumped Standards-Version to 3.7.3 (no changes).
++
++ [ Christian Perrier ]
++ * Debconf templates and debian/control reviewed by the debian-l10n-
++ english team as part of the Smith review project. Closes: #462483
++ * [Debconf translation updates]
++ * Norwegian Bokmål. Closes: #462799
++ * German. Closes: #462843
++ * Galician. Closes: #462988
++ * Spanish. Closes: #463898
++ * Finnish. Closes: #463943
++ * Czech. Closes: #464224
++ * Russian. Closes: #464566
++ * Italian. Closes: #465069
++ * Portuguese. Closes: #465135
++ * Vietnamese. Closes: #465534
++ * French. Closes: #465650
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 13 Feb 2008 23:43:53 +0100
++
++hddtemp (0.3-beta15-38) unstable; urgency=low
++
++ * Fix typo in hddtemp manpage (closes: bug#444242).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 11 Dec 2007 15:17:16 +0100
++
++hddtemp (0.3-beta15-37) unstable; urgency=low
++
++ * Updated Czech debconf templates. Thanks to Miroslav Kure (closes:
++ bug#413322).
++ * Added Galician debconf templates. Thanks to Jacobo Tarrio (closes:
++ bug#412198).
++ * Clean po/stamp-po to make sure the .gmo files are regenerated (closes:
++ bug#441708).
++ * Updated Portuguese translation, thanks to Rui Branco (closes:
++ bug#418281).
++ * Updated Vietnamese debconf translation. Thanks to Clytie Siddall (closes:
++ bug#427039).
++ * Fixed man page formatting error (closes: bug#439074).
++ * Fix a segfault when using --unit and --numeric (closes: bug#412368).
++ * Exit with error code != 0 in case of error (closes: bug#423509).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 12 Sep 2007 11:36:05 +0200
++
++hddtemp (0.3-beta15-36) unstable; urgency=low
++
++ * Fix the init script, trying to kill not running daemon on shutdown
++ (closes: #411645).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 20 Feb 2007 22:04:01 +0100
++
++hddtemp (0.3-beta15-35) unstable; urgency=low
++
++ * Updated Portuguese translation, thanks to Miguel Figueire (closes:
++ bug#409491).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 20 Feb 2007 08:22:22 +0100
++
++hddtemp (0.3-beta15-34) unstable; urgency=low
++
++ * Relax SATA magic checkings (closes: #404310)
++ * Updated Swedish debconf template. Thanks to Daniel Nylander (closes:
++ bug#398788).
++ * /etc/default/hddtemp: changed SYSLOG into RUN_SYSLOG and fixed the
++ comments (closes: bug#401978).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 19 Jan 2007 00:38:27 +0100
++
++hddtemp (0.3-beta15-33) unstable; urgency=medium
++
++ * Update the description (closes: #401428).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 4 Dec 2006 06:04:38 +0100
++
++hddtemp (0.3-beta15-32) unstable; urgency=low
++
++ * Updated German debconf template. Thanks to Erik Schanze (closes:
++ bug#397209).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 27 Nov 2006 14:42:32 +0100
++
++hddtemp (0.3-beta15-31) unstable; urgency=low
++
++ * Remove the suggest on gkrellm-hddtemp (closes: bug#398938).
++ * Updated Swedish debconf template. Thanks to Daniel Nylander (closes:
++ bug#398788).
++ * Added Swedish translation. Thanks to Daniel Nylander (closes:
++ bug#398787).
++ * Added and LSB header to the init script.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 27 Nov 2006 12:14:49 +0100
++
++hddtemp (0.3-beta15-30) unstable; urgency=medium
++
++ * Remove a space in the printed temperature when a disk is not present
++ in hddtemp.db.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 19 Oct 2006 14:50:09 +0200
++
++hddtemp (0.3-beta15-29) unstable; urgency=medium
++
++ * Also consider field 194 as a temperature in Celsius if the disk
++ is not present in hddtemp.db in daemon mode (closes: bug#391870).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 9 Oct 2006 16:42:47 +0200
++
++hddtemp (0.3-beta15-28) unstable; urgency=medium
++
++ * Always consider field 194 as a temperature in Celsius if the disk
++ is not present in hddtemp.db (closes: bug#387102, #386943, #389290,
++ #387403, #389309, #387544)
++ * Updated Czech debconf template. Thanks to Miroslav Jezbera (closes:
++ bug#389244).
++ * Set urgency to medium as I really want to get this version in etch
++ (and not bother with roughly one bug report per week).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 4 Oct 2006 01:53:51 +0200
++
++hddtemp (0.3-beta15-27) unstable; urgency=low
++
++ * Depends on lsb-base (>= 3.0-3) (closes: bug#386859).
++ * Added support for Western Digital WD2000JD (closes: bug#385604).
++ * Added support for Seagate NL35 SATA (closes: bug#385187).
++ * Added support for ST3160811AS (closes: bug#385335).
++ * Added support for WD400BB-00DKA0 (closes: bug#386857).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 11 Sep 2006 00:13:15 +0200
++
++hddtemp (0.3-beta15-26) unstable; urgency=low
++
++ * Added support for SAMSUNG HD160JJ.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 26 Aug 2006 22:29:13 +0200
++
++hddtemp (0.3-beta15-25) unstable; urgency=low
++
++ * Added support for WD1200JD-00FYB0 (closes: bug#383692).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 20 Aug 2006 15:00:15 +0200
++
++hddtemp (0.3-beta15-24) unstable; urgency=low
++
++ * Updated Spanish debconf template. Thanks to Carlos Valdivia Yagüe (closes:
++ bug#383374:).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 17 Aug 2006 10:25:43 +0200
++
++hddtemp (0.3-beta15-23) unstable; urgency=low
++
++ * Added support for WDC WD3200SD-01KNB0 (closes: bug#382449).
++ * Added support for ST3400633 (closes: bug#382546).
++ * Added various Seagate 7200.10 drives, patch by Petr Vandrovec (closes:
++ bug#382490).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 11 Aug 2006 21:46:40 +0200
++
++hddtemp (0.3-beta15-22) unstable; urgency=low
++
++ * Added support for ST3320620AS (closes: bug#382300).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 10 Aug 2006 11:24:58 +0200
++
++hddtemp (0.3-beta15-21) unstable; urgency=low
++
++ * Added support for Toshiba MK1032GSX (closes: bug#382130).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 9 Aug 2006 19:27:36 +0200
++
++hddtemp (0.3-beta15-20) unstable; urgency=low
++
++ * Added support for Maxtor 6V300F0 (closes: bug#382071).
++ * Added support for Seagate ST98823AS (closes: bug#382009).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 8 Aug 2006 18:28:24 +0200
++
++hddtemp (0.3-beta15-19) unstable; urgency=low
++
++ * Added support for ST3250624AS (closes: bug#381837).
++ * Added support for WDC WD3200KS-00PFB0 (closes: bug#381837).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 7 Aug 2006 23:38:39 +0200
++
++hddtemp (0.3-beta15-18) unstable; urgency=low
++
++ * Added support for MHV2060AH.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 5 Aug 2006 21:19:56 +0200
++
++hddtemp (0.3-beta15-17) unstable; urgency=low
++
++ * Added support for WDC WD1500ADFD-00NLR0 (closes: bug#381403).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 5 Aug 2006 17:00:30 +0200
++
++hddtemp (0.3-beta15-16) unstable; urgency=low
++
++ * Updated Japanese debconf template. Thanks to Kenshi Muto (closes:
++ bug#379945).
++ * Added support for ST3808110AS and ST3160812AS (closes: bug#380478).
++ * Added support for ST3160812A (closes: bug#379701).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 30 Jul 2006 22:54:13 +0200
++
++hddtemp (0.3-beta15-15) unstable; urgency=low
++
++ * Added support for WDC WD2500JD-75HBB0 (closes: bug#379024).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 20 Jul 2006 21:47:04 +0200
++
++hddtemp (0.3-beta15-14) unstable; urgency=low
++
++ * Use lsb init-functions in init script. Thanks to Benjamin Leipold for the
++ patch (closes: bug#378118).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 14 Jul 2006 15:08:39 +0200
++
++hddtemp (0.3-beta15-13) unstable; urgency=low
++
++ * Added support for Toshiba MK8032GSX (Closes: #375486).
++ * Update the minimum kernel version (2.6.16) necessary to support
++ SATA in README.
++ * Print all warning/messages to stderr.
++ * Applied patch by Andras Korn (Closes: #374796) to allow the hddtemp
++ daemon to stay in the foreground.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 29 Jun 2006 15:11:47 +0200
++
++hddtemp (0.3-beta15-12) unstable; urgency=low
++
++ * Added Dutch debconf translation, thanks to Kurt De Bree (closes:
++ bug#370072).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 3 Jun 2006 19:45:21 +0200
++
++hddtemp (0.3-beta15-11) unstable; urgency=low
++
++ * Updated Danish debconf template. Thanks to Claus Hindsgaul (closes:
++ bug#368045).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 19 May 2006 17:25:32 +0000
++
++hddtemp (0.3-beta15-10) unstable; urgency=low
++
++ * Updated French debconf translation, thanks to Jean-Luc Coulon (closes:
++ bug#367540).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 16 May 2006 21:42:39 +0200
++
++hddtemp (0.3-beta15-9) unstable; urgency=low
++
++ * debian/templates: Changed How often into in interval. (closes: bug#367382).
++ * debian/templates: fixed the templates to make lintian happy.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 15 May 2006 20:21:49 +0200
++
++hddtemp (0.3-beta15-8) unstable; urgency=low
++
++ * Added support for SAMSUNG HD300LJ (closes: bug#367250).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 14 May 2006 20:08:31 +0200
++
++hddtemp (0.3-beta15-7) unstable; urgency=low
++
++ * Added support for HDS722516VLSA80 (closes: bug#366742).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 11 May 2006 05:46:24 +0200
++
++hddtemp (0.3-beta15-6) unstable; urgency=low
++
++ * Added support for FUJITSU MHV2100BH (closes: bug#366388).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 10 May 2006 06:29:54 +0200
++
++hddtemp (0.3-beta15-5) unstable; urgency=low
++
++ * Added support for WDC WD740GD-00FLA1 (closes: bug#366021).
++ * Bumped Standards-Version to 3.7.2 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 4 May 2006 18:38:15 +0200
++
++hddtemp (0.3-beta15-4) unstable; urgency=low
++
++ * Fix a crash in daemon (syslog) mode when the hard disk is not known
++ (closes: bug#365605).
++ * Added support for WD1200JB-00REA0.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 3 May 2006 20:27:11 +0200
++
++hddtemp (0.3-beta15-3) unstable; urgency=low
++
++ * Added support for WDC WD800JD-75JNC0 (closes: bug#365359).
++ * Added support for WDC WD2500KS and WDC WD2500YD.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 2 May 2006 21:49:37 +0200
++
++hddtemp (0.3-beta15-2) unstable; urgency=low
++
++ * Updated database for Maxtors MaxLineIII series drives (closes:
++ bug#365011).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Apr 2006 14:45:22 +0200
++
++hddtemp (0.3-beta15-1) unstable; urgency=low
++
++ * New upstream version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Apr 2006 05:25:06 +0200
++
++hddtemp (0.3-beta14-12) unstable; urgency=low
++
++ * Added Portuguese translation, thanks to Miguel Figueire (closes:
++ bug#361505).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 11 Apr 2006 00:38:51 +0200
++
++hddtemp (0.3-beta14-11) unstable; urgency=low
++
++ * Added support for WDC WD2500PD-00FZB1, WDC WD2500SD-01KCB0, WDC
++ WD1200JD-00HBC0 and WDC WD4000YR-01PLB0 (closes: bug#357804).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 25 Mar 2006 20:29:42 +0100
++
++hddtemp (0.3-beta14-10) unstable; urgency=low
++
++ * Use F for fahrenheit.
++ * Added support for Hitachi DK23EA-20B (closes: bug#355763).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 18 Mar 2006 11:39:20 +0100
++
++hddtemp (0.3-beta14-9) unstable; urgency=low
++
++ * Update hddtemp.db (closes: bug#355469).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 6 Mar 2006 00:40:35 +0100
++
++hddtemp (0.3-beta14-8) unstable; urgency=low
++
++ * Don't flood syslog if the system clock wraps (closes: bug#354260).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 24 Feb 2006 21:32:36 +0100
++
++hddtemp (0.3-beta14-7) unstable; urgency=low
++
++ * Correctly initialize the structure dsk.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 4 Feb 2006 22:01:07 +0100
++
++hddtemp (0.3-beta14-6) unstable; urgency=low
++
++ * Added support for TOSHIBA MK4026GAX.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 11 Dec 2005 21:13:06 +0100
++
++hddtemp (0.3-beta14-5) unstable; urgency=low
++
++ * Added Swedish translation of hddtemp. Thanks to Daniel Nylander (close:
++ bug#337117).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 3 Nov 2005 01:56:26 +0100
++
++hddtemp (0.3-beta14-4) unstable; urgency=low
++
++ * Fixed the package device patch.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Oct 2005 03:18:43 +0200
++
++hddtemp (0.3-beta14-3) unstable; urgency=low
++
++ * Don't try to read temperature from packet devices drives (closes:
++ bug#316750, bug#335571).
++ * Verify the response length when calling modesense (closes:
++ bug#278345).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 27 Oct 2005 01:02:21 +0200
++
++hddtemp (0.3-beta14-2) unstable; urgency=low
++
++ * Added Swedish debconf translation. Thanks to Daniel Nylander (closes:
++ bug#333713).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 14 Oct 2005 11:22:05 +0200
++
++hddtemp (0.3-beta14-1) unstable; urgency=low
++
++ * New upstream version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 21 Sep 2005 14:48:43 +0200
++
++hddtemp (0.3-beta13-23) unstable; urgency=low
++
++ * Added SAMSUNG SP2014N disk to the database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 14 Sep 2005 11:27:22 +0200
++
++hddtemp (0.3-beta13-22) unstable; urgency=low
++
++ * Updated hddtemp.db (closes: bug#326180, bug#326181).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 6 Sep 2005 03:51:29 +0200
++
++hddtemp (0.3-beta13-21) unstable; urgency=low
++
++ * Added TOSHIBA MK4026GAX disk to the database (closes: bug#325702).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 31 Aug 2005 11:16:55 +0200
++
++hddtemp (0.3-beta13-20) unstable; urgency=low
++
++ * Added Arabic debconf translation. Thanks to Mohammed Adnène Trojette
++ (closes: bug#320766).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 1 Aug 2005 15:40:56 +0200
++
++hddtemp (0.3-beta13-19) unstable; urgency=low
++
++ * Fixed DISKS_NOPROBE when no other disks are detected.
++ * Added a logcheck rule to ignore sleeping drives (closes: bug#316613).
++ * Bumped Standards-Version to 3.6.2 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 6 Jul 2005 19:15:16 +0200
++
++hddtemp (0.3-beta13-18) unstable; urgency=low
++
++ * Added DISKS_NOPROBE option to the /etc/default/hddtemp (closes:
++ bug#316270).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 29 Jun 2005 22:13:53 +0200
++
++hddtemp (0.3-beta13-17) unstable; urgency=low
++
++ * Updated database.
++ * Added support for Western Digital Caviar WD800BB (closes: bug#312247).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 9 Jun 2005 23:16:25 +0200
++
++hddtemp (0.3-beta13-16) unstable; urgency=low
++
++ * Updated Vietnamese debconf translation. Thanks to Clytie Siddall (closes:
++ bug#311893).
++ * Fixed a typo in the debconf template. Thanks to Clytie Siddall (closes:
++ bug#311894).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 4 Jun 2005 17:03:31 +0200
++
++hddtemp (0.3-beta13-15) unstable; urgency=low
++
++ * Updated German debconf translation. Thanks to Erik Schanze (closes:
++ bug#311716).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 3 Jun 2005 00:41:00 +0200
++
++hddtemp (0.3-beta13-14) unstable; urgency=low
++
++ * Added SV4012H to the database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 24 May 2005 00:54:01 +0200
++
++hddtemp (0.3-beta13-13) unstable; urgency=low
++
++ * Added WD800BB-00JHA0 to the database (closes: bug#310301).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 23 May 2005 01:08:43 +0200
++
++hddtemp (0.3-beta13-12) unstable; urgency=low
++
++ * Added HDS722512VLAT80 to the database (closes: bug#309011).
++ * Added Vietnamese debconf translation. Thanks to Clytie Siddall (closes:
++ bug#309451).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 May 2005 16:58:00 +0200
++
++hddtemp (0.3-beta13-11) unstable; urgency=low
++
++ * Added WD2500JB-55GVA0 to the database (closes: bug#307673).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 4 May 2005 23:47:12 +0200
++
++hddtemp (0.3-beta13-10) unstable; urgency=high
++
++ * Daemonization fixed (closes: bug#307113).
++ * Added HDS722525VLSA80 to the database (closes: bug#306691).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 2 May 2005 01:01:54 +0200
++
++hddtemp (0.3-beta13-9) unstable; urgency=low
++
++ * Remove /etc/logcheck.ignore.workstation/hddtemp in postinst.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 22 Apr 2005 18:35:58 +0200
++
++hddtemp (0.3-beta13-8) unstable; urgency=low
++
++ * Really applied Danish debconf template (closes: bug#302353).
++ * Updated Czech debconf template. Thanks to Miroslav Jezbera (closes:
++ bug#304716).
++ * Updated French debconf template. Thanks to Jean-Luc Coulon (closes:
++ bug#303061).
++ * Added WD2000JB-32EVA0 to hddtemp.deb (closes: bug#302760).
++ * Fixed logcheck ignore files (closes: bug#304110).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 15 Apr 2005 06:26:34 +0200
++
++hddtemp (0.3-beta13-7) unstable; urgency=low
++
++ * Updated Danish debconf template. Thanks to Claus Hindsgaul (closes:
++ bug#302353).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 15 Apr 2005 06:15:19 +0200
++
++hddtemp (0.3-beta13-6) unstable; urgency=low
++
++ * Updated Japanese debconf template. Thanks to Kenshi Muto (closes:
++ bug#302322).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 31 Mar 2005 12:26:56 +0200
++
++hddtemp (0.3-beta13-5) unstable; urgency=low
++
++ * Fixed French debconf template.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 22:59:34 +0200
++
++hddtemp (0.3-beta13-4) unstable; urgency=low
++
++ * debian/templates: s/gkrellm-hdtemp/gkrellm/g (closes: bug#302178).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 15:21:10 +0200
++
++hddtemp (0.3-beta13-3) unstable; urgency=medium
++
++ * Don't listen on socket if only syslog is choosen in debconf. Thanks to
++ Mario Holbe for the patch (closes: bug#302065).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 01:25:04 +0200
++
++hddtemp (0.3-beta13-2) unstable; urgency=medium
++
++ * Try to detect cdrom drives using the ide-scsi driver (closes:
++ bug#302061).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Mar 2005 00:38:49 +0200
++
++hddtemp (0.3-beta13-1) unstable; urgency=medium
++
++ * New upstream version which contains the same code as in the previous
++ Debian package.
++ * Use SG_IO only when available (closes: bug#300679).
++ * Added syslog option in debconf (closes: bug#300332).
++ * Fixed the manpage (closes: bug#300332).
++ * Only disable SCSI exceptions if they are already enabled (closes:
++ bug#278345).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 29 Mar 2005 15:56:03 +0200
++
++hddtemp (0.3-beta12-16) unstable; urgency=low
++
++ * Verify SATA magics in the ATA pass through subroutine.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Feb 2005 16:51:48 +0100
++
++hddtemp (0.3-beta12-15) unstable; urgency=low
++
++ * Change the way SATA disks are detected, so that there is no more
++ SCSI errors with SCSI disks.
++ * Print SCSI disks name in a smarter way.
++ * Updated database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 25 Feb 2005 22:59:36 +0100
++
++hddtemp (0.3-beta12-14) unstable; urgency=low
++
++ * Converted SCSI subroutines to SG_IO (closes: bug#235422, bug#275612,
++ bug#292205).
++ * Added support for SATA (closes: bug#227409). A kernel patch for
++ SATA is still need (see /usr/share/doc/hddtemp/README).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 25 Feb 2005 02:16:57 +0100
++
++hddtemp (0.3-beta12-13) unstable; urgency=low
++
++ * Don't display an error message if /proc/sys/dev/cdrom/info doesn't
++ exist (systems without CDROM drives) (closes: bug#295814).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 18 Feb 2005 12:42:18 +0100
++
++hddtemp (0.3-beta12-12) unstable; urgency=low
++
++ * Added Hitachi Deskstar 7K80 40G and 80GB disks.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 6 Feb 2005 17:49:15 +0100
++
++hddtemp (0.3-beta12-11) unstable; urgency=low
++
++ * Uses /proc/sys/dev/cdrom/info instead of hardcoded paths to detect CDROM
++ drives (closes: bug#293542).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 4 Feb 2005 11:15:37 +0100
++
++hddtemp (0.3-beta12-10) unstable; urgency=low
++
++ * Added a README.Debian to explain why the init script could not found
++ some disks.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 25 Jan 2005 16:46:53 +0100
++
++hddtemp (0.3-beta12-9) unstable; urgency=low
++
++ * Updated Brasilian translation. Thanks to Tiago Bortoletto Vaz (closes:
++ bug#283832).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Dec 2004 21:40:42 +0100
++
++hddtemp (0.3-beta12-8) unstable; urgency=low
++
++ * Updated hddtemp.db.
++ * Added MHT2060AH drive (closes: bug#280805).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Dec 2004 19:19:37 +0100
++
++hddtemp (0.3-beta12-7) unstable; urgency=low
++
++ * Updated German debconf translation. Thanks to Erik Schanze (closes:
++ bug#282280).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 21 Nov 2004 16:22:41 +0100
++
++hddtemp (0.3-beta12-6) unstable; urgency=low
++
++ * Don't abord the script if /dev/cdrom doesn't exists.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 25 Oct 2004 14:46:42 +0000
++
++hddtemp (0.3-beta12-5) unstable; urgency=low
++
++ * Added a patch to allow temperatures to be logged to syslog (closes:
++ bug#271508).
++ * Added hddtemp-all.sh to contribs. Thanks to Javier Fernández-Sanguino
++ Peña (closes: bug#276444).
++ * /etc/init.d/hddtemp: skip CD and DVD drives.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 24 Oct 2004 17:30:34 +0200
++
++hddtemp (0.3-beta12-4) unstable; urgency=low
++
++ * Print "done." in the init script when stopping hddtemp (closes:
++ bug#275952).
++ * Updated hddtemp.db with the latest available version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 12 Oct 2004 10:10:01 +0100
++
++hddtemp (0.3-beta12-3) unstable; urgency=medium
++
++ * Added support for WDC 200GB SE (closes: bug#275105).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 7 Oct 2004 21:01:15 +0200
++
++hddtemp (0.3-beta12-2) unstable; urgency=low
++
++ * Added support for Maxtor MaXLine Plus II 250GB (closes: bug#274596).
++ * Added support for Travelstar 5K80 series (closes: bug#274671).
++ * Removed init message when the daemon is disabled.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 3 Oct 2004 19:40:23 +0200
++
++hddtemp (0.3-beta12-1) unstable; urgency=low
++
++ * New upstream version.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 2 Oct 2004 01:47:19 +0200
++
++hddtemp (0.3-beta11-17) unstable; urgency=low
++
++ * Detect sleeping drives in the init script (closes: bug#269462).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Sep 2004 18:49:35 +0200
++
++hddtemp (0.3-beta11-16) unstable; urgency=low
++
++ * Added support for Samsung SpinPoint PL40 serie.
++ * Added support for Western Digital 250GB Special Edition 8MB (closes:
++ bug#269342).
++ * Added support for Maxtor DiamondMax Plus 40 drives (closes:
++ bug#269346).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 1 Sep 2004 11:29:55 +0200
++
++hddtemp (0.3-beta11-15) unstable; urgency=low
++
++ * Added Danish debconf translation. Thanks to Claus Hindsgaul (closes:
++ bug#267551).
++ * Added support for Western Digital 160GB Special Edition 8MB (closes:
++ bug#267492).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 31 Aug 2004 11:23:43 +0200
++
++hddtemp (0.3-beta11-14) unstable; urgency=medium
++
++ * Let the kernel decide if we can access the device or not (closes:
++ bug#262742).
++ * Added an option to wake-up the driver if need (closes: #255308).
++ * Added IPv6 support.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 Aug 2004 15:36:00 +0200
++
++hddtemp (0.3-beta11-13) unstable; urgency=low
++
++ * Added Czech debconf translation. Thanks to Miroslav Jezbera (closes:
++ bug#261284).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 31 Jul 2004 16:18:17 +0200
++
++hddtemp (0.3-beta11-12) unstable; urgency=low
++
++ * Fixed manpage installation (closes: bug#258048, #258101).
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 8 Jul 2004 02:08:00 +0200
++
++hddtemp (0.3-beta11-11) unstable; urgency=low
++
++ * Print WARNING messages on stderr (closes: bug#254940).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 18 Jun 2004 00:17:08 +0200
++
++hddtemp (0.3-beta11-10) unstable; urgency=low
++
++ * If a debconf answer is empty, ignore it (closes: bug#247026).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 4 May 2004 01:48:26 +0200
++
++hddtemp (0.3-beta11-9) unstable; urgency=low
++
++ * The "Welcome to the 10 new EU members" release.
++ * Added --retry parameter when calling start-stop-daemon (closes:
++ bug#246028).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 1 May 2004 00:49:45 +0200
++
++hddtemp (0.3-beta11-8) unstable; urgency=low
++
++ * Added support for Samsung P80 SATA drives (closes: bug#243464).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 13 Apr 2004 17:34:30 +0200
++
++hddtemp (0.3-beta11-7) unstable; urgency=low
++
++ * Added support for Hitachi Deskstar 7K250 (closes: bug#241493).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 11 Apr 2004 16:37:51 +0200
++
++hddtemp (0.3-beta11-6) unstable; urgency=low
++
++ * Added support for Western Digital WD1600JB-00FUA0 disk (closes:
++ bug#237983).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 16 Mar 2004 13:14:19 +0100
++
++hddtemp (0.3-beta11-5) unstable; urgency=low
++
++ * Minor changes to debian/postinst script.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 8 Feb 2004 00:27:59 +0100
++
++hddtemp (0.3-beta11-4) unstable; urgency=low
++
++ * Updated description (closes: bug#230507).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 1 Feb 2004 17:37:58 +0100
++
++hddtemp (0.3-beta11-3) unstable; urgency=low
++
++ * Don't include asm headers on architectures that don't support
++ backtracing.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 25 Jan 2004 21:57:49 +0100
++
++hddtemp (0.3-beta11-2) unstable; urgency=low
++
++ * Included upstream ChangeLog (closes: bug#226329).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 6 Jan 2004 03:16:37 +0100
++
++hddtemp (0.3-beta11-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated the database to version 03C.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 2 Jan 2004 10:05:21 +0100
++
++hddtemp (0.3-beta10-2) unstable; urgency=low
++
++ * Disable backtracing on non-i386 architectures.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 15 Dec 2003 09:19:48 +0100
++
++hddtemp (0.3-beta10-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated debian/copyright.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 15 Dec 2003 08:24:37 +0100
++
++hddtemp (0.3-beta9-2) unstable; urgency=low
++
++ * Moved ja.po in the right directory.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 12 Dec 2003 09:31:19 +0100
++
++hddtemp (0.3-beta9-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated the database to version 03B.
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 12 Dec 2003 09:21:16 +0100
++
++hddtemp (0.3-beta8-7) unstable; urgency=low
++
++ * Added po debconf translations. Thanks to Kenshi Muto. (closes:
++ bug#211954)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 21 Sep 2003 14:03:19 +0200
++
++hddtemp (0.3-beta8-6) unstable; urgency=low
++
++ * Remove the link to /usr/sbin/hddtemp in /usr/bin when removing the
++ package (closes: bug#210609).
++ * Updated Policy standard compliance to 3.6.1 (no changes).
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 12 Sep 2003 16:06:56 +0200
++
++hddtemp (0.3-beta8-5) unstable; urgency=low
++
++ * Removed the single-quoting around the -s parameter in the init script
++ (closes: bug#208542).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 3 Sep 2003 19:02:24 +0200
++
++hddtemp (0.3-beta8-4) unstable; urgency=medium
++
++ * Don't modify the config file in the config script (closes: bug#203583).
++ * Urgency set to medium as the bug breaks upgrade.
++ * The init script also stop manually started daemons.
++ * Added a small patch to make sure hddtemp could not be started in daemon
++ mode by a normal user even if it is SUID root.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 2 Sep 2003 14:52:03 +0200
++
++hddtemp (0.3-beta8-3) unstable; urgency=low
++
++ * Don't strip the comments from the config file when installing the
++ package.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 1 Sep 2003 18:51:33 +0200
++
++hddtemp (0.3-beta8-2) unstable; urgency=low
++
++ * Fixed a typo in the manpage. Thanks to Carlos Valdivia Yagüe. (Closes:
++ bug#205947).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 19 Aug 2003 09:19:04 +0200
++
++hddtemp (0.3-beta8-1) unstable; urgency=low
++
++ * New upstream version.
++ * Recoded the changelog in UTF-8.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 12 Aug 2003 01:14:19 +0200
++
++hddtemp (0.3-beta7-6) unstable; urgency=low
++
++ * Fixed config and postinst scripts (closes: bug#203583).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 5 Aug 2003 09:16:11 +0200
++
++hddtemp (0.3-beta7-5) unstable; urgency=low
++
++ * Fixed a typo in /etc/init.d/hddtemp (closes: bug#203441).
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 30 Jul 2003 06:29:45 +0200
++
++hddtemp (0.3-beta7-4) unstable; urgency=low
++
++ * Changed the DAEMON parameter in /etc/default/hddtemp to RUN_DAEMON
++ (closes: bug#203107).
++ * Updated the database to version 036.
++ * Updated Policy standard compliance to 3.6.0.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 28 Jul 2003 02:32:00 +0200
++
++hddtemp (0.3-beta7-3) unstable; urgency=low
++
++ * Updated es debconf translations. Thanks to Carlos Valdivia Yagüe.
++ (closes: bug#198450).
++ * Updated the database to version 033.
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 24 Jun 2003 01:12:00 +0200
++
++hddtemp (0.3-beta7-2) unstable; urgency=low
++
++ * Updated fr debconf translations. Thanks to Michel Grentzin.
++ (closes: bug#198155)
++ * Added pt_BR debconf translations. Thanks to Andre Luis Lopes.
++ (closes: bug#198350)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 22 Jun 2003 02:55:59 +0200
++
++hddtemp (0.3-beta7-1) unstable; urgency=low
++
++ * New upstream version with i18n support.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 Jun 2003 22:54:25 +0200
++
++hddtemp (0.3-beta6-9) unstable; urgency=low
++
++ * Updated the database to version 032.
++ * Unmark some untranslatable strings in the master templates file. (closes:
++ bug#197642).
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 16 Jun 2003 19:32:07 +0200
++
++hddtemp (0.3-beta6-8) unstable; urgency=low
++
++ * Updated the database to version 030.
++ * Updated fr debconf translations. Thanks to Michel Grentzin.
++ (closes: bug#196765)
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 9 Jun 2003 20:37:46 +0200
++
++hddtemp (0.3-beta6-7) unstable; urgency=low
++
++ * Changed priority for debconf questions to more reasonable values.
++ * Updated the database to version 02F.
++ * Updated Policy standard compliance to 3.5.10.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 22 May 2003 23:43:24 +0200
++
++hddtemp (0.3-beta6-6) unstable; urgency=low
++
++ * Don't mark /etc/default/hddtemp as a conffile, handle it entirely
++ in maintainer scripts (closes: bug#193466).
++ * Pass --ok-nodo argument to start-stop-daemon in init script when
++ stopping hddtemp (closes: bug#193622).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 18 May 2003 13:09:48 +0200
++
++hddtemp (0.3-beta6-5) unstable; urgency=low
++
++ * Updated the database to version 02E.
++ * Don't save the fact that the daemon is running or not in debconf, but
++ rather in /etc/default/hddemp.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 11 May 2003 15:06:47 +0200
++
++hddtemp (0.3-beta6-4) unstable; urgency=low
++
++ * Updated the upstream project homepage in debian/copyright (closes:
++ bug#190960).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Apr 2003 17:46:53 +0200
++
++hddtemp (0.3-beta6-3) unstable; urgency=low
++
++ * Updated the upstream project homepage in the description (closes:
++ bug#190929).
++ * Updated the database to version 02B.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Apr 2003 11:40:14 +0200
++
++hddtemp (0.3-beta6-2) unstable; urgency=low
++
++ * Added port and separator options to /etc/default/hddtemp.
++ * Added -l option to the manpage.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 3 Apr 2003 09:44:58 +0200
++
++hddtemp (0.3-beta6-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated database.
++ * Updated Policy standard compliance to 3.5.9.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 2 Apr 2003 22:54:01 +0200
++
++hddtemp (0.3-beta5-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated database.
++ * Added an option to listen on a specific interface (closes: bug#186062).
++ * Changed name displayed by /etc/init.d/hddtemp (closes: bug#187041).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 1 Apr 2003 02:24:53 +0200
++
++hddtemp (0.3-beta4-2) unstable; urgency=low
++
++ * The "I have uploaded the wrong version" release.
++ * Fixed a bug in i18n.c. (closes: bug#185328).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 18 Mar 2003 20:32:03 +0100
++
++hddtemp (0.3-beta4-1) unstable; urgency=low
++
++ * New upstream version.
++ * Updated database.
++ * Improved /etc/init.d/hddtemp and added a config file in
++ /etc/default (Closes: bug#183843). Thanks to Greg Miller.
++ * Fixed a bug in i18n.c.
++ * Added homepage and author to the description.
++ * Debconf templates are now managed with po-debconf.
++ * Uses debian/compat instead of DH_COMPAT.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 17 Mar 2003 00:29:12 +0100
++
++hddtemp (0.3-beta3-3) unstable; urgency=low
++
++ * Added patch to allow local port reuse in TIME_WAIT.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 25 Jan 2003 01:43:21 +0100
++
++hddtemp (0.3-beta3-2) unstable; urgency=low
++
++ * Don't fail at postinst stage if daemon failed to start. (closes:
++ bug#177660)
++
++ -- Aurelien Jarno <aurel32@debian.org> Fri, 24 Jan 2003 21:21:41 +0100
++
++hddtemp (0.3-beta3-1) unstable; urgency=low
++
++ * New upstream version including all the previous patches plus some fixes.
++ * Updated database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 19 Jan 2003 21:27:30 +0100
++
++hddtemp (0.3-beta2-4) unstable; urgency=low
++
++ * Added patch from Julien Blache to fix a lot of spelling mistakes.
++ Thanks !
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 19 Jan 2003 09:55:47 +0100
++
++hddtemp (0.3-beta2-3) unstable; urgency=low
++
++ * Added an option to print only the temperature. Thanks to Julien Blache
++ for the patch. (closes: bug#176395)
++ * Fixed some warnings introduced by gcc-3.2.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 12 Jan 2003 12:30:49 +0100
++
++hddtemp (0.3-beta2-2) unstable; urgency=low
++
++ * Merged hddtemp and hddtemp-daemon and added a debconf question
++ because the package was refused by the ftpmaster.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 8 Jan 2003 21:48:09 +0100
++
++hddtemp (0.3-beta2-1) unstable; urgency=low
++
++ * New beta version.
++ * Added daemon mode init script to the new package hddtemp-daemon.
++ * Updated Policy standard compliance to 3.5.8.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 4 Jan 2003 10:04:16 +0100
++
++hddtemp (0.2-18) unstable; urgency=low
++
++ * Updated database (version 021).
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 28 Dec 2002 16:59:39 -0500
++
++hddtemp (0.2-17) unstable; urgency=low
++
++ * Fixed copyright file.
++ * Removed debian/conffiles, this is handled by dh_installdeb automatically ;
++ otherwise we end up with each conffile being listed twice...
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 17 Dec 2002 01:39:02 +0100
++
++hddtemp (0.2-16) unstable; urgency=low
++
++ * Updated database (version 01f).
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 17 Dec 2002 00:40:07 +0100
++
++hddtemp (0.2-15) unstable; urgency=low
++
++ * Updated database (version 01D).
++ * Added disk model IC35L040AVVN07-0 (closes: bug#172117). Thanks to Henrique
++ de Moraes Holschuh.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 7 Dec 2002 16:47:41 +0100
++
++hddtemp (0.2-14) unstable; urgency=low
++
++ * Corrected a bug affecting the display of the degree sign.
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 26 Sep 2002 01:29:10 +0200
++
++hddtemp (0.2-13) unstable; urgency=low
++
++ * Added support for other encodings than iso-8859-1. (closes:bug#158106)
++ * debian/hddtemp.1: corrected description of -f option.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 25 Sep 2002 14:26:20 +0200
++
++hddtemp (0.2-12) unstable; urgency=low
++
++ * Updated database.
++ * Updated Policy standard compliance to 3.5.7
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 11 Sep 2002 14:21:49 +0200
++
++hddtemp (0.2-11) unstable; urgency=low
++
++ * Updated database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Wed, 14 Aug 2002 23:01:31 +0200
++
++hddtemp (0.2-10) unstable; urgency=low
++
++ * Updated database. (closes: bug#149313)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 15 Jun 2002 00:00:48 +0200
++
++hddtemp (0.2-9) unstable; urgency=low
++
++ * Corrected a bug affecting the display of the degree sign on some systems.
++ (closes: bug#147136, #147138)
++
++ -- Aurelien Jarno <aurel32@debian.org> Tue, 11 Jun 2002 19:34:03 +0200
++
++hddtemp (0.2-8) unstable; urgency=low
++
++ * Corrected debconf template. (closes: bug#148146)
++ * Updated HDD database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 25 May 2002 17:11:16 +0200
++
++hddtemp (0.2-7) unstable; urgency=low
++
++ * Corrected the man page.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 19 May 2002 23:54:39 +0200
++
++hddtemp (0.2-6) unstable; urgency=low
++
++ * Updated HDD database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 18 May 2002 13:33:02 +0200
++
++hddtemp (0.2-5) unstable; urgency=low
++
++ * Updated HDD database.
++ * Updated the man page.
++
++ -- Aurelien Jarno <aurel32@debian.org> Mon, 13 May 2002 06:40:08 +0200
++
++hddtemp (0.2-4) unstable; urgency=low
++
++ * Moved /usr/share/hddtemp/hddtemp.db to /etc/hddtemp.db as conffile.
++ (closes: bug#146738)
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 12 May 2002 19:50:23 +0200
++
++hddtemp (0.2-3) unstable; urgency=low
++
++ * Added de debconf translations.
++ * Updated HDD database.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 12 May 2002 17:15:28 +0200
++
++hddtemp (0.2-2) unstable; urgency=low
++
++ * Fixed typos and erroneous statement in description. (closes: bug#146551)
++ * Fixed manpage. (closes: bug#146554)
++ * A symlink to /usr/bin is made when installing hddtemp SUID root.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sat, 11 May 2002 15:54:42 +0200
++
++hddtemp (0.2-1) unstable; urgency=low
++
++ * Initial Release. (closes: bug#145611)
++
++ -- Aurelien Jarno <aurel32@debian.org> Thu, 9 May 2002 14:50:35 +0200
++
+--- hddtemp-0.3-beta15.orig/debian/templates
++++ hddtemp-0.3-beta15/debian/templates
+@@ -0,0 +1,63 @@
++# These templates have been reviewed by the debian-l10n-english
++# team
++#
++# If modifications/additions/rewording are needed, please ask
++# debian-l10n-english@lists.debian.org for advice.
++#
++# Even minor modifications require translation updates and such
++# changes should be coordinated with translators and reviewers.
++
++Template: hddtemp/SUID_bit
++Type: boolean
++Default: false
++_Description: Should /usr/sbin/hddtemp be installed SUID root?
++ You have the option of installing hddtemp with the SUID bit set,
++ allowing it to be run (reporting hard drive temperatures) by regular
++ users and not only the superuser.
++ .
++ This could potentially allow hddtemp to be used during an attack
++ against the computer's security. If in doubt, do not choose this option.
++ .
++ This setting can be modified later by running 'dpkg-reconfigure hddtemp'.
++
++Template: hddtemp/syslog
++Type: string
++Default: 0
++_Description: Interval between hard drive temperature checks:
++ The temperature of the hard drive(s) can be logged by hddtemp via
++ the generic system logging interface.
++ .
++ Please enter a value in seconds corresponding to the interval between
++ two checks. To disable this feature, enter 0.
++
++Template: hddtemp/daemon
++Type: boolean
++Default: false
++_Description: Should the hddtemp daemon be started at boot?
++ The hddtemp program can be run as a daemon, listening on port 7634
++ for incoming connections. It is used by some software such as gkrellm to get
++ the temperature of hard drives.
++ .
++ You have the option of starting the hddtemp daemon automatically on
++ system boot. If in doubt, it is suggested to not start it
++ automatically on boot.
++ .
++ This setting can be modified later by running 'dpkg-reconfigure hddtemp'.
++
++Template: hddtemp/interface
++Type: string
++Default: 127.0.0.1
++_Description: Interface to listen on:
++ The hddtemp program can listen for incoming connections on a specific
++ interface, or on all interfaces.
++ .
++ To listen on a specific interface, enter the IP address of that interface
++ (choosing 127.0.0.1 will accept local connections only). To listen on all interfaces,
++ enter 0.0.0.0.
++
++Template: hddtemp/port
++Type: string
++Default: 7634
++_Description: Port to listen on:
++ By default, hddtemp listens for incoming connections on port 7634. This
++ can be changed for another port number.
+--- hddtemp-0.3-beta15.orig/debian/dirs
++++ hddtemp-0.3-beta15/debian/dirs
+@@ -0,0 +1,3 @@
++etc/init.d
++etc/default
++usr/share/doc/hddtemp
+--- hddtemp-0.3-beta15.orig/debian/copyright
++++ hddtemp-0.3-beta15/debian/copyright
+@@ -0,0 +1,26 @@
++This package was debianized by Aurelien Jarno <aurel32@debian.org> on
++Wed, 8 May 2002 01:40:30 +0200.
++
++It was downloaded from http://www.guzu.net/linux/hddtemp.php
++
++Upstream Author: Emmanuel Varagnat <hddtemp@guzu.net>
++
++Copyright: 2002, 2003 Emmanuel Varagnat
++
++ This program is free software; you can redistribute it and/or modify
++ it under the terms of the GNU General Public License as published by
++ the Free Software Foundation; either version 2 of the License, or
++ (at your option) any later version.
++
++ This program is distributed in the hope that it will be useful,
++ but WITHOUT ANY WARRANTY; without even the implied warranty of
++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
++ GNU General Public License for more details.
++
++ You should have received a copy of the GNU General Public License with
++ the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL;
++ if not, write to the Free Software Foundation, Inc., 51 Franklin St,
++ Fifth Floor, Boston, MA 02110-1301 USA
++
++ On Debian systems, the complete text of the GNU General Public
++ License, version 2, can be found in /usr/share/common-licenses/GPL-2.
+--- hddtemp-0.3-beta15.orig/debian/logcheck.ignore.server
++++ hddtemp-0.3-beta15/debian/logcheck.ignore.server
+@@ -0,0 +1,2 @@
++^\w{3} [ :0-9]{11} [._[:alnum:]-]+ hddtemp\[[0-9]+\]: /dev/([hs]d[a-z]|sg[0-9]): .*: [0-9]+ [CF]$
++^\w{3} [ :0-9]{11} [._[:alnum:]-]+ hddtemp\[[0-9]+\]: /dev/([hs]d[a-z]|sg[0-9]): .*: drive is sleeping$
+--- hddtemp-0.3-beta15.orig/debian/config
++++ hddtemp-0.3-beta15/debian/config
+@@ -0,0 +1,51 @@
++#!/bin/sh
++# hddtemp package configuration script
++
++set -e
++
++conffile="/etc/default/hddtemp"
++
++get_config_file()
++{
++ config_field=$1
++ db_field=$2
++
++ if [ -f "$conffile" ] ; then
++ VALUE="$(grep "^[ ]*$config_field" $conffile | sed -e "s/^$config_field *= *\"\(.*\)\"/\1/g")"
++ if [ -n "$VALUE" ] ; then
++ db_set $db_field "$VALUE"
++ fi
++ fi
++}
++
++# Source debconf library -- we have a Depends line
++# to make sure it is there...
++. /usr/share/debconf/confmodule
++db_version 2.0
++
++if [ "$1" = configure -o "$1" = reconfigure ] ; then
++ db_input medium hddtemp/SUID_bit || true
++
++ get_config_file SYSLOG hddtemp/syslog
++ db_input medium hddtemp/syslog || true
++
++ get_config_file DAEMON hddtemp/daemon
++ get_config_file RUN_DAEMON hddtemp/daemon
++ db_input medium hddtemp/daemon || true
++
++ db_go
++
++ db_get hddtemp/daemon
++
++ if [ "$RET" = "true" ] ; then
++ get_config_file INTERFACE hddtemp/interface
++ db_input medium hddtemp/interface || true
++
++ get_config_file PORT hddtemp/port
++ db_input medium hddtemp/port || true
++
++ db_go
++ fi
++fi
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/postinst
++++ hddtemp-0.3-beta15/debian/postinst
+@@ -0,0 +1,146 @@
++#!/bin/sh
++# postinst script for hddtemp
++set -e
++
++conffile="/etc/default/hddtemp"
++
++update_config_file()
++{
++ db_field=$1
++ config_field=$2
++
++ RET=false
++ db_get $db_field
++ if [ -n "$RET" ] ; then
++ if grep -q "^$config_field" $conffile ; then
++ # keep any admin changes, while replacing the variable content
++ sed "s/^[ ]*$config_field=\".*\"/$config_field=\"$RET\"/" < $conffile > $conffile.new &&
++ mv $conffile.new $conffile
++ else
++ echo "$config_field=\"$RET\"" >> $conffile
++ fi
++ fi
++}
++
++# Source debconf library -- we have a Depends line
++# to make sure it is there...
++. /usr/share/debconf/confmodule
++db_version 2.0
++
++case "$1" in
++ configure)
++ if [ -f $conffile ] ; then
++ sed -i -e 's/^[ ]*DAEMON/RUN_DAEMON/g' \
++ -e 's/^[ ]*SYSLOG/RUN_SYSLOG/g' \
++ -e 's/^# Master system-wide hddtemp switch.*/# hddtemp network daemon switch. If set to true, hddtemp will listen/' \
++ -e 's/^# set to true. STOP THE SERVICE.*/# for incoming connections./' \
++ -e 's/^# Logging period.*temperatures.$/# Logging period (in seconds) for the temperatures. If set to a value\n# different than 0, hddtemp will run as a daemon periodically logging\n# the temperatures through syslog/' \
++ $conffile
++ if ! grep -q RUN_SYSLOG $conffile ; then
++ cat << EOF >> $conffile
++
++# Logging period (in seconds) for the temperatures. If set to a value
++# different than 0, hddtemp will run as a daemon periodically logging
++# the temperatures through syslog
++RUN_SYSLOG="0"
++EOF
++ fi
++ if ! grep -q OPTIONS $conffile ; then
++ cat << EOF >> $conffile
++
++# Other options to pass to hddtemp
++OPTIONS=""
++EOF
++ fi
++ if ! grep -q DISKS_NOPROBE $conffile ; then
++ cat << EOF >> $conffile
++
++# List of devices you want to use with hddtemp, but that would not be
++# probed for a working sensor.
++DISKS_NOPROBE=""
++EOF
++ fi
++ else
++ cat << EOF > $conffile
++# Defaults for hddtemp initscript (/etc/init.d/hddtemp)
++# This is a POSIX shell fragment
++
++# [automatically edited by postinst, do not change line format ]
++
++# hddtemp network daemon switch. If set to true, hddtemp will listen
++# for incoming connections.
++RUN_DAEMON="true"
++
++# List of devices you want to use with hddtemp. If none specified,
++# hddtemp will probe standard devices.
++#DISKS="/dev/hda"
++
++# List of devices you want to use with hddtemp, but that would not be
++# probed for a working sensor.
++DISKS_NOPROBE=""
++
++# IP address of the interface on which you want hddtemp to be bound
++# on. If none specified, goes to 127.0.0.1. Use 0.0.0.0 to bind hddtemp
++# on all interfaces.
++INTERFACE="127.0.0.1"
++
++# Port number on which you want hddtemp to listen on. If none specified,
++# the port 7634 is used.
++PORT="7634"
++
++# Database file to use. If none specified, /etc/hddtemp.db is used.
++#DATABASE="/etc/hddtemp.db"
++
++# Separator to use between fields. The default separator is '|'.
++#SEPARATOR="|"
++
++# Logging period (in seconds) for the temperatures. If set to a value
++# different than 0, hddtemp will run as a daemon periodically logging
++# the temperatures through syslog
++RUN_SYSLOG="0"
++
++# Other options to pass to hddtemp
++OPTIONS=""
++EOF
++ fi
++
++ update_config_file hddtemp/daemon RUN_DAEMON
++ update_config_file hddtemp/syslog RUN_SYSLOG
++ update_config_file hddtemp/interface INTERFACE
++ update_config_file hddtemp/port PORT
++
++ if ! dpkg-statoverride --list /usr/sbin/hddtemp 1>/dev/null 2>&1; then
++ # check if we are installing suid or not
++ RET=false
++ db_get hddtemp/SUID_bit
++ if [ "$RET" = "true" ]; then
++ chmod 4755 /usr/sbin/hddtemp
++ ln -sf /usr/sbin/hddtemp /usr/bin/hddtemp
++ ln -sf ../man8/hddtemp.8.gz /usr/share/man/man1/hddtemp.1.gz
++ else
++ chmod 0755 /usr/sbin/hddtemp
++ rm -f /usr/bin/hddtemp
++ rm -f /usr/share/man/man8/hddtemp.1.gz
++ fi
++ fi
++
++ db_stop
++
++ rm -f /etc/logcheck/ignore.d.workstation/hddtemp
++ ;;
++ abort-upgrade|abort-remove|abort-deconfigure)
++ ;;
++
++ *)
++ echo "postinst called with unknown argument \`$1'" >&2
++ exit 1
++ ;;
++esac
++
++
++# dh_installdeb will replace this with shell code automatically
++# generated by other debhelper scripts.
++
++#DEBHELPER#
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/control
++++ hddtemp-0.3-beta15/debian/control
+@@ -0,0 +1,17 @@
++Source: hddtemp
++Section: utils
++Priority: extra
++Maintainer: Aurelien Jarno <aurel32@debian.org>
++Build-Depends: debhelper (>> 5), autotools-dev, gettext (>> 0.10.1)
++Standards-Version: 3.9.3
++Homepage: http://www.guzu.net/linux/hddtemp.php
++
++Package: hddtemp
++Architecture: any
++Depends: ${shlibs:Depends}, ${misc:Depends}, lsb-base (>= 3.0-3)
++Suggests: ksensors
++Conflicts: ksensors (<< 0.7-8), gkrellm-hddtemp (<< 0.1-9)
++Description: hard drive temperature monitoring utility
++ The hddtemp program monitors and reports the temperature of PATA, SATA
++ or SCSI hard drives by reading Self-Monitoring Analysis and Reporting
++ Technology (S.M.A.R.T.) information on drives that support this feature.
+--- hddtemp-0.3-beta15.orig/debian/init
++++ hddtemp-0.3-beta15/debian/init
+@@ -0,0 +1,100 @@
++#!/bin/sh
++#
++# skeleton example file to build /etc/init.d/ scripts.
++# This file should be used to construct scripts for /etc/init.d.
++#
++# Written by Miquel van Smoorenburg <miquels@cistron.nl>.
++# Modified for Debian GNU/Linux
++# by Ian Murdock <imurdock@gnu.ai.mit.edu>.
++#
++# Version: @(#)skeleton 1.8 03-Mar-1998 miquels@cistron.nl
++#
++
++### BEGIN INIT INFO
++# Provides: hddtemp
++# Required-Start: $remote_fs $syslog $network
++# Required-Stop: $remote_fs $syslog $network
++# Default-Start: 2 3 4 5
++# Default-Stop: 0 1 6
++# Short-Description: disk temperature monitoring daemon
++# Description: hddtemp is a disk temperature monitoring daemon
++### END INIT INFO
++
++PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
++NAME=hddtemp
++DAEMON=/usr/sbin/$NAME
++DESC="disk temperature monitoring daemon"
++
++DISKS="/dev/hd[a-z] /dev/hd[a-z][a-z]"
++DISKS="$DISKS /dev/sd[a-z] /dev/sd[a-z][a-z]"
++DISKS="$DISKS /dev/sr[a-z] /dev/sr[a-z][a-z]"
++INTERFACE="0.0.0.0"
++PORT="7634"
++SEPARATOR="|"
++RUN_SYSLOG="0"
++
++# Reads config file (will override defaults above)
++[ -r /etc/default/hddtemp ] && . /etc/default/hddtemp
++
++if [ -n "$RUN_SYSLOG" ] && [ "$RUN_SYSLOG" != "0" ] ; then
++ SYSLOG_ARG="-S $RUN_SYSLOG"
++fi
++
++if [ "$RUN_DAEMON" = "true" ] || [ "$RUN_DAEMON" = "yes" ] ; then
++ DAEMON_ARG="-d -l $INTERFACE -p $PORT -s $SEPARATOR"
++fi
++
++[ -x "$DAEMON" ] || exit 0
++
++. /lib/lsb/init-functions
++
++case "$1" in
++ start)
++ # master switch
++ if [ -n "$DAEMON_ARG" ] || [ -n "$SYSLOG_ARG" ] ; then
++ log_daemon_msg "Starting $DESC" "$NAME:"
++ CDROMS_LIST=$(sed -ne 's/^drive name:\t\+\(.*\)$/ \/dev\/\1/p' /proc/sys/dev/cdrom/info 2>/dev/null) || :
++ CDROMS_LIST="$CDROMS_LIST $(grep -sl '^ide-scsi ' /proc/ide/hd*/driver | awk -F / '{ print "/dev/"$4 }')"
++ for disk in $DISKS ; do
++ echo $CDROMS_LIST | grep -wq $disk && continue
++ echo $DISKS_NOPROBE | grep -wq $disk && continue
++ if $DAEMON -wn $OPTIONS $disk 2>/dev/null | grep -q '^[0-9]\+$' ; then
++ DISKS_LIST="$DISKS_LIST $disk";
++ fi
++ done
++ if [ -n "$DISKS_LIST" ] || [ -n "$DISKS_NOPROBE" ] ; then
++ start-stop-daemon --start --quiet --exec $DAEMON -- $DAEMON_ARG $SYSLOG_ARG $OPTIONS $DISKS_NOPROBE $DISKS_LIST
++ ret=$?
++ log_progress_msg "$DISKS_NOPROBE$DISKS_LIST"
++ log_end_msg $ret
++ else
++ log_progress_msg "no disks with monitoring capability were found."
++ log_end_msg 0
++ fi
++ fi
++ ;;
++ stop)
++ # master switch
++ if [ "$RUN_DAEMON" = "true" ] || [ "$RUN_DAEMON" = "yes" ] || [ "$RUN_SYSLOG" != "0" ] ; then
++ log_daemon_msg "Stopping $DESC" "$NAME"
++ start-stop-daemon --stop --oknodo --exec $DAEMON --retry 30
++ log_end_msg $?
++ fi
++ ;;
++ force-reload|reload)
++ exit 3
++ ;;
++ restart)
++ $0 stop && $0 start
++ ;;
++ status)
++ status_of_proc $DAEMON $NAME
++ exit $?
++ ;;
++ *)
++ echo "Usage: /etc/init.d/$NAME {start|stop|restart|status}" >&2
++ exit 1
++ ;;
++esac
++
++exit 0
+--- hddtemp-0.3-beta15.orig/debian/compat
++++ hddtemp-0.3-beta15/debian/compat
+@@ -0,0 +1 @@
++5
+--- hddtemp-0.3-beta15.orig/debian/README.Debian
++++ hddtemp-0.3-beta15/debian/README.Debian
+@@ -0,0 +1,14 @@
++README.Debian for hddtemp
++-------------------------
++
++This package include an init script (/etc/init.d/hddtemp) to run hddtemp
++in daemon mode. To enable and configure it, either use
++'dpkg-reconfigure hddtemp' or edit /etc/default/hddtemp.
++
++By default and when enable, the init script tries to find all disk that
++support SMART. If you get an error such as 'no disks with monitoring
++capability were found' or if an hard disk is not monitored, try to run
++'hddtemp /dev/xxx', with /dev/xxx being you hard disk device. You will
++see an explanation about why it fails.
++
++ -- Aurelien Jarno <aurel32@debian.org> Sun, 27 Jul 2008 09:34:39 +0200
+--- hddtemp-0.3-beta15.orig/debian/hddtemp.db
++++ hddtemp-0.3-beta15/debian/hddtemp.db
+@@ -0,0 +1,169 @@
++#
++# Insert a regular expression for support of the model or the serie of your hard drive.
++# If you don't know what to put in the second field, put the number
++# that appears most often for your brand :o)
++# A value of zero meens that we know that the drive doesn't have
++# a temperature sensor (you can set the unit to C or F).
++#
++############################################################################
++# The following list was found at (http://www.almico.com/forumharddisks.php)
++# If your drive is in the list send me a mail.
++#
++# Manufacturer Model Size Notes
++# FUJITSU FUJITSU MPF3102AH 10.0GB
++# FUJITSU FUJITSU MPG3204AH E 20.0GB
++# FUJITSU FUJITSU MPG3307AT 30.0GB
++# FUJITSU FUJITSU MPG3409AH 40.0GB
++# FUJITSU FUJITSU MPG3409AH EF 40.0GB
++# HITACHI HITACHI_DK23CA-10 9.8GB
++# HITACHI HITACHI_DK23CA-15 14.7GB
++# SAMSUNG SAMSUNG SV3012H 29.4GB
++# SEAGATE ST310210A 10.0GB
++# SEAGATE ST310211A 9.8GB
++# SEAGATE ST310215A 10.0GB
++# SEAGATE ST315320A 14.9GB
++# SEAGATE ST320410A 19.6GB
++# SEAGATE ST320413A 19.6GB
++# SEAGATE ST320420A 19.9GB
++# SEAGATE ST330610A 29.3GB
++# SEAGATE ST330620A 29.3GB
++# SEAGATE ST330621A 29.3GB
++# SEAGATE ST330630A 29.9GB
++# SEAGATE ST340016A 39.1GB
++# SEAGATE ST340810ACE 39.1GB
++# SEAGATE ST380020ACE 78.2GB
++# WESTERN DIGITAL WDC AC210200D 10.0GB
++# WESTERN DIGITAL WDC AC29100D 8.9GB
++# WESTERN DIGITAL WDC AC420400D 19.9GB
++# WESTERN DIGITAL WDC WD102AA 10.0GB
++#
++#################################################
++
++########################################
++############# ExcelStor drives
++########################################
++# "ExcelStor Technology CT215" ??? ? "ExcelStor CT215"
++
++
++########################################
++############# Fujitsu drives
++########################################
++"FUJITSU MHM2100AT" 0 C "Fujitsu MHM2100AT"
++
++
++########################################
++############# Hitachi drives
++########################################
++"HITACHI_DK228A-65" 0 C "Hitachi DK228A-65"
++
++
++########################################
++############# IBM drives
++########################################
++
++# DJSA serie is using F0h command to report temperature and also have
++# SMART capabilties but it was reported not to work.
++# "DJSA-2(30|32|10|20|05)" 0 C "IBM Travelstar 20GN, 32GH, 30GT series"
++
++"IBM-DARA-212000" 0 C "IBM Travelstar 12GN"
++"IBM-DTTA-35*" 0 C "IBM Deskstar 16GP serie"
++
++# according to specifications they do not seems to have sensor
++# but I prefer waiting for a report
++#"IBM-DTTA-37*" 0 C "IBM Deskstar 14GXP serie"
++
++"IBM-DJNA-35.*" 231 C "IBM Deskstar 25 GP serie"
++"IBM-DJNA-37.*" 231 C "IBM Deskstar 22 GXP serie"
++"IBM-DHEA-(34330|36480)" 0 C "IBM Deskstar 5 serie"
++"IBM-DHEA-(34331|36481|38451)" 0 C "IBM Deskstar 8 serie"
++"IBM-DPTA-37.*" 231 C "IBM Deskstar 34GXP serie"
++"IBM-DPTA-35.*" 231 C "IBM Deskstar 37GP serie"
++
++
++########################################
++############# Maxtor drives
++########################################
++#"Maxtor 2B0[012][04568]H1" ??? C "Maxtor Fireball 541DX"
++# which one must I trust ?
++#"Maxtor 4D040H2" 9 C "Maxtor DiamondMax D540X-4D"
++#"Maxtor 4D040H2" 0 C "Maxtor 4D040H2"
++#"Maxtor 4D080H4" 12 C "Maxtor DiamondMax D540X-4D"
++#"Maxtor 4D060H3" 12 C "Maxtor DiamondMax D540X-4D"
++#"Maxtor 4D080H4" 9 C "Maxtor DiamondMax D540X-4D"
++"Maxtor 5(1024|1369|2049|2732|3073|4098)U(2|3|4|6|8)" 0 C "Maxtor DiamondMax Plus 40"
++"Maxtor 5T0[24]0H[24]" 0 C "Maxtor DiamondMax Plus 60"
++"Maxtor 94098U8" 11 C "Maxtor DiamondMax 40 94098U8"
++
++
++########################################
++############# Quantum drives
++########################################
++"QUANTUM FIREBALLP AS40.0" 0 C "Quantum Fireball AS40"
++"QUANTUM FIREBALL CX10.2A" 0 C "Quantum Fireball CX10.2A"
++#"QUANTUM FIREBALLlct10 20" 4 C "Quantum Fireball CT10 20GB"
++# I suspect the QUANTUM FIREBALL_TM2110A to have a sensor in field 9...
++# "QUANTUM FIREBALL_TM2110A" 9 C "Quantum Fireball TM2110A"
++
++
++########################################
++############# Samsung drives
++########################################
++# somenone reported a problem with the SP8004H which reports a temperature
++# 10°C below the ambient temperature
++"SAMSUNG SW0434A" 0 C "Samsung SW0434A"
++"SAMSUNG SV0432A" 0 C "Samsung SV0432A"
++"SAMSUNG SV3002H" 0 C "Samsung SpinPoint V30 serie"
++#"SAMSUNG SV(0221|0602|0813|1204)H" 9 C "Samsung SpinPoint V60 serie"
++
++
++########################################
++############# Seagate drives
++########################################
++"Seagate Technology 1275MB - ST31276A" 0 C "Seagate ST31276A"
++"ST3412A" 0 C "Seagate ST3412A"
++"ST38641A" 0 C "Seagate ST38641A"
++"ST310210A" 0 C "Seagate ST310210A"
++"ST310220A" 0 C "Seagate ST310220A"
++# SEAGATE ST313021A 13.0GB
++"ST313021A" 0 C "Seagate U8 ST313021A"
++"ST310240A" 0 C "Seagate Medalist 10240 Ultra ATA-3"
++"ST320423A" 0 C "Seagate U10 20423, Ultra ATA/66"
++
++
++########################################
++############# TOSHIBA Laptops
++########################################
++"MK4313MAT" 220 C "Toshiba MK4313MAT"
++"TOSHIBA MK1517GAP" 0 C "Toshiba MK1517GAP"
++"TOSHIBA MK2018GAS" 226 F "Toshiba MK2018GAS"
++
++"TOSHIBA MK3017GAP" 0 C "Toshiba MK3017GAP"
++
++#"TOSHIBA MK4019GAX" 222 C "Toshiba MK4019GAX"
++
++
++########################################
++############# Western Digital drives
++########################################
++# WDC AC310100B and WDC AC2850F are reported not working
++# no more informations were given
++"WDC AC22000L" 0 C "Western Digital Caviar AC22000"
++"WDC AC420400D" 231 C "Western Digital Caviar AC420400D"
++"WDC AC418000D" 231 C "Western Digital AC418000D"
++"WDC WD135BA" 231 C "Western Digital WD135BA"
++
++"WDC WD100EB-00BHF0" 0 C "Western Digital 100EB-00BHF0"
++"WDC WD200BB-00AUA1" 0 C "Western Digital Caviar WD200BB"
++#"WDC WD200BB-60DGA0" 0 C "Western Digital Caviar WD200BB"
++"WDC WD300BB-00CAA0" 0 C "Western Digital WD300BB"
++"WDC WD400BB-00CAA0" 0 C "Western Digital 400BB-00CAA0"
++#"WDC WD400BB-00GFA0" 0 C ""
++"WDC WD400BB-(18CA|00DE)A0" 0 C "Western Digital Caviar WD400BB"
++"WDC WD400EB-00CPF0" 0 C "Western Digital 400EB-00CPF0"
++"WDC WD600BB-32BSA0" 0 C "Western Digital 600BB-32BSA0"
++"WDC WD800BB-00CAA1" 0 C "Western Digital WD800BB-00CAA1"
++"WDC WD800JB-00CRA1" 0 C "Western Digital Caviar WD800JB"
++
++# not sure for next
++# "WDC WD1200JB-00CRA1" 9 C "Western Digital 1200JB-00CRA1"
++# "WDC WD273BA" 9 C "Western Digital WD273BA"
+--- hddtemp-0.3-beta15.orig/debian/po/cs.po
++++ hddtemp-0.3-beta15/debian/po/cs.po
+@@ -0,0 +1,159 @@
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-05 21:54+0100\n"
++"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
++"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Má se /usr/sbin/hddtemp nainstalovat jako SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Máte možnost nainstalovat hddtemp s nastaveným SUID bitem, což znamená, že "
++"jej kromÄ správce budou moci spouÅ¡tÄt i bÄžnà uživatelé (a zjišťovat teplotu "
++"pevného disku)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Takto nastavený hddtemp může být potenciálnÄ využit ke kompromitovánà "
++"poÄÃtaÄe. Pokud si nejste jisti, pak je lepšà tuto možnost zamÃtnout."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "ZmÄnÃte-li pozdÄji názor, staÄà spustit âdpkg-reconfigure hddtempâ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Interval mezi kontrolami teploty pevného disku:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"hddtemp může zaznamenávat teplotu pevného disku (pevných disků) pÅes obecné "
++"logovacà rozhranà systému."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Zadejte poÄet sekund odpovÃdajÃcà dobÄ mezi po sobÄ jdoucÃmi mÄÅenÃmi. Pro "
++"zakázánà této vlastnosti jednoduše zadejte 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Má se daemon hddtemp spouÅ¡tÄt pÅi startu poÄÃtaÄe?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Program hddtemp může bÄžet jako daemon a Äekat na portu 7634 na pÅÃchozà "
++"spojenÃ. Takto může být využÃván programy typu gkrellm pro zjiÅ¡tÄnà aktuálnà "
++"teploty pevných disků."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Máte možnost spouÅ¡tÄt daemona hddtemp automaticky pÅi startu systému. Pokud "
++"si nejste jisti, pak jej radÄji pÅi startu systému nespouÅ¡tÄjte."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "RozhranÃ, na kterém naslouchat:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Program hddtemp může oÄekávat pÅÃchozà spojenà na konkrétnÃm rozhranà nebo "
++"na vÅ¡ech rozhranÃch."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Aby poslouchal na konkrétnÃm rozhranÃ, zadejte IP adresu daného rozhranà "
++"(127.0.0.1 znamená, že bude pÅijÃmat pouze lokálnà spojenÃ). Pokud chcete, "
++"aby poslouchal na vÅ¡ech rozhranÃch, zadejte 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, na kterém naslouchat:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"hddtemp standardnÄ oÄekává pÅÃchozà spojenà na portu 7634. Pokud vám tento "
++"port nevyhovuje, můžete zadat jiný."
+--- hddtemp-0.3-beta15.orig/debian/po/fr.po
++++ hddtemp-0.3-beta15/debian/po/fr.po
+@@ -0,0 +1,159 @@
++# Translation of hddtemp debconf templates to French
++# Copyright (C) 2008 Christian Perrier <bubulle@debian.org>
++# This file is distributed under the same license as the hddtemp package.
++#
++# Michel Grentzinger <mic.grentz@online.fr>, 2003.
++# Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>
++# Christian Perrier <bubulle@debian.org>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: \n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-10 12:20+0100\n"
++"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
++"Language-Team: French <debian-l10n-french@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"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Faut-il exécuter hddtemp avec les privilèges du superutilisateur ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Il est possible d'installer hddtemp avec le bit « setuid » positionné, ce qui "
++"lui permet d'être exécuté (et donc d'indiquer la température des disques "
++"durs) par les utilisateurs non privilégiés et pas seulement le "
++"superutilisateur."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Cela peut théoriquement permettre d'utiliser hddtemp pour une attaque visant "
++"à compromettre la sécurité du système. Dans le doute, il est conseillé ne de "
++"pas activer cette option."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Ce choix peut être modifié ultérieurement avec la commande « dpkg-reconfigure "
++"hddtemp »."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervalle entre deux contrôles de température :"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"La température des disques durs peut être enregistrée par hddtemp et "
++"restituée par l'interface standard de journalisation du système."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Veuillez choisir l'intervalle en secondes entre deux mesures. Indiquez 0 "
++"pour désactiver cette fonctionnalité."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Faut-il lancer automatiquement le démon hddtemp au démarrage ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Le programme hddtemp peut être lancé en tant que démon, à l'écoute sur le "
++"port 7634. Ce démon est utilisé par certains logiciels tel que gkrellm pour "
++"obtenir la température des disques durs."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Ce démon peut être lancé automatiquement au démarrage de l'ordinateur. Dans "
++"le doute, il est suggéré de ne pas activer cette option."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interface où hddtemp sera à l'écoute :"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Le programme hddtemp peut être à l'écoute de connexions entrantes sur une "
++"interface spécifique ou sur toutes les interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Pour écouter sur une interface spécifique, indiquez l'adresse IP de cette "
++"interface (en choisissant 127.0.0.1, seules les connexions locales seront "
++"acceptées). Pour écouter sur toutes les interfaces, saisissez simplement "
++"0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port sur lequel hddtemp sera à l'écoute :"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Par défaut, hddtemp attend les connexions entrantes sur le port 7634. Ce "
++"port peut être modifié si nécessaire."
+--- hddtemp-0.3-beta15.orig/debian/po/vi.po
++++ hddtemp-0.3-beta15/debian/po/vi.po
+@@ -0,0 +1,154 @@
++# Vietnamese Translation for hddtemp.
++# Copyright © 2008 Free Software Foundation, Inc.
++# Clytie Siddall <clytie@riverland.net.au>, 2005-2008.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta15-36\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-13 21:06+1030\n"
++"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
++"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=utf-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=1; plural=0;\n"
++"X-Generator: LocFactoryEditor 1.7b3\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Có nên cà i Äặt SUID root « /usr/sbin/hddtemp » không?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Bạn có tùy chá»n cà i Äặt phần má»m hddtemp vá»i bit SUID Äã Äặt, do Äó cho phép "
++"nó ÄÆ°á»£c chạy bá»i các ngưá»i dùng bình thưá»ng, không phải chá» siêu ngưá»i dùng."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Tuy nhiên, Äặt bit SUID cÅ©ng có thá» cho phép ngưá»i hiá»m Äá»c dùng hddtemp khi "
++"tấn công bảo máºt cá»§a máy tÃnh nà y. Vì váºy nếu bạn chưa chắc chắn, Äừng báºt "
++"tùy chá»n nà y."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"CÅ©ng có thá» sá»a Äá»i thiết láºp nà y vá» sau, bằng cách chạy lá»nh cấu hình lại « "
++"dpkg-reconfigure hddtemp »."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Khoảng giữa hai lần kiá»m tra nhiá»t Äá» cá»§a ÄÄ©a cứng:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Nhiá»t Äá» cá»§a những ÄÄ©a cứng có thá» ÄÆ°á»£c ghi lưu bá»i hddtemp thông qua giao "
++"diá»n ghi lưu há» thá»ng chung."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Hãy nháºp má»t giá trá» theo giây mà tương ứng vá»i khoảng thá»i gian giữa hai "
++"lần kiá»m tra. Äá» tắt tÃnh nÄng nà y, chá» ÄÆ¡n giản nháºp sá» 0 á» Äây."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Có nên khá»i chạy trình ná»n hddtemp khi khá»i Äá»ng há» thá»ng không?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Chương trình hddtemp cÅ©ng có thá» chạy dưá»i dạng trình ná»n (daemon), lắng "
++"nghe trên cá»ng 7634 tìm kết ná»i gá»i Äến. Trình ná»n nà y ÄÆ°á»£c dùng bá»i má»t sá» "
++"phần má»m (v.d. gkrellm) Äá» lấy nhiá»t Äá» cá»§a các ÄÄ©a cứng."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Tùy chá»n bạn có thá» tá»± Äá»ng khá»i chạy trình ná»n hddtemp khi khá»i Äá»ng há» "
++"thá»ng. Chưa chắc chắc thì khuyên bạn không báºt tùy chá»n nà y."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Giao diá»n trên Äó cần lắng nghe:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Chương trình hddtemp có thá» lắng nghe kết ná»i gá»i Äến trên má»t giao diá»n dứt "
++"khoát, hoặc trên má»i giao diá»n."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Äá» lắng nghe trên má»t giao diá»n cụ thá», hãy nháºp Äá»a chá» IP cá»§a giao diá»n Äó "
++"(giá trỠ« 127.0.0.0 » sẽ chá» chấp nháºn kết ná»i cục bá»). Äá» lắng nghe trên "
++"má»i giao diá»n, chá» ÄÆ¡n giản hãy nháºp Äá»a chỠ« 0.0.0.0 »."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Cá»ng trên Äó cần lắng nghe:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Mặc Äá»nh là hddtemp lắng nghe kết ná»i gá»i Äến trên cá»ng 7634. CÅ©ng có thá» "
++"thay Äá»i nó thà nh má»t cá»ng khác."
+--- hddtemp-0.3-beta15.orig/debian/po/pt_BR.po
++++ hddtemp-0.3-beta15/debian/po/pt_BR.po
+@@ -0,0 +1,205 @@
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta7-1\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2007-12-11 15:33+0100\n"
++"Last-Translator: Tiago Bortoletto Vaz <tiago@debian-ba.org>\n"
++"Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-1\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#, fuzzy
++#| msgid "Do you want /usr/sbin/hddtemp to be installed SUID root?"
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Deseja que o /usr/sbin/hddtemp seja instalado SUID root ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#, fuzzy
++#| msgid "Do you want to start the hddtemp daemon on startup?"
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Deseja iniciar o daemon hddtemp na inicialização do sistema ?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#, fuzzy
++#| msgid ""
++#| "hddtemp can be run as a daemon, listening on port 7634 for incoming "
++#| "connections. It is used some by software such as gkrellm to get the "
++#| "temperature of the hard drives."
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"O hddtemp pode ser executado com um daemon, ouvindo na porta 7634 por "
++"conexões entrantes. O mesmo é usado por alguns softwares como o gkrellm-"
++"hddtemp para obter a temperatura dos discos rígidos."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#, fuzzy
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Você tem a opção de iniciar o daemon hddtemp automaticamente na "
++"inicialização de seu computador. Caso esteja em dúvida, é sugerido que você "
++"não inicie o hddtemp automaticamente na inicialização de seu computador. "
++"Caso você mude de idéia posteriormente você poderá executar o comando 'dpkg-"
++"reconfigure hddtemp' para mudar essa configuração."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#, fuzzy
++#| msgid ""
++#| "hddtemp can listen for incoming connections on a specific interface, or "
++#| "on all interfaces."
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"O hddtemp pode ouvir por conexões entrantes em uma interface específica ou "
++"em todas as interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#, fuzzy
++#| msgid ""
++#| "To listen on a specific interface, enter the IP address of that "
++#| "interface (127.0.0.1 which is the default value corresponds to the lo "
++#| "interface). To listen on all interfaces, simply enter 0.0.0.0."
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para ouvir em uma interface específica, informe o endereço IP da interface "
++"em questão (o endereço padrão 127.0.0.1 corresponde a interface lo). Para "
++"ouvir e todas as interfaces, simplesmente informe o endereço 0.0.0.0 ."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:6001
++#, fuzzy
++#| msgid ""
++#| "By default, hddtemp listen for incoming connections on port 7634. However "
++#| "if you don't find this port appropriate, you can enter an other one."
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Por padrão, o hddtemp escuta por conexões entrantes na porta 7634. Porém "
++"caso você ache que essa não seja a porta apropriada, você pode informar uma "
++"outra porta."
++
++#~ msgid "You have the option of installing hddtemp with the SUID bit set."
++#~ msgstr "Você tem a opção de instalar o hddtemp com o bit de SUID ligado."
++
++#~ msgid ""
++#~ "If you make hddtemp SUID, unprivileged users of your systems will be able "
++#~ "to run it. This could, however, potentially allow hddtemp to be used "
++#~ "during a security attack on your computer. If in doubt, it is suggested "
++#~ "to install it without SUID. If you later change your mind, you can run: "
++#~ "'dpkg-reconfigure hddtemp'."
++#~ msgstr ""
++#~ "Caso você permita que o hdddtemp seja instalado com o bit de SUID ligado, "
++#~ "usuários não privilegiados de seu sistema serão capazes de executá-lo. "
++#~ "Isso pode, porém, potencialmente permitir que o hddtemp seja usado "
++#~ "durante um ataque contra a segurança de seu computador. Caso esteja em "
++#~ "dúvida, é sugerido que vcê instale o hddtemp sem o bit de SUID ligado. "
++#~ "Caso você mude de idéia posteriormente, você poderá executar o comando "
++#~ "'dpkg-reconfigure hddtemp' para mudar essa suaconfiguração."
++
++#, fuzzy
++#~ msgid "At which interval do you want to log the temperatures?"
++#~ msgstr "Em qual interface você deseja que o hddtemp escute ?"
++
++#~ msgid "On which interface do you want hddtemp to listen on?"
++#~ msgstr "Em qual interface você deseja que o hddtemp escute ?"
++
++#~ msgid "On which port do you want hddtemp to listen on?"
++#~ msgstr "Em qual porta você deseja que o hddtemp escute ?"
+--- hddtemp-0.3-beta15.orig/debian/po/ru.po
++++ hddtemp-0.3-beta15/debian/po/ru.po
+@@ -0,0 +1,156 @@
++# 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 <kozlov.y@gmail.com>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: 0.3-beta15-39\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-27 19:15+0300\n"
++"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\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: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "УÑÑановиÑÑ /usr/sbin/hddtemp как SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"ÐÑ Ð¼Ð¾Ð¶ÐµÑе вÑбÑаÑÑ ÑÑÑÐ°Ð½Ð¾Ð²ÐºÑ hddtemp Ñ Ð²ÐºÐ»ÑÑÑннÑм SUID биÑом, ÑÑÐ¾Ð±Ñ ÐµÑ Ð¼Ð¾Ð¶Ð½Ð¾ "
++"бÑло запÑÑкаÑÑ Ð¿ÑоÑÑÑм полÑзоваÑелÑм (Ð´Ð»Ñ Ð¿Ð¾Ð»ÑÑÐµÐ½Ð¸Ñ ÑемпеÑаÑÑÑ Ð¶ÑÑÑкиÑ
"
++"диÑков), а не ÑолÑко ÑÑпеÑполÑзоваÑелÑ."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"ÐоÑенÑиалÑно, ÑÑо Ð¼Ð¾Ð¶ÐµÑ Ð¿Ð¾Ð·Ð²Ð¾Ð»Ð¸ÑÑ Ð¸ÑполÑзоваÑÑ hddtemp Ð´Ð»Ñ Ð½Ð°ÑÑÑÐµÐ½Ð¸Ñ "
++"компÑÑÑеÑной безопаÑноÑÑи. ÐÑли не ÑвеÑенÑ, оÑвеÑÑÑе оÑÑиÑаÑелÑно."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"ÐÑÑ Ð½Ð°ÑÑÑÐ¾Ð¹ÐºÑ Ð¼Ð¾Ð¶Ð½Ð¾ позже измениÑÑ Ð·Ð°Ð¿ÑÑÑив 'dpkg-reconfigure hddtemp'."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "ÐнÑеÑвал Ð¼ÐµÐ¶Ð´Ñ Ð¿ÑовеÑками ÑемпеÑаÑÑÑÑ Ð¶ÑÑÑкого диÑка:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"ТемпеÑаÑÑÑа жÑÑÑкого диÑка(ов) Ð¼Ð¾Ð¶ÐµÑ Ð±ÑÑÑ Ð¿ÑоÑоколиÑоваÑÑÑÑ hddtemp Ñ "
++"помоÑÑÑ ÑÑандаÑÑного ÑиÑÑемного инÑеÑÑейÑа пÑоÑоколиÑованиÑ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"ÐведиÑе знаÑение инÑеÑвала в ÑекÑндаÑ
Ð¼ÐµÐ¶Ð´Ñ Ð¿ÑовеÑками. ÐÐ»Ñ Ð²ÑклÑÑÐµÐ½Ð¸Ñ "
++"пÑовеÑок введиÑе 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "ÐапÑÑкаÑÑ ÑеÑÐ²Ð¸Ñ hddtemp пÑи ÑÑаÑÑе компÑÑÑеÑа?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"ÐÑогÑамма hddtemp Ð¼Ð¾Ð¶ÐµÑ ÑабоÑаÑÑ Ð² виде ÑеÑвиÑа, пÑÐ¸Ð½Ð¸Ð¼Ð°Ñ Ð·Ð°Ð¿ÑоÑÑ Ð½Ð° поÑÑÑ "
++"7634. ÐÑо иÑполÑзÑеÑÑÑ Ð½ÐµÐºÐ¾ÑоÑÑм ÐÐ, напÑÐ¸Ð¼ÐµÑ gkrellm, Ð´Ð»Ñ Ð¿Ð¾Ð»ÑÑÐµÐ½Ð¸Ñ "
++"ÑемпеÑаÑÑÑÑ Ð¶ÑÑÑкиÑ
диÑков."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"СейÑÐ°Ñ Ð²Ñ Ð¼Ð¾Ð¶ÐµÑе вклÑÑиÑÑ Ð°Ð²ÑомаÑиÑеÑкий запÑÑк ÑеÑвиÑа hddtemp во вÑÐµÐ¼Ñ "
++"загÑÑзки ÑиÑÑемÑ. ÐÑли не ÑвеÑенÑ, вÑбеÑиÑе не запÑÑкаÑÑ ÑÑÑ Ð¿ÑогÑÐ°Ð¼Ð¼Ñ Ð²Ð¾ "
++"вÑÐµÐ¼Ñ Ð·Ð°Ð³ÑÑзки."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "ÐнÑеÑÑÐµÐ¹Ñ Ð¿ÑиÑма запÑоÑов:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"ÐÑогÑамма hddtemp Ð¼Ð¾Ð¶ÐµÑ Ð¿ÑинимаÑÑ Ð²Ñ
одÑÑие запÑоÑÑ Ð½Ð° опÑеделÑнном "
++"инÑеÑÑейÑе или Ñо вÑеÑ
инÑеÑÑейÑов."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"ÐÐ»Ñ Ð¿ÑиÑма на конкÑеÑном инÑеÑÑейÑа введиÑе IP-адÑÐµÑ ÑÑого инÑеÑÑейÑа (ввод "
++"127.0.0.1 обеÑпеÑÐ¸Ñ Ð¿ÑиÑм ÑолÑко локалÑнÑÑ
запÑоÑов). ÐÐ»Ñ Ð¿ÑиÑма запÑоÑов Ñо "
++"вÑеÑ
инÑеÑÑейÑов, введиÑе 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "ÐоÑÑ Ð¿ÑиÑма запÑоÑов:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Ðо ÑмолÑаниÑ, hddtemp пÑÐ¸Ð½Ð¸Ð¼Ð°ÐµÑ Ð²Ñ
одÑÑие запÑоÑÑ Ñ Ð¿Ð¾ÑÑа 7634. ÐдеÑÑ Ð¼Ð¾Ð¶Ð½Ð¾ "
++"задаÑÑ Ð´ÑÑгой Ð½Ð¾Ð¼ÐµÑ Ð¿Ð¾ÑÑа."
+--- hddtemp-0.3-beta15.orig/debian/po/sv.po
++++ hddtemp-0.3-beta15/debian/po/sv.po
+@@ -0,0 +1,127 @@
++# 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.
++# , fuzzy
++#
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta14-1\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-07-27 09:49+0200\n"
++"Last-Translator: Martin Bagge <brother@bsnet.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\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Vill du att /usr/sbin/hddtemp ska installeras som SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "You have the option of installing hddtemp with the SUID bit set, allowing it to be run (reporting hard drive temperatures) by regular users and not only the superuser."
++msgstr "Du kan installera hddtemp med SUID, då kan programmet köras av vanliga användare och inte bara superanvändare."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "This could potentially allow hddtemp to be used during an attack against the computer's security. If in doubt, do not choose this option."
++msgstr "Detta kan bidra till att intrång kan genomföras om det skulle finnas fel i hddtemp som någon nyttjar för att skaffa otillåten åtkomst. Om du är minsta osäker ska du inte aktivera detta alternativ."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#: ../templates:4001
++msgid "This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "Denna inställning kan ändras senare genom att köra 'dpkg-reconfige hddtemp'"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervall mellan temperaturmätningar:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "The temperature of the hard drive(s) can be logged by hddtemp via the generic system logging interface."
++msgstr "Temperaturen för hårddisken/hårddiskarna kan loggas i det vanliga loggningssystemet."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Please enter a value in seconds corresponding to the interval between two checks. To disable this feature, enter 0."
++msgstr "Ange ett värde i sekunder som anger intervallen mellan två mätningar. För att inaktivera den här funktionen, ange 0 som värde."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Vill du starta hddtemp-tjänsten när systemet startas upp?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "The hddtemp program can be run as a daemon, listening on port 7634 for incoming connections. It is used by some software such as gkrellm to get the temperature of hard drives."
++msgstr "hddtemp kan köras som en tjänst som lyssnar på port 7634 efter inkommande anslutningar. Den används av programvara såsom gkrellm för att läsa av temperaturen på hårddiskarna."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "You have the option of starting the hddtemp daemon automatically on system boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr "Du har alternativet att starta hddtemp-tjänsten automatiskt när datorn startas upp. Om du är osäker föreslår jag att du inte startar den automatiskt vid uppstarten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Gränssnitt att lyssna på:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "The hddtemp program can listen for incoming connections on a specific interface, or on all interfaces."
++msgstr "hddtemp kan lyssna efter inkommande anslutningar på specifika nätverksgränssnitt eller på gränssnitt."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"För att lyssna på ett specifik nätverkgränssnitt, ange IP-adressen på det "
++"gränssnittet (127.0.0.1, vilket är standardvärdet för gränssnittet lo). För "
++"att lyssna på alla, ange 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port att lyssna på:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Som standard lyssnar hddtemp efter inkommande anslutningar på port 7634. Om "
++"du anser att denna port inte är lämplig kan du ange en annan port här."
++
+--- hddtemp-0.3-beta15.orig/debian/po/da.po
++++ hddtemp-0.3-beta15/debian/po/da.po
+@@ -0,0 +1,158 @@
++# Danish translation hddtemp.
++# Copyright (C) 2010 hddtemp & nedenstående oversættere.
++# This file is distributed under the same license as the hddtemp package.
++# Claus Hindsgaul <claus_h@image.dk>, 2004, 2005.
++# Claus Hindsgaul <claus.hindsgaul@gmail.com>, 2006.
++# Joe Hansen (joedalton2@yahoo.dk), 2010.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2010-11-10 12:42+0000\n"
++"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
++"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1);\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Skal /usr/sbin/hddtemp installeres SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Du har muligheden for at installere hddtemp med sættet SUID bit, og tillade "
++"den at blive kørt (rapportering af temperaturer for harddiske) af normale "
++"brugere og ikke kun superbrugeren."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Dette kan potentielt tillade hddtemp at blive brugt under et angreb mod "
++"computerens sikkerhed. Hvis du er i tvivl, så vælg ikke denne indstilling."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Denne indstilling kan ændres senere ved at køre »dpkg-reconfigure hddtemp«."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Tidsrum mellem to tjek af temperaturen på harddisken:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Temperaturen på harddiskene kan logges af hddtemp via den generiske "
++"grænseflade til systemlogning."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Indtast venligst en værdi i sekunder, der angiver intervallet mellem to tjek. "
++"Du kan deaktivere denne funktion ved at skrive 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Skal hddtemp-dæmonen igangsættes ved opstart?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Programmet hddtemp kan køres som en dæmon, der lytter på port 7634 efter "
++"indkommende forbindelser. Programmet bruges af bestemte programmer såsom "
++"gkrellm til at hente harddiskenes temperaturer."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Du har mulighed for at igangsætte hddtemp-dæmonen automatisk under opstart. "
++"Hvis du er i tvivl, foreslås det, at du ikke igangsætter den automatisk under "
++"opstarten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Netkort, der skal lyttes på:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Programmet hddtemp kan lytte efter indkommende forbindelser på et bestemt "
++"netkort eller på alle netkort."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"For at lytte til et bestemt netkort, skal du angive IP-adressen på dette "
++"(valg af 127.0.0.1 vil kun acceptere lokale forbindelser). For at "
++"lytte på alle netkort indtastes 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, der skal lyttes på:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Som udgangspunkt vil hddtemp lytte efter indkommende forbindelser på port "
++"7634. Dette kan ændres til et andet nummer."
++
++
+--- hddtemp-0.3-beta15.orig/debian/po/pt.po
++++ hddtemp-0.3-beta15/debian/po/pt.po
+@@ -0,0 +1,158 @@
++# translation of pt.po to portugues
++# Portuguese translation for hddtemp
++# Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
++# This file is distributed under the same license as the hddtemp package.
++#
++# Miguel Figueiredo <elmig@debianpt.org>, 2006, 2007.
++# Bruno Queiros <brunomiguelqueiros@sapo.pt>, 2007.
++# Bruno Queiros <bqueiros@gmail.com>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: pt\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-10 19:48+0000\n"
++"Last-Translator: Bruno Queiros <bqueiros@gmail.com>\n"
++"Language-Team: portugues <pt@li.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"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Deve o /usr/sbin/hddtemp ser instalado com SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Você tem a opção de instalar o hddtemp com o SUID, permitindo-o ser "
++"executado (relatar temperaturas do disco rigido) por utilizadores normais e "
++"não apenas pelo super utilizador."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Isto pode potencialmente permitir que o hddtemp seja utilizado num ataque "
++"contra a segurança do computador. Em caso de dúvida, não escolha esta opção."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Esta opção pode ser modificada mais tarde executando 'dpkg-reconfigure "
++"hddtemp'."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervalo entre verificações da temperatura do disco rigido:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"A temperatura do(s) disco(s) rÃgido(s) podem ser guardados pelo hddtemp "
++"através da interface genérica do sistema para guardar registos."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Por favor introduza um valor em segundos correspondendo ao intervalo entre "
++"duas verificações. Para desactivar esta opção, introduza 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Deseja iniciar o daemon hddtemp no arranque?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"O programa hddtemp pode ser executado como um daemon, Ã escuta na porta "
++"7634. Ã utilizada por alguns programas como o gkrellm para obter a "
++"temperatura dos discos rÃgidos."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Você tem a opção de executar o daemon hddtemp automaticamente no arranque do "
++"sistema. Se estiver em dúvida, é sugerido que não o inicie automaticamente "
++"no arranque."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interface para utilizar na escuta:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"O programa hddtemp pode escutar por ligações de entrada numa interface "
++"especÃfica, ou em todas as interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para escutar numa interface especÃfica, introduza o endereço IP dessa "
++"interface (escolhendo 127.0.0.1 irá aceitar apenas ligações locais). Para "
++"escutar em todas as interfaces, introduza 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Porta a utilizar na escuta:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"O hddtemp escuta por ligações de entrada na porta 7634 por pré-definição. "
++"Isto pode ser alterado para outra porta."
+--- hddtemp-0.3-beta15.orig/debian/po/eu.po
++++ hddtemp-0.3-beta15/debian/po/eu.po
+@@ -0,0 +1,111 @@
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++# Piarres Beobide <pi+debian@beobide.net>, 2008.
++
++
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp-debconf\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-14 12:11+0100\n"
++"Last-Translator: Piarres Beobide <pi+debian@beobide.net>\n"
++"Language-Team: Euskara <Librezale@librezale.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=utf-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "/usr/sbin/hddtemp SUID bit-a gaiturik duela instalatu behar da?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "You have the option of installing hddtemp with the SUID bit set, allowing it to be run (reporting hard drive temperatures) by regular users and not only the superuser."
++msgstr "Zuk hddtemp SUID bit-a ezarria duela instalatzeko aukera duzu supererabiltzaileak bakarrik beharrean erabiltzaile arrunti exekutatzeko (disko gogor tenperaturak erreportatzeko) baimena emanez."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "This could potentially allow hddtemp to be used during an attack against the computer's security. If in doubt, do not choose this option."
++msgstr "Honek ordenagailuari eraso batetan hddtemp erabiltzeko aukera ematen du. Zalantzarik baduzu ez hautatu aukera hau."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#: ../templates:4001
++msgid "This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "Ezarpen hau beranduago aldatu daiteke 'dpkg-reconfigure hddtemp' abiaraziz."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Disko gogor tenperatura arakatzeen arteko denbora tartea:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "The temperature of the hard drive(s) can be logged by hddtemp via the generic system logging interface."
++msgstr "Hddtemp-ek disko gorren tenperatura sistemako erregistro interfaze orokorraren bidez erregistratu dezake."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Please enter a value in seconds corresponding to the interval between two checks. To disable this feature, enter 0."
++msgstr "Mesedez idatzi bi arakatzeen arteko denbora tartea segunduetan. Ezaugarri hau ezgaitzeko 0 ezarri."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Hddtemp deabrua sistema abiaraztean abiarazi behar al da?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "The hddtemp program can be run as a daemon, listening on port 7634 for incoming connections. It is used by some software such as gkrellm to get the temperature of hard drives."
++msgstr "Hddtemp programa deabru bat bezala erabili daiteke, sarrera konexioak 7624 atakan entzungo ditu. Hau gkrellm bezalako zenbait softwarek disko gogorren tenperatura eskuratzeko erabiltzen dute."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "You have the option of starting the hddtemp daemon automatically on system boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr "Zuk hddtemp deabrua sistema abiaraztean automatikoki abiarazteko aukera duzu. Zalantzarik baduzu abioan ez automatikoki abiaraztea gomendatzen da."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Entzungo den interfazea:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "The hddtemp program can listen for incoming connections on a specific interface, or on all interfaces."
++msgstr "Hddtemp programak sarrera konexioak interfaze zehatz batetan bakarrik edo guztietan entzuteko aukera du."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "To listen on a specific interface, enter the IP address of that interface (choosing 127.0.0.1 will accept local connections only). To listen on all interfaces, enter 0.0.0.0."
++msgstr "Interfaze zehatz batetan entzuteko, idatzi interfaze horren IP helbidea (127.0.0.1 ipiniaz konexioa lokalak bakarrik onartuko dira). Interfaze guztietan entzuteko , 0.0.0.0 idatzi."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Entzuteko ataka:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "By default, hddtemp listens for incoming connections on port 7634. This can be changed for another port number."
++msgstr "Lehenetspen modura hddtemp-ek sarrera konexioak 7634 atakan entzungo ditu. Auker ahonen bidez betste ataka bat ezartzeko auekra dago."
++
+--- hddtemp-0.3-beta15.orig/debian/po/it.po
++++ hddtemp-0.3-beta15/debian/po/it.po
+@@ -0,0 +1,155 @@
++# Italian translation of the hddtemp debconf template
++# This file is distributed under the same license as the hddtemp package
++# Copyright (C) 2008 Free Software Foundation, Inc.
++# Luca Monducci <luca.mo@tiscali.it>, 2008.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-09 21:52+0100\n"
++"Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n"
++"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Installare /usr/sbin/hddtemp con il SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Ã possibile installare hddtemp con il bit SUID attivo, questo consente a un "
++"utente normale, e non solo al superuser, di eseguire il programma "
++"(riportando le temperature dei dischi)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Questo potrebbe permettere l'uso di hddtemp durante un attacco alla "
++"sicurezza del sistema. In caso di dubbi, non attivare questa opzione."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"In seguito, per modificare questa impostazione si può usare \"dpkg-"
++"reconfigure hddtemp\"."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervallo fra due controlli della temperatura dei dischi:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"La temperatura dei dischi può essere registrata da hddtemp tramite "
++"l'interfaccia generica offerta dal log di sistema."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Inserire il valore in secondi corrispondente all'intervallo fra due "
++"controlli. Per non utilizzare questa funzionalità inserire 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Far partire il demone hddtemp all'avvio del sistema?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Il programma hddtemp può essere avviato come un demone in ascolto di "
++"connessioni in arrivo sulla porta 7634. Viene usato da programmi come "
++"gkrellm per recuperare la temperatura dei dischi fissi."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Ã possibile far partire automaticamente il demone hddtemp all'avvio del "
++"sistema. In caso di dubbi, si suggerisce di non far partire il demone "
++"all'avvio."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interfaccia su cui ascoltare:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Il programma hddtemp può mettersi in ascolto di connessioni in arrivo su una "
++"particolare interfaccia oppure su tutte."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Per ascoltare su una specifica interfaccia, inserire l'indirizzo IP di tale "
++"interfaccia (con 127.0.0.1 saranno accettate solo connesioni locali). Per "
++"ascoltare su tutte le interfacce inserire 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Porta su cui ascoltare:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Con la configurazione predefinita hddtemp si mette in ascolto di connessioni "
++"in arrivo sulla porta 7634. Ã possibile cambiare questo valore con un altro "
++"numero di porta."
+--- hddtemp-0.3-beta15.orig/debian/po/de.po
++++ hddtemp-0.3-beta15/debian/po/de.po
+@@ -0,0 +1,164 @@
++# translation of hddtemp_0.3-beta15-39_de.po to German
++#
++# 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.
++#
++# Erik Schanze <eriks@debian.org>, 2004-2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta15-39_de\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-27 21:18+0100\n"
++"Last-Translator: Erik Schanze <eriks@debian.org>\n"
++"Language-Team: German <debian-l10n-german@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=2; plural=(n != 1);\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Soll /usr/sbin/hddtemp mit Root-Rechten ausgestattet werden?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Sie haben die Möglichkeit, Hddtemp bei der Installation mit Root-Rechten "
++"auszustatten. Damit kann es von jedem normalen Benutzer (und nicht nur von "
++"Root) gestartet werden, um die Festplattentemperatur zu melden."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Dadurch könnte es aber möglich sein, die Sicherheit des Rechners "
++"anzugreifen. Wenn Sie sich nicht sicher sind, lehnen Sie hier ab."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Diese Einstellung kann später durch den Befehl 'dpkg-reconfigure hddtemp' "
++"geändert werden."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Zeitraum zwischen den Ãberprüfungen der Festplattentemperatur:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Die Temperatur der Festplatte(n) kann von Hddtemp mittels der allgemeinen "
++"System-Protokollierschnittstelle fortlaufend gespeichert werden."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Bitte geben Sie die Zeitspanne zwischen zwei Ãberprüfungen in Sekunden ein. "
++"Um diese Funktion abzuschalten, geben Sie 0 ein."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Den Hddtemp-Dienst beim Hochfahren des Systems starten?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Hddtemp kann als Dienst betrieben werden und wartet am Port 7634 auf "
++"ankommende Verbindungen. Das wird von einigen Programmen wie Gkrellm "
++"genutzt, um die Temperatur der Festplatten abzufragen."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Sie haben die Möglichkeit, den Dienst Hddtemp beim Hochfahren des Systems "
++"automatisch zu starten. Wenn Sie sich nicht sicher sind, starten Sie den "
++"Dienst nicht automatisch beim Hochfahren."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Schnittstelle, an der auf Anfragen gewartet wird:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Hddtemp kann an einer speziellen oder an allen Schnittstelle auf ankommende "
++"Verbindungen warten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Um an einer einzelnen Schnittstelle auf Anfragen zu warten, geben Sie deren "
++"IP-Adresse ein (Falls Sie 127.0.0.1 wählen, sind nur lokale Verbindungen "
++"erlaubt). Um alle Schnittstellen zu verwenden, geben Sie 0.0.0.0 ein."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, an dem auf Anfragen gewartet wird:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Normalerweise wartet Hddtemp am Port 7634 auf ankommende Verbindungen. Sie "
++"können auch eine andere Port-Nummer eingeben."
+--- hddtemp-0.3-beta15.orig/debian/po/gl.po
++++ hddtemp-0.3-beta15/debian/po/gl.po
+@@ -0,0 +1,176 @@
++# Galician translation of hddtemp's debconf templates
++# This file is distributed under the same license as the hddtemp package.
++# Jacobo Tarrio <jtarrio@debian.org>, 2007, 2008.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-28 19:08+0000\n"
++"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n"
++"Language-Team: Galician <proxecto@trasno.net>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "¿Quere instalar /usr/sbin/hddtemp con \"setuid\" root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Ten a posibilidade de instalar hddtemp co bit SUID establecido, o que o "
++"permite executar (para que informe da temperatura dos discos duros) por "
++"parte de usuarios normais, e non só o administrador."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Con isto é posible que se empregue hddtemp durante un ataque contra a "
++"seguridade do ordenador. Se non está seguro, non escolla esta opción."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Esta elección pódese cambiar a posteriori executando \"dpkg-reconfigure "
++"hddtemp\"."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervalo entre comprobacións da temperatura do disco duro:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"O programa hddtemp pode manter un rexistro da temperatura do(s) disco(s) duro"
++"(s) empregando a interface xenérica de rexistro do sistema."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Introduza un valor en segundos correspondente ao intervalo entre "
++"comprobacións. Para desactivar esta caracterÃstica, introduza un 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "¿Quere iniciar o servizo de hddtemp co sistema?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Pódese executar o programa hddtemp coma un servizo que espera conexións "
++"entrantes no porto 7634. Emprégao algún software coma gkrellm para obter a "
++"temperatura dos discos duros."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Ten a posibilidade de arrincar o servizo hddtemp automaticamente ao iniciar "
++"o sistema. Se ten dúbidas, suxÃrese que non o arrinque automaticamente ao "
++"iniciar o sistema."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interface na que escoitar:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"O programa hddtemp pode esperar conexións entrantes nunha interface "
++"determinada ou en tódalas interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para escoitar nunha interface determinada, introduza o enderezo IP desa "
++"interface (se escolle 127.0.0.1 hanse aceptar só conexións locais). Para "
++"escoitar en tódalas interfaces, introduza 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Porto no que escoitar:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Por defecto, hddtemp espera conexións entrantes no porto 7634. Pódese "
++"cambiar por outro porto."
++
++#~ msgid "You have the option of installing hddtemp with the SUID bit set."
++#~ msgstr "Ten a posibilidade de instalar hddtemp co bit SUID activado."
++
++#~ msgid ""
++#~ "If you make hddtemp SUID, unprivileged users of your systems will be able "
++#~ "to run it. This could, however, potentially allow hddtemp to be used "
++#~ "during a security attack on your computer. If in doubt, it is suggested "
++#~ "to install it without SUID. If you later change your mind, you can run: "
++#~ "'dpkg-reconfigure hddtemp'."
++#~ msgstr ""
++#~ "Se lle pon o bit SUID a hddtemp, os usuarios sen privilexios dos seus "
++#~ "sistemas han poder executalo. Nembargantes, isto pode permitir que se "
++#~ "empregue hddtemp durante un ataque á seguridade do seu ordenador. Se ten "
++#~ "dúbidas, é mellor que o instale sen SUID. Se cambia de opinión máis "
++#~ "adiante, pode executar \"dpkg-reconfigure hddtemp\"."
++
++#~ msgid ""
++#~ "hddtemp can periodically log the temperature of the hard drive(s) via the "
++#~ "SYSLOG interface."
++#~ msgstr ""
++#~ "hddtemp pode rexistrar periodicamente a temperatura das unidades de disco "
++#~ "mediante a interface SYSLOG."
+--- hddtemp-0.3-beta15.orig/debian/po/ar.po
++++ hddtemp-0.3-beta15/debian/po/ar.po
+@@ -0,0 +1,209 @@
++# translation of ar.po to
++#
++# 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.
++#
++# Ossama M. Khayat, 2005.
++# Ossama M. Khayat <okhayat@yahoo.com>, 2010.
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_0.3-beta13-19\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2010-09-09 04:48+0300\n"
++"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
++"Language-Team: Arabic <support@arabeyes.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"X-Generator: Lokalize 1.0\n"
++"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
++"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++#| msgid "Do you want /usr/sbin/hddtemp to be installed SUID root?"
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "ÙÙ ÙØ¬Ø¨ ØªØ«Ø¨ÙØª /usr/sbin/hddtemp Ù
ع ØµÙØ§ØÙØ© SUID ÙÙÙ
ستخدÙ
rootØ"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"ÙØ¯ÙÙ Ø®ÙØ§Ø± ØªØ«Ø¨ÙØª hddtemp Ù
ع ØµÙØ§ØÙØ© SUIDØ Ù
Ù
ا ÙØ³Ù
Ø"
++"ÙÙÙ
ستخدÙ
ÙÙ Ø§ÙØ¹Ø§Ø¯ÙÙ٠تشغÙÙÙ (ØªÙØ±Ùر درجات ØØ±Ø§Ø±Ø© اÙÙØ±Øµ Ø§ÙØµÙب) ÙÙÙØ³ ÙÙØ· "
++"اÙÙ
ستخدÙ
Ø§ÙØ®Ø§Ø±Ù."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"ÙØ¯ ÙØªØ³Ø¨Ø¨ ÙØ°Ø§ باستخداÙ
hddtemp Ø£Ø«ÙØ§Ø¡ اÙÙØ¬ÙÙ
عÙÙ"
++"Ø£Ù
Ù Ø§ÙØ¬Ùاز. Ø¥Ù ÙÙØª ÙÙ Ø´ÙØ ÙØ§ ØªÙØªÙ ÙØ°Ø§ Ø§ÙØ®Ùار."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "ÙÙ
Ù٠تعدÙÙ ÙØ°Ø§ Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØ§ØÙا٠بتÙÙÙØ° Ø§ÙØ£Ù
ر 'dpkg-reconfigure hddtemp'."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "اÙÙØ§ØµÙ Ø§ÙØ²Ù
ÙÙ ÙÙØªØÙÙ Ù
Ù ØØ±Ø§Ø±Ø© اÙÙØ±Øµ Ø§ÙØµÙب:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"ÙØ³ØªØ·Ùع hddtemp تسجÙÙ ØØ±Ø§Ø±Ø© Ø§ÙØ£Ùراص Ø§ÙØµÙبة عبر "
++"ÙØ§Ø¬ÙØ© Ø³Ø¬ÙØ§Øª اÙÙØ¸Ø§Ù
Ø§ÙØ§Ø¹ØªÙØ§Ø¯ÙØ©."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++#| msgid ""
++#| "Please enter a value in seconds corresponding to the interval between two "
++#| "checks. To disable this feature, simply enter 0."
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Ø§ÙØ±Ø¬Ø§Ø¡ إدخا٠ÙÙÙ
Ø© Ø¨Ø§ÙØ«ÙاÙÙ ØªØØ¯Ø¯ اÙÙØ§ØµÙ Ø§ÙØ²Ù
Ù٠بÙÙ ÙÙ "
++"عÙ
ÙÙØ©. ÙØªØ¹Ø·ÙÙ ÙØ°Ù اÙÙ
ÙØ²Ø©Ø أدخ٠0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#| msgid "Do you want to start the hddtemp daemon on startup?"
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "ÙÙ ØªØ±ÙØ¯ تشغÙÙ Ø¹ÙØ±Ùت hddtemp Ø¹ÙØ¯ Ø§ÙØ¥ÙÙØ§Ø¹Ø"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#| msgid ""
++#| "hddtemp can be run as a daemon, listening on port 7634 for incoming "
++#| "connections. It is used some by software such as gkrellm to get the "
++#| "temperature of the hard drives."
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"ÙÙ
Ù٠تشغÙÙ Ø¨Ø±ÙØ§Ù
ج hddtemp ÙØ¹ÙØ±ÙØªØ ÙÙØµØºÙ ÙÙÙ
ÙÙØ° 7634 ÙØ£Ù"
++"Ø§ØªØµØ§ÙØ§Øª ÙØ§Ø±Ø¯Ø©. ÙÙØ³ØªØ®Ø¯Ù
Ø§ÙØ¨Ø±ÙاÙ
ج Ù
Ù ÙØ¨Ù بعض Ø§ÙØ¨Ø±Ø§Ù
ج Ø§ÙØ£Ø®Ø±Ù Ù
ث٠gkrellm "
++"ÙÙ
Ø±Ø§ÙØ¨Ø© "
++"درجة ØØ±Ø§Ø±Ø© Ø§ÙØ£Ùراص Ø§ÙØµÙبة."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++#| msgid ""
++#| "You have the option of starting the hddtemp daemon automatically on the "
++#| "computer startup. If in doubt, it is suggested to not start it "
++#| "automatically on startup. If you later change your mind, you can run: "
++#| "'dpkg-reconfigure hddtemp'."
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"ÙØ¯ÙÙ Ø®ÙØ§Ø± تشغÙÙ Ø¹ÙØ±Ùت hddtemp Ø¢ÙÙØ§Ù Ø¹ÙØ¯ Ø¥ÙÙØ§Ø¹ "
++"اÙÙØ¸Ø§Ù
. Ø¥Ù ÙÙØª ÙÙ Ø´ÙØ ÙÙØªØ±Ø عدÙ
تشغÙÙ٠آÙÙØ§Ù Ø¹ÙØ¯ Ø§ÙØ¥ÙÙØ§Ø¹."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "اÙÙØ§Ø¬ÙØ© Ø§ÙØªÙ ÙØµØºÙ Ø¥ÙÙÙØ§:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#| msgid ""
++#| "hddtemp can listen for incoming connections on a specific interface, or "
++#| "on all interfaces."
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"ÙØ³ØªØ·Ùع Ø¨Ø±ÙØ§Ù
ج hddtemp Ø§ÙØ¥ØµØºØ§Ø¡ ÙÙØ§ØªØµØ§Ùات اÙÙØ§Ø±Ø¯Ø© عÙÙ ÙØ§Ø¬ÙØ© "
++"Ù
ØØ¯Ø¯Ø©Ø أ٠جÙ
ÙØ¹ اÙÙØ§Ø¬Ùات."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++#| msgid ""
++#| "To listen on a specific interface, enter the IP address of that "
++#| "interface (127.0.0.1 which is the default value corresponds to the lo "
++#| "interface). To listen on all interfaces, simply enter 0.0.0.0."
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"ÙÙØ¥ØµØºØ§Ø¡ Ø¥ÙÙ ÙØ§Ø¬ÙØ© Ù
ØØ¯Ø¯Ø©Ø أدخ٠عÙÙØ§Ù IP ÙØªÙ٠اÙÙØ§Ø¬ÙØ© "
++"(Ø§Ø®ØªÙØ§Ø± 127.0.0.1 سÙÙ ÙØ³ØªÙØ¨Ù Ø§ÙØ§ØªØµØ§Ùات اÙÙ
ØÙÙØ© ÙÙØ·). ÙÙØ¥ØµØºØ§Ø¡ ÙØ¬Ù
ÙØ¹ "
++"اÙÙØ§Ø¬ÙØ§ØªØ Ø£Ø¯Ø®Ù Ø§ÙÙÙÙ
Ø© 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "اÙÙ
ÙÙØ° Ø§ÙØ°Ù ÙØµØºÙ Ø¥ÙÙÙ:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++#| msgid ""
++#| "By default, hddtemp listen for incoming connections on port 7634. However "
++#| "if you don't find this port appropriate, you can enter an other one."
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"بشÙÙ Ø§ÙØªØ±Ø§Ø¶ÙØ ÙØ³ØªÙ
ع hddtemp ÙÙØ§ØªØµØ§Ùات اÙÙØ§Ø±Ø¯Ø© عÙ٠اÙÙ
ÙÙØ° 7634. ÙÙÙ
ÙÙ"
++"تغÙÙØ± ÙØ°Ø§ Ø§ÙØ±ÙÙ
Ø¥Ù٠آخر."
++
++#~ msgid "You have the option of installing hddtemp with the SUID bit set."
++#~ msgstr "ÙØ¯ÙÙ Ø®ÙØ§Ø± ØªØ«Ø¨ÙØª hddtemp بتعÙÙ٠بت SUID."
++
++#~ msgid ""
++#~ "If you make hddtemp SUID, unprivileged users of your systems will be able "
++#~ "to run it. This could, however, potentially allow hddtemp to be used "
++#~ "during a security attack on your computer. If in doubt, it is suggested "
++#~ "to install it without SUID. If you later change your mind, you can run: "
++#~ "'dpkg-reconfigure hddtemp'."
++#~ msgstr ""
++#~ "Ø¥Ù ÙÙ
ت بتعÙÙÙ hddtemp SUIDØ ÙØ³ÙØ³ØªØ·ÙØ¹ اÙÙ
ستخدÙ
ÙÙ Ø§ÙØºÙر Ù
Ø®ÙÙÙÙ ÙÙØ¸Ø§Ù
Ù "
++#~ "تشغÙÙÙ. ÙØ¯ ÙØªØ³Ø¨Ø¨ ÙØ°Ø§ عÙÙ Ø£Ù ØØ§Ù Ø¨Ø§ÙØ³Ù
Ø§Ø Ø¨Ø§Ø³ØªØ®Ø¯Ø§Ù
hddtemp Ø£Ø«ÙØ§Ø¡ اÙÙØ¬ÙÙ
"
++#~ "Ø§ÙØ£Ù
Ù٠عÙÙ ØØ§Ø³Ø¨Ù. Ø¥Ù ÙÙØª ÙÙ Ø´ÙØ Ø£ÙØªØ±Ø ØªØ«Ø¨ÙØªÙ دÙ٠تعÙÙÙ SUID. Ø¥Ù Ø¨Ø¯ÙØª رأÙÙ "
++#~ "ÙØ§ØÙØ§ÙØ ÙÙ
ÙÙ٠تشغÙÙ: 'dpkg-reconfigure hddtemp'."
++
++#~ msgid ""
++#~ "hddtemp can periodically log the temperature of the hard drive(s) via the "
++#~ "SYSLOG interface."
++#~ msgstr ""
++#~ "ÙØ³ØªØ·Ùع hddtemp تسجÙÙ ØØ±Ø§Ø±Ø© Ø§ÙØ£Ùراص Ø§ÙØµÙبة بشÙÙ Ø¯ÙØ±Ù عبر ÙØ§Ø¬ÙØ© SYSLOG."
+--- hddtemp-0.3-beta15.orig/debian/po/ja.po
++++ hddtemp-0.3-beta15/debian/po/ja.po
+@@ -0,0 +1,138 @@
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-05-29 13:50+0900\n"
++"Last-Translator: Kenshi Muto <kmuto@debian.org>\n"
++"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "/usr/sbin/hddtemp ã SUID root ã§ã¤ã³ã¹ãã¼ã«ãã¾ãã?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr "SUID ããããè¨å®ã㦠hddtemp ãã¤ã³ã¹ãã¼ã«ãããã©ããã鏿ãã¾ããããã¯ãã¹ã¼ãã¼ã¦ã¼ã¶ã ãã§ãªãä¸è¬ã¦ã¼ã¶ã§ã (ãã¼ããã©ã¤ãã®æ¸©åº¦ã®å ±åã) å®è¡ãããã¨ã許å¯ãããã¨ã«ãªãã¾ãã"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr "ããã¯æ½å¨çã«ã¯ã³ã³ãã¥ã¼ã¿ã®ã»ãã¥ãªãã£ã«å¯¾ããæ»æã«ä½¿ãããå¯è½æ§ã hddtemp ã«è¨±ããã¨ã«ãªãã¾ããçããããã°ããããããã¨çãã¦ãã ããã"
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "ãã®è¨å®ã¯ãã¨ã§ 'dpkg-reconfigure hddtemp' ãå®è¡ãããã¨ã§å¤æ´ã§ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "ãã¼ããã©ã¤ãã®æ¸©åº¦ãã§ãã¯ã®ééã¤ã³ã¿ã¼ãã«:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr "hddtemp ã§ãã¼ããã©ã¤ãã®æ¸©åº¦ãä¸è¬çãªã·ã¹ãã ãã®ã³ã°ã¤ã³ã¿ã¼ãã§ã¤ã¹ãéãã¦è¨é²ã§ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr "2ã¤ã®ãã§ãã¯ã®éã®ã¤ã³ã¿ã¼ãã«ã«ç¸å½ããç§æ°ãå
¥åãã¦ãã ããããã®æ©è½ãç¡å¹ã«ããã«ã¯ã0 ã¨å
¥åãã¦ãã ããã"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "èµ·åæã« hddtemp ãã¼ã¢ã³ãéå§ãã¾ãã?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr "hddtemp ããã°ã©ã ã¯ãå
¥åæ¥ç¶ã®ããã®ãã¼ã 7634 ããªã¹ã³ãããã¼ã¢ã³ã¨ãã¦å®è¡ã§ãã¾ãããã¼ããã©ã¤ãã®æ¸©åº¦ãå¾ãããã«ãgkrellm ã®ãããªããã¤ãã®ã½ããã¦ã§ã¢ã«ãã£ã¦ä½¿ããã¾ãã"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr "ã³ã³ãã¥ã¼ã¿ã®èµ·åæã« hddtemp ãã¼ã¢ã³ãèªåçã«éå§ãã鏿è¢ã§ããçãããã®ã§ããã°ãèµ·åæã«èªåçã«ã¯éå§ããªããã¨ãææ¡ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "ãªã¹ã³ããã¤ã³ã¿ã¼ãã§ã¤ã¹:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr "hddtemp ããã°ã©ã ã¯ãç¹å®ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ã¾ãã¯ãã¹ã¦ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ã®å
¥åæ¥ç¶ããªã¹ã³ã§ãã¾ãã"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr "ç¹å®ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ããªã¹ã³ããã«ã¯ãã¤ã³ã¿ã¼ãã§ã¤ã¹ã® IP ã¢ãã¬ã¹ãå
¥åãã¦ãã ãã (127.0.0.1 ãé¸ã¶ã¨ããã¼ã«ã«ã®æ¥ç¶ã®ã¿ã許å¯ããããã«ãªãã¾ã)ããã¹ã¦ã®ã¤ã³ã¿ã¼ãã§ã¤ã¹ããªã¹ã³ããã«ã¯ã0.0.0.0 ã¨å
¥åãã¦ãã ããã"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "ãªã¹ã³ãããã¼ã:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr "ããã©ã«ãã§ã¯ãhddtemp ã¯ãã¼ã 7634 ã§å
¥åæ¥ç¶ããªã¹ã³ãã¾ããããã¯å¥ã®ãã¼ãçªå·ã«å¤æ´ã§ãã¾ãã"
+--- hddtemp-0.3-beta15.orig/debian/po/fi.po
++++ hddtemp-0.3-beta15/debian/po/fi.po
+@@ -0,0 +1,151 @@
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-02-04 12:18+0200\n"
++"Last-Translator: Esko Arajärvi <edu@iki.fi>\n"
++"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"X-Poedit-Language: Finnish\n"
++"X-Poedit-Country: FINLAND\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Tulisiko /usr/sbin/hddtemp asentaa asetuksella SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Ohjelma hddtemp voidaan asentaa SUID-bitti asetettuna, jolloin pääkäyttäjien "
++"lisäksi myös tavalliset käyttäjät voivat ajaa ohjelman (saaden tietää "
++"kovalevyjen lämpötilat)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Tämä saattaa mahdollistaa hddtempin käytön tietoturvahyökkäyksessä konetta "
++"vastaan. Jos olet epävarma, älä valitse tätä vaihtoehtoa."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Tätä asetusta voidaan myöhemmin muuttaa ajamalla komento âdpkg-reconfigure "
++"hddtempâ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Aikaväli kovalevyjen lämpötilojen tarkistusten välillä:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Kovalevyjen lämpötilat voidaan kirjoittaa yleiseen järjestelmälokiin "
++"hddtempin toimesta."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Anna tarkistusten välinen aika sekunneissa. Syötä 0 poistaaksesi tämän "
++"ominaisuuden käytöstä."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Tulisiko hddtemp-taustaohjelma käynnistää käynnistettäessä tietokone?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Ohjelma hddtemp voidaan ajaa taustaohjelmana, joka kuuntelee yhteydenottoja "
++"portissa 7634. Jotkin ohjelmat, kuten gkrellm, käyttävät tätä hakeakseen "
++"kovalevyjen lämpötilat."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"hddtemp-taustaohjelma voidaan käynnistää automaattisesti käynnistettäessä "
++"järjestelmä. Jos olet epävarma, ohjelmaa ei suositella käynnistettäväksi "
++"automaattisesti."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Kuunneltavat liitynnät:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Ohjelma hddtemp voi kuunnella yhteydenottoja tietystä liitynnästä tai "
++"kaikista liitynnöistä."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Voit määrittää tietyn liitynnän antamalla sen IP-osoitteen (asetus 127.0.0.1 "
++"hyväksyy vain paikalliset yhteydet). Kaikki liitynnät määritetään "
++"asetuksella 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Kuunneltava portti:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Oletuksena hddtemp kuuntelee yhteydenottoja portissa 7634. Tämä portin "
++"numero voidaan vaihtaa."
+--- hddtemp-0.3-beta15.orig/debian/po/templates.pot
++++ hddtemp-0.3-beta15/debian/po/templates.pot
+@@ -0,0 +1,131 @@
++# 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: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\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"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=CHARSET\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr ""
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
+--- hddtemp-0.3-beta15.orig/debian/po/es.po
++++ hddtemp-0.3-beta15/debian/po/es.po
+@@ -0,0 +1,172 @@
++# hddtemp debconf translation to spanish
++# Copyright (C) 2003, 2006, 2008 Software in the Public Interest
++# This file is distributed under the same license as the hddtemp package.
++#
++# Changes:
++# - Initial translation
++# Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>, 2003
++# - Revisions:
++# Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>, 2006, 2008
++#
++# 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.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta15-39:\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-31 16:50+0100\n"
++"Last-Translator: Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>\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: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "¿Desea instalar «/usr/sbin/hddtemp» con el bit SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Puede instalar hddtemp con el bit SUID activado, permitiendo asà su "
++"ejecución (informando de la temperatura de los discos duros) por parte de "
++"usuarios normales y no sólo del superusuario."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Esto podrÃa permitir que se utilizara hddtemp para comprometer la seguridad "
++"del sistema durante un ataque. Si está en duda, se recomienda que no active "
++"el bit SUID."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Esta elección puede modificarse posteriormente ejecutando «dpkg-reconfigure "
++"hddtemp»."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "PerÃodo entre dos comprobaciones de temperatura:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"La temperatura del disco o discos duros puede ser registrada por hddtemp "
++"mediante la interfaz de registro genérica del sistema."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Introduzca un valor en segundos para el perÃodo entre dos comprobaciones "
++"sucesivas. Para desactivar esta caracterÃstica, introduzca 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "¿Desea iniciar el demonio de hddtemp en el arranque del sistema?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"hddtemp puede ejecutarse en modo demonio, escuchando conexiones entrantes en "
++"el puerto 7634. Algunos programas, como gkrellm, lo utilizan para obtener la "
++"temperatura de los discos duros."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Puede iniciar el demonio de hddtemp automáticamente cada vez que arranque el "
++"sistema. Si está en duda, se recomienda que no lo inicie automáticamente al "
++"arrancar."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Interfaz en la que escuchar:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"hddtemp puede escuchar conexiones entrantes en una interfaz concreta, o bien "
++"en todas."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Para escuchar en una interfaz determinada, introduzca la dirección IP de "
++"dicha interfaz (si elige 127.0.0.1 sólo se aceptarán conexiones locales). "
++"Para escuchar en todas las interfaces, introduzca 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Puerto en el que escuchar:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"De manera predeterminada hddtemp escucha en el puerto 7634, pero puede "
++"cambiarlo por otro."
+--- hddtemp-0.3-beta15.orig/debian/po/sk.po
++++ hddtemp-0.3-beta15/debian/po/sk.po
+@@ -0,0 +1,155 @@
++# Slovak translations for hddtemp package
++# Slovenské preklady pre balÃk hddtemp.
++# Copyright (C) 2011 THE hddtemp'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the hddtemp package.
++# Automatically generated, 2011.
++# Slavko <linux@slavino.sk>, 2011.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta15-48\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2011-08-30 16:30+0200\n"
++"Last-Translator: Slavko <linux@slavino.sk>\n"
++"Language-Team: Slovak <nomail>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Language: sk\n"
++"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Má byť /usr/sbin/hddtemp nainštalovaný s SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Môžete si zvoliť inštaláciu hddtemp s nastaveným bitom SUID, ktorý dovoľuje "
++"jeho spustenie (hlásenie stavu teploty pevných diskov) obyÄajným "
++"použÃvateľom a nie len super-použÃvateľovi."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Toto môže potenciálne umožniÅ¥, aby bol hddtemp použitý poÄas útoku na "
++"bezpeÄnosÅ¥ poÄÃtaÄa. Ak si nie ste istý, nevyberajte túto možnosÅ¥."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr "Môžete to zmeniÅ¥ aj neskôr, spustenÃm âdpkg-reconfigure hddtempâ."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Interval medzi kontrolami teploty pevného disku:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"Teplota pevného disko(ov) môže hddtemp zaznamenávaÅ¥ pomocou spoloÄného "
++"rozhrania systémových záznamov."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"ProsÃm, zadajte hodnotu v sekundách, ktorá zodpovedá intervalu medzi dvomi "
++"meraniami. Na zakázanie tejto funkcie zadajte 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Má byť démon hddtemp spustený pri zavedenà systému?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Program hddtemp môže byÅ¥ spustený ako démon, naÄúvajúci prÃchodzÃm spojeniam "
++"na porte 7634. Je to použÃvané niektorými programami, napr. gkrellm, na "
++"zÃskanie teploty pevných diskov."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Môžete si zvoliť automatické spúšťanie démona hddtemp pri zavedenà systému. "
++"Ak si nie ste istý, odporúÄame nespúšťaÅ¥ ho automaticky pri azvedenÃ."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Rozhranie, na ktorom naÄúvaÅ¥:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Program hddtemp môže oÄakávaÅ¥ prÃchodzie spojenia na zadanom rozhranà alebo "
++"na všetkých rozhraniach."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Aby naÄúval na zadanom rozhranÃ, zadajte IP adresu daného rozhrania (zadanÃm "
++"127.0.0.1 budú prijÃmané len lokálne spojenia). Na naÄúvanie na vÅ¡etkých "
++"rozhraniach, zadajte 0.0.0.0."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port, na ktorom naÄúvaÅ¥:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Predvolene hddtemp oÄakáva prÃchodzie spojenia na porte 7634. Môžete to "
++"zmeniÅ¥ na akékoľvek iné ÄÃslo portu."
+--- hddtemp-0.3-beta15.orig/debian/po/POTFILES.in
++++ hddtemp-0.3-beta15/debian/po/POTFILES.in
+@@ -0,0 +1 @@
++[type: gettext/rfc822deb] templates
+--- hddtemp-0.3-beta15.orig/debian/po/nl.po
++++ hddtemp-0.3-beta15/debian/po/nl.po
+@@ -0,0 +1,159 @@
++# Dutch translation of hddtemp debconf templates.
++# Copyright (C) 2006-2011 THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the hddtemp package.
++# Kurt De Bree <kdebree@telenet.be>, 2006.
++# Jeroen Schot <schot@a-eskwadraat.nl>, 2011.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 3.3-beta15-46\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2011-06-01 08:31+0200\n"
++"Last-Translator: Jeroen Schot <schot@a-eskwadraat.nl>\n"
++"Language-Team: Debian l10n Dutch <debian-l10n-dutch@lists.debian.org>\n"
++"Language: nl\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Wilt u /usr/sbin/hddtemp als SUID root installeren?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"U heeft de keuze om hddtemp te installeren met de SUID-bit ingesteld. Dit "
++"zorgt ervoor dat het kan worden uitgevoerd (en hardeschijf-temperatuur "
++"meldt) door gewone gebruikers en niet enkel de beheerder."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Hierdoor zou hddtemp mogelijk gebruikt kunnen worden bij aan aanval om de "
++"beveiling van de computer te omzeilen. Als u twijfelt, kies dan niet voor "
++"deze optie."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Deze instelling kan later worden gewijzigd door 'dpkg-reconfigure hddtemp' "
++"uit te voeren."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Interval tussen controles van de hardeschijf-temperatuur:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"De temperatuur van de harde schijven kan worden bijgehouden via de algemene "
++"systeemloginterface."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Geef een waarde (in seconden) overeenkomend met de interval tussen twee "
++"controles. '0' schakelt deze functie uit."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr ""
++"Wilt u dat hddtemp-achtergronddienst wordt gestart bij de systeemstart?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"Het hddtemp-programma kan worden uitgevoerd als achtergronddienst, "
++"luisterend naar inkomende verbindingen op poort 7634. Dit wordt gebruikt "
++"door sommige toepassingen zoals gkrellm om de temperatuur van de harde "
++"schijven op te halen."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"U heeft de optie om de hddtemp-achtergronddienst automatisch op te starten "
++"bij de systeemstart. Bij twijfel wordt aangeraden om de dienst niet "
++"automatisch op te starten."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "De interface waarop hddtemp moet luisteren:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"Het hddtemp-programma kan naar inkomende verbindingen luisteren op één "
++"specifieke interface, of op alle interfaces."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Om op één specifieke interface te luisteren, voer het IP-addres van deze "
++"interface in (als u 127.0.0.1 kiest zullen alleen lokale verbindingen worden "
++"geaccepeert). Om op alle interfaces te luisteren, voer 0.0.0.0. in."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "De poort waarop hddtemp moet luisteren:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Standaard luistert hddtemp naar inkomende verbindingen op poort 7634. Dit "
++"kan veranderd worden in een ander poortnummer."
+--- hddtemp-0.3-beta15.orig/debian/po/nb.po
++++ hddtemp-0.3-beta15/debian/po/nb.po
+@@ -0,0 +1,152 @@
++# translation of hddtemp_nb.po to Norwegian Bokmål
++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
++# This file is distributed under the same license as the PACKAGE package.
++#
++# Bjørn Steensrud <bjornst@skogkatt.homelinux.org>, 2008.
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp_nb\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2008-01-25 22:35+0100\n"
++"PO-Revision-Date: 2008-01-27 17:39+0100\n"
++"Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n"
++"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\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"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid "Should /usr/sbin/hddtemp be installed SUID root?"
++msgstr "Skal /usr/sbin/hddtemp installeres med SUID root?"
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"You have the option of installing hddtemp with the SUID bit set, allowing it "
++"to be run (reporting hard drive temperatures) by regular users and not only "
++"the superuser."
++msgstr ""
++"Du kan installere hddtemp med SUID-biten satt, slik at vanlige brukere og "
++"ikke bare superbrukeren kan kjøre det for å undersøke temperatur på "
++"harddisken(e)."
++
++#. Type: boolean
++#. Description
++#: ../templates:2001
++msgid ""
++"This could potentially allow hddtemp to be used during an attack against the "
++"computer's security. If in doubt, do not choose this option."
++msgstr ""
++"Dette kan kanskje tillate at hddtemp blir brukt i et angrep mot systemets "
++"sikkerhet. Er du i tvil, så ikke velg dette."
++
++#. Type: boolean
++#. Description
++#. Type: boolean
++#. Description
++#: ../templates:2001 ../templates:4001
++msgid ""
++"This setting can be modified later by running 'dpkg-reconfigure hddtemp'."
++msgstr ""
++"Denne innstillingen kan endres senere ved å kjøre «dpkg-reconfigure hddtemp»."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid "Interval between hard drive temperature checks:"
++msgstr "Intervall mellom sjekker på disktemperaturen:"
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"The temperature of the hard drive(s) can be logged by hddtemp via the "
++"generic system logging interface."
++msgstr ""
++"hddtemp kan logge disken(e)s temperatur via systemets eget log-grensesnitt."
++
++#. Type: string
++#. Description
++#: ../templates:3001
++msgid ""
++"Please enter a value in seconds corresponding to the interval between two "
++"checks. To disable this feature, enter 0."
++msgstr ""
++"Oppgi en verdi i sekunder som tilsvarer intervallet mellom to sjekker. Dette "
++"blir slått av hvis verdien er 0."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid "Should the hddtemp daemon be started at boot?"
++msgstr "Skal hddtemp-daemonen startes ved oppstart?"
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"The hddtemp program can be run as a daemon, listening on port 7634 for "
++"incoming connections. It is used by some software such as gkrellm to get the "
++"temperature of hard drives."
++msgstr ""
++"hddtemp-programmet kan kjøres som en daemon som lytter på port 7634. Dette "
++"brukes av noen programmer slik som gkrellm for å finne temperaturen på "
++"harddisker."
++
++#. Type: boolean
++#. Description
++#: ../templates:4001
++msgid ""
++"You have the option of starting the hddtemp daemon automatically on system "
++"boot. If in doubt, it is suggested to not start it automatically on boot."
++msgstr ""
++"Du kan velge å starte hddtemp-daemonen automatisk når systemet starter opp. "
++"Er du i tvil, foreslår vi at den ikke startes automatisk ved oppstart."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid "Interface to listen on:"
++msgstr "Grensesnitt det skal lyttes på:"
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"The hddtemp program can listen for incoming connections on a specific "
++"interface, or on all interfaces."
++msgstr ""
++"hddtemp-programmet kan lytte etter inkommende tilkoblinger på et bestemt "
++"grensesnitt, eller alle grensesnitt."
++
++#. Type: string
++#. Description
++#: ../templates:5001
++msgid ""
++"To listen on a specific interface, enter the IP address of that interface "
++"(choosing 127.0.0.1 will accept local connections only). To listen on all "
++"interfaces, enter 0.0.0.0."
++msgstr ""
++"Oppgi grensesnittets IP-adresse for å lytte på det grensesnittet. (127.0.0.1 "
++"godtar bare lokale tilkoblinger). Oppgi 0.0.0.0 for å lytte på alle "
++"grensesnitt."
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid "Port to listen on:"
++msgstr "Port å lytte på:"
++
++#. Type: string
++#. Description
++#: ../templates:6001
++msgid ""
++"By default, hddtemp listens for incoming connections on port 7634. This can "
++"be changed for another port number."
++msgstr ""
++"Standardporten der hddtemp lytter etter innkommende tilkoblinger er port "
++"7634. Dette kan endres til et annet portnummer."
+--- hddtemp-0.3-beta15.orig/doc/hddtemp.8
++++ hddtemp-0.3-beta15/doc/hddtemp.8
+@@ -58,6 +58,10 @@
+ .B \-f, \-\-file=\fIfile\fI
+ Specify the database file to use.
+ .TP
++.B \-F, \-\-foreground
++Don't fork into the background even in daemon mode. This is useful
++when running under a process supervisor.
++.TP
+ .B \-l, \-\-listen=\fIaddr\fR
+ Listen on a specific address. \fIaddr\fR is a string containing a
+ host name or a numeric host address string. The numeric host address
+@@ -80,6 +84,9 @@
+ .B \-q, \-\-quiet
+ Don't check if the drive is supported.
+ .TP
++.B \-u, \-\-unit=\fIC|F\fR
++Force output temperature either in Celsius or Fahrenheit.
++.TP
+ .B \-v, \-\-version
+ Display hddtemp version number.
+ .TP
+@@ -96,7 +103,7 @@
+ .SH "DRIVE DATABASE"
+ If you know your drive has a temperature sensor but it is being
+ reported unsupported, tell me which model and which manufacturer it
+-is, and/or just add a new entry in /usr/share/misc/hddtemp.db. Each
++is, and/or just add a new entry in /etc/hddtemp.db. Each
+ line of hddtemp.db is either a comment, a blank line or a line
+ containing:
+ .TP
+@@ -112,7 +119,7 @@
+ Feedback is welcome (see the REPORT section below).
+
+ .SH "TCP/IP DAEMON MODE"
+-Exemple of type forcing:
++Example of type forcing:
+ .PP
+ # hddtemp SATA:/dev/sda PATA:/dev/hda
+ .PP
+@@ -120,7 +127,7 @@
+ .B hddtemp
+ in daemon mode, start it like this:
+ .PP
+-# hddtemp -d /dev/hd[abcd]
++# hddtemp \-d /dev/hd[abcd]
+ .PP
+ .PP
+ and use
+@@ -165,8 +172,8 @@
+ investigation they do not. But fields 194 (which is the standard
+ field for temperature) and 231 are good candidates.
+ .PP
+-Then, you can send me a report with outputs from `hddtemp --debug ...',
+-`smartctl' or `hdparm -i ...', and/or add an entry in hddtemp.db
++Then, you can send me a report with outputs from `hddtemp \-\-debug ...',
++`smartctl' or `hdparm \-i ...', and/or add an entry in hddtemp.db
+ yourself.
+
+ .SH "BUGS"
+@@ -183,5 +190,5 @@
+ .PP
+ Emmanuel Varagnat (hddtemp@guzu.net).
+ .PP
+-This manual page was originaly written by Aurelien Jarno <aurel32@debian.org>,
++This manual page was originally written by Aurelien Jarno <aurel32@debian.org>,
+ for the Debian GNU/Linux system (but may be used by others).
+--- hddtemp-0.3-beta15.orig/po/fr.po
++++ hddtemp-0.3-beta15/po/fr.po
+@@ -7,9 +7,9 @@
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: fr\n"
+-"Report-Msgid-Bugs-To: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
+-"PO-Revision-Date: 2003-06-03 00:58GMT+1\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
++"PO-Revision-Date: 2011-08-30 16:38+0200\n"
+ "Last-Translator: Aurelien Jarno <aurelien@aurel32.net>\n"
+ "Language-Team: FRANCAIS <fr@li.org>\n"
+ "MIME-Version: 1.0\n"
+@@ -17,23 +17,7 @@
+ "Content-Transfer-Encoding: 8bit\n"
+ "X-Generator: KBabel 1.0.1\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"Regexp%s| Valeur | Description\n"
+-"------%s----------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr "%s%s| %5d | %s\n"
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -46,7 +30,7 @@
+ "Modèle: %s\n"
+ "\n"
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -60,75 +44,60 @@
+ "net).\n"
+ "ATTENTION : Voir les options --help, --debug et --drivebase.\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s : pas de capteur\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"ATTENTION : Le lecteur %s n'apparait pas dans la base de données des "
+-"lecteurs supportés\n"
+-"ATTENTION : Mais en utilisant une valeur courante, il renvoie quelque "
+-"chose.\n"
+-"ATTENTION : Notez que la température renvoyée peut être erronée.\n"
+-"ATTENTION : Voir les options --help, --debug et --drivebase.\n"
+-"ATTENTION : Et n'oubliez pas d'ajouter votre lecteur au fichier hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s : %d%sC ou %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s : le lecteur est en veille\n"
+
+-#: src/hddtemp.c:217
++#: src/hddtemp.c:242
+ #, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr ""
+ "%s: %s: lecteur connu, mais il ne possède pas de capteur de température.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "ERREUR : %s : %s : status inconnu\n"
+
+-#: src/hddtemp.c:235
++#: src/hddtemp.c:261
+ #, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "ERREUR : séparateur invalide.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "ERREUR : numéro de port invalide.\n"
+
+-#: src/hddtemp.c:329
+-#, fuzzy, c-format
++#: src/hddtemp.c:371
++#, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -138,6 +107,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -145,6 +115,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -153,11 +125,14 @@
+ "\n"
+ "Report bugs or new drives to <hddtemp@guzu.net>.\n"
+ msgstr ""
+-" Utilisation: hddtemp [OPTIONS] DISQUE1 [DISQUE2]...\n"
++" Utilisation: hddtemp [OPTIONS] [TYPE:]DISQUE1 [[TYPE:]DISQUE2]...\n"
+ "\n"
+ " hddtemp affiche la température des lecteurs passés en argument.\n"
+ " Les lecteurs doivent avoir le support S.M.A.R.T.\n"
+ "\n"
++" TYPE peut être SATA, PATA ou SCSI. Si le type est omis, hddtemp essaiera\n"
++" de le deviner.\n"
++"\n"
+ " -b --drivebase : affiche le contenu du fichier de base de donnée "
+ "qui \n"
+ " permet à hddtemp de reconnaître les lecteurs "
+@@ -172,6 +147,7 @@
+ "défaut).\n"
+ " -f --file=FILE : specifie le fichier à utiliser comme base de "
+ "données.\n"
++" -F --foreground : ne pas démoniser, rester au premier plan.\n"
+ " -l --listen=addr : écoute sur une interface spécifique (en mode démon "
+ "TCP/IP).\n"
+ " -n --numeric : affiche seulement la température.\n"
+@@ -180,6 +156,8 @@
+ "démon TCP/IP).\n"
+ " -S --syslog=s : enregistre la température dans syslog tous les s "
+ "secondes.\n"
++" -u --unit=[C|F] : affiche la température en degrés Celsius ou "
++"Fahrenheit.\n"
+ " -q --quiet : ne vérifie pas si le lecteur est supporté.\n"
+ " -v --version : affiche la version de hddtemp.\n"
+ " -w --wake-up : réveiller le lecteur si nécessaire.\n"
+@@ -188,62 +166,95 @@
+ "\n"
+ "Report bugs or new drives to <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "hddtemp version %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "ERREUR : intervalle invalide.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr "Trop peu d'arguments : vous devez spécifier au moins un lecteur.\n"
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr ""
+ "ERREUR: impossible d'utiliser les options --debug et --daemon ou --syslog en "
+ "même temps.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr ""
+ "ERREUR: %s: impossible de déterminer le type de bus (ou ce type de bus est "
+ "inconnu)\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "inconnu"
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "champ(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. non disponible"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Valeur | Description\n"
++"------%s----------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: ne peut ouvrir %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "ERREUR: erreur de syntaxe à la ligne %1$d: %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr " ERREUR: ligne exécdant %1$d caractères dans %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr "echec de 'log sense' : %s "
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "ATTENTION : Le lecteur %s n'apparait pas dans la base de données des "
++#~ "lecteurs supportés\n"
++#~ "ATTENTION : Mais en utilisant une valeur courante, il renvoie quelque "
++#~ "chose.\n"
++#~ "ATTENTION : Notez que la température renvoyée peut être erronée.\n"
++#~ "ATTENTION : Voir les options --help, --debug et --drivebase.\n"
++#~ "ATTENTION : Et n'oubliez pas d'ajouter votre lecteur au fichier hddtemp."
++#~ "db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "champ(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/ru.po
++++ hddtemp-0.3-beta15/po/ru.po
+@@ -6,8 +6,8 @@
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: hddtemp 0.3-beta3\n"
+-"Report-Msgid-Bugs-To: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: 2003-03-08 16:42+0300\n"
+ "Last-Translator: Michael Shigorin <mike@altlinux.ru>\n"
+ "Language-Team: Russian <ru@li.org>\n"
+@@ -15,23 +15,7 @@
+ "Content-Type: text/plain; charset=koi8-r\n"
+ "Content-Transfer-Encoding: 8bit\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"òÅÇÜËÓ%s| úÎÁÞ. | ïÐÉÓÁÎÉÅ \n"
+-"------%s---------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr ""
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -40,7 +24,7 @@
+ "\n"
+ msgstr ""
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -53,72 +37,59 @@
+ "÷îéíáîéå: åÓÌÉ ×Ù ÔÏÞÎÏ ÚÎÁÅÔÅ, ÞÔÏ ÄÁÔÞÉË ÅÓÔØ, ÎÁÐÉÛÉÔÅ hddtemp@guzu.net\n"
+ "÷îéíáîéå: (ÓÍ. ÏÐÃÉÉ --help, --debug É --drivebase).\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s: ÎÅÔ ÄÁÔÞÉËÁ\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"÷îéíáîéå: äÉÓË %s ÎÅ ×ËÌÀÞÅÎ × ÂÁÚÕ ÄÁÎÎÙÈ ÐÏÄÄÅÒÖÉ×ÁÅÍÙÈ ÐÒÉ×ÏÄÏ×.\n"
+-"÷îéíáîéå: îÏ Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ ÒÁÓÐÒÏÓÔÒÁÎÅÎÎÙÈ ÐÁÒÁÍÅÔÒÏ× ÏÎ ÞÔÏ-ÔÏ ×ÙÄÁÅÔ.\n"
+-"÷îéíáîéå: úÁÍÅÔØÔÅ, ÞÔÏ ÐÏËÁÚÁÎÎÁÑ ÔÅÍÐÅÒÁÔÕÒÁ ÍÏÖÅÔ ÔÁËÏ×ÏÊ ÎÅ Ñ×ÌÑÔØÓÑ.\n"
+-"÷îéíáîéå: óÍ. ÏÐÃÉÉ --help, --debug É --drivebase.\n"
+-"÷îéíáîéå: é ÎÅ ÚÁÂÕÄØÔÅ, ÞÔÏ ÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÒÉ×ÏÄ × hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s: %d%sC ÉÌÉ %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s: ÎÅÔ ÄÁÔÞÉËÁ\n"
+
+-#: src/hddtemp.c:217
+-#, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++#: src/hddtemp.c:242
++#, fuzzy, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr "%s: %s: ÉÚ×ÅÓÔÎÙÊ ÄÉÓË, ÎÅ ÓÏÄÅÒÖÁÝÉÊ ÄÁÔÞÉËÁ ÔÅÍÐÅÒÁÔÕÒÙ.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "ïûéâëá: %s: %s: ÎÅÉÚ×ÅÓÔÎÙÊ ÓÔÁÔÕÓ ×ÏÚ×ÒÁÔÁ\n"
+
+-#: src/hddtemp.c:235
++#: src/hddtemp.c:261
+ #, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "ïûéâëá: ÎÅ×ÅÒÎÙÊ ÒÁÚÄÅÌÉÔÅÌØ.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "ïýéâëá: ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÏÒÔÁ.\n"
+
+-#: src/hddtemp.c:329
++#: src/hddtemp.c:371
+ #, fuzzy, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -128,6 +99,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -135,6 +107,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -168,59 +142,90 @@
+ "\n"
+ "óÏÏÂÝÅÎÉÑ Ï ÏÛÉÂËÁÈ É ÄÁÎÎÙÅ ÄÌÑ ÄÉÓËÏ× ÏÔÐÒÁ×ÌÑÊÔÅ ÎÁ <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "÷ÅÒÓÉÑ hddtemp: %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, fuzzy, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "ïûéâëá: ÎÅ×ÅÒÎÙÊ ÒÁÚÄÅÌÉÔÅÌØ.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:557
+-#, fuzzy
++#: src/hddtemp.c:448
++#, fuzzy, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr "ïûéâëá: ÏÄÎÏ×ÒÅÍÅÎÎÏÅ ÉÓÐÏÌØÚÏ×ÁÎÉÅ --debug É --daemon ÎÅÄÏÐÕÓÔÉÍÏ.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr "ïûéâëá: %s: ÎÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÔÉÐ ÛÉÎÙ\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "ÎÅÉÚ×."
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "ÐÏÌÅ(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. ÎÅÄÏÓÔÕÐÅÎ"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"òÅÇÜËÓ%s| úÎÁÞ. | ïÐÉÓÁÎÉÅ \n"
++"------%s---------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr ""
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ïûéâëá × ÓÔÒÏËÅ %1$d ÆÁÊÌÁ %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr "ïûéâëá: ÓÔÒÏËÁ ÄÌÉÎÎÅÅ %1$d ÓÉÍ×ÏÌÏ× × %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr ""
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "÷îéíáîéå: äÉÓË %s ÎÅ ×ËÌÀÞÅÎ × ÂÁÚÕ ÄÁÎÎÙÈ ÐÏÄÄÅÒÖÉ×ÁÅÍÙÈ ÐÒÉ×ÏÄÏ×.\n"
++#~ "÷îéíáîéå: îÏ Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ ÒÁÓÐÒÏÓÔÒÁÎÅÎÎÙÈ ÐÁÒÁÍÅÔÒÏ× ÏÎ ÞÔÏ-ÔÏ "
++#~ "×ÙÄÁÅÔ.\n"
++#~ "÷îéíáîéå: úÁÍÅÔØÔÅ, ÞÔÏ ÐÏËÁÚÁÎÎÁÑ ÔÅÍÐÅÒÁÔÕÒÁ ÍÏÖÅÔ ÔÁËÏ×ÏÊ ÎÅ "
++#~ "Ñ×ÌÑÔØÓÑ.\n"
++#~ "÷îéíáîéå: óÍ. ÏÐÃÉÉ --help, --debug É --drivebase.\n"
++#~ "÷îéíáîéå: é ÎÅ ÚÁÂÕÄØÔÅ, ÞÔÏ ÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÒÉ×ÏÄ × hddtemp.db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "ÐÏÌÅ(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/sv.po
++++ hddtemp-0.3-beta15/po/sv.po
+@@ -6,8 +6,8 @@
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: hddtemp 0.3-beta14-4\n"
+-"Report-Msgid-Bugs-To: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: 2005-11-02 19:03+0100\n"
+ "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
+ "Language-Team: Swedish <sv@li.org>\n"
+@@ -17,23 +17,7 @@
+ "X-Poedit-Language: swe\n"
+ "X-Poedit-Country: swe\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"Regexp%s| Värde | Beskrivning\n"
+-"------%s---------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr "%s%s| %5d | %s\n"
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -46,7 +30,7 @@
+ "Modell: %s\n"
+ "\n"
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -60,76 +44,63 @@
+ "net).\n"
+ "VARNING: Se --help, --debug och --drivebase flaggorna.\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s: ingen sensor\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"VARNING: Disken %s verkar inte finnas i databasen över diskar som stöds\n"
+-"VARNING: Men använder man ett vanligt värde rapporterar den något.\n"
+-"VARNING: Notera att temperaturen som visas kan vara felaktig.\n"
+-"VARNING: Se --help, --debug och --drivebase flaggorna.\n"
+-"VARNING: Och glöm inte att du kan lägga till din disk till hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s: %d%sC eller %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s: disken sover\n"
+
+-#: src/hddtemp.c:217
+-#, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++#: src/hddtemp.c:242
++#, fuzzy, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr "%s: %s: känd disk men den har ingen temperatursensor.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "FEL: %s: %s: okänd returnerad status\n"
+
+-#: src/hddtemp.c:235
+-#, c-format
++#: src/hddtemp.c:261
++#, fuzzy, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+ "\n"
+ "Om ett av fältvärdena verkar matcha temperaturen, var säker på att du\n"
+ "läst manualsidan för hddtemp före du skickar en rapport till mig (sektionen\n"
+ "REPORT). Tack.\n"
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "FEL: ogiltig separator.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "FEL: ogiltigt portnummer.\n"
+
+-#: src/hddtemp.c:329
+-#, c-format
++#: src/hddtemp.c:371
++#, fuzzy, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -139,6 +110,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -146,6 +118,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -184,61 +158,91 @@
+ "\n"
+ "Rapportera buggar eller nya hårddiskar till <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "hddtemp version %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "FEL: ogiltigt intervall.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr "För få argument: du måste specificera åtminstone en disk.\n"
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr ""
+ "FEL: kan inte använda --debug och --daemon eller --syslog flaggorna "
+ "tillsammans.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr ""
+ "FEL: %s: kan inte fastställa busstyp (eller så är denna busstyp okänd)\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "okänd"
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "fält(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. är inte tillgänglig"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Värde | Beskrivning\n"
++"------%s---------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: kan inte öppna %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "FEL: syntaxfel på rad %1$d i %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr " FEL: raden överstiger %1$d tecken i %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr "igenkänning av logg misslyckades : %s"
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "VARNING: Disken %s verkar inte finnas i databasen över diskar som stöds\n"
++#~ "VARNING: Men använder man ett vanligt värde rapporterar den något.\n"
++#~ "VARNING: Notera att temperaturen som visas kan vara felaktig.\n"
++#~ "VARNING: Se --help, --debug och --drivebase flaggorna.\n"
++#~ "VARNING: Och glöm inte att du kan lägga till din disk till hddtemp.db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "fält(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/pt.po
++++ hddtemp-0.3-beta15/po/pt.po
+@@ -7,7 +7,7 @@
+ msgstr ""
+ "Project-Id-Version: hddtemp 0.3-beta14\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: 2006-03-29 23:22+0000\n"
+ "Last-Translator: Miguel Figueiredo <elmig@debianp.org>\n"
+ "Language-Team: Portuguese <traduz@debianpt.org>\n"
+@@ -15,23 +15,7 @@
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-"\n"
+-"Regexp%s| Valor | Descrição\n"
+-"------%s-------------------\n"
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr "%s%s| %5d | %s\n"
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -44,7 +28,7 @@
+ "Modelo: %s\n"
+ "\n"
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -54,79 +38,68 @@
+ msgstr ""
+ "AVISO: O disco %s não parece ter um sensor de temperatura.\n"
+ "AVISO: Isto não significa que não tem nenhum.\n"
+-"AVISO: Se tem a certeza que tem um, por favor contacte-me (hddtemp@guzu.net).\n"
++"AVISO: Se tem a certeza que tem um, por favor contacte-me (hddtemp@guzu."
++"net).\n"
+ "AVISO: Veja as opções --help, --debug e --drivebase.\n"
+
+-#: src/hddtemp.c:192
++#: src/hddtemp.c:197
+ #, c-format
+ msgid "%s: %s: no sensor\n"
+ msgstr "%s: %s: sem sensor\n"
+
+-#: src/hddtemp.c:197
+-#, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
+-msgstr ""
+-"AVISO: O disco %s não parece estar na base de dados de discos suportados\n"
+-"AVISO: Mas ao utilizar um valor usual, relata alguma coisa.\n"
+-"AVISO: Note que a temperatura mostrada pode estar errada.\n"
+-"AVISO: Veja as opções --help, --debug e --frivebase.\n"
+-"AVISO: E não se esqueça de adicionar o seu disco a hddtemp.db\n"
+-
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr "%s: %s: %d%sC ou %sF\n"
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr "%s: %s: o disco está adormecido\n"
+
+-#: src/hddtemp.c:217
+-#, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++#: src/hddtemp.c:242
++#, fuzzy, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr "%s: %s: disco conhecido, mas não tem um sensor de temperatura.\n"
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr "ERRO: %s: %s: estado devolvido desconhecido\n"
+
+-#: src/hddtemp.c:235
+-#, c-format
++#: src/hddtemp.c:261
++#, fuzzy, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+ "\n"
+-"Se um dos campos de valores parecer coincidir com a temperatura, assegure-se\n"
++"Se um dos campos de valores parecer coincidir com a temperatura, assegure-"
++"se\n"
+ "que lê a página do manual hddtemp antes de me enviar um relatório (secção\n"
+ "REPORT). Obrigado.\n"
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr "ERRO: separador inválido.\n"
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr "ERRO: número de port inválido\n"
+
+-#: src/hddtemp.c:329
+-#, c-format
++#: src/hddtemp.c:371
++#, fuzzy, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -136,6 +109,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -143,6 +117,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -156,19 +132,23 @@
+ " hddtemp mostra a temperatura dos discos indicados no argumento.\n"
+ " Os discos têm de suportar S.M.A.R.T.\n"
+ "\n"
+-" -b --drivebase : mostrar o conteúdo do ficheiro de base de dados que\n"
++" -b\t --drivebase : mostrar o conteúdo do ficheiro de base de dados que\n"
+ " permite ao hddtemp reconhecer os discos suportados.\n"
+-" -D --debug : mostrar vários campos S.M.A.R.T. e os seus valores.\n"
+-" Ãtil para encontrar um valor que pareça coincidir com "
+-" a temperatura e/ou para me enviar um relatório.\n"
++" -D\t --debug : mostrar vários campos S.M.A.R.T. e os seus valores.\n"
++" Ãtil para encontrar um valor que pareça coincidir "
++"com a temperatura e/ou para me enviar um relatório.\n"
+ " (feito para cada disco indicado).\n"
+-" -d --daemon : correr o hddtemp no modo daemon TCP/IP\n (porto %d por omissão.)\n"
++" -d --daemon : correr o hddtemp no modo daemon TCP/IP\n"
++" (porto %d por omissão.)\n"
+ " -f --file=FILE : especificar o ficheiro de base de dados a utilizar.\n"
+-" -l --listen=addr : escutar um interface especÃfico (no modo daemon TCP/IP).\n"
++" -l --listen=addr : escutar um interface especÃfico (no modo daemon TCP/"
++"IP).\n"
+ " -n --numeric : escrever apenas a temperatura.\n"
+ " -p --port=# : port para escutar (no modo daemon TCP/IP).\n"
+-" -s --separator=C : separador a utilizar entre campos (no modo daemon TCP/IP).\n"
+-" -S --syslog=s : registar a temperatura para o syslog a cada s segundos.\n"
++" -s --separator=C : separador a utilizar entre campos (no modo daemon "
++"TCP/IP).\n"
++" -S --syslog=s : registar a temperatura para o syslog a cada s "
++"segundos.\n"
+ " -q --quiet : não verificar se o disco é suportado.\n"
+ " -v --version : mostrar o número da versão do hddtemp.\n"
+ " -w --wake-up : acordar o disco se necessário.\n"
+@@ -177,58 +157,93 @@
+ "\n"
+ "Relatar bugs ou novos discos para <hddtemp@guzu.net>.\n"
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr "hddtemp versão %s\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr "ERRO: intervalo inválido.\n"
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+-msgstr "Número de argumentos insuficiente: tem de especificar pelo menos um disco.\n"
++msgstr ""
++"Número de argumentos insuficiente: tem de especificar pelo menos um disco.\n"
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+-msgstr "ERRO: não pode utilizar em conjunto as opções --debug e --daemon ou --syslog.\n"
++msgstr ""
++"ERRO: não pode utilizar em conjunto as opções --debug e --daemon ou --"
++"syslog.\n"
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+-msgstr "ERRO: %s: não é possÃvel determinar o tipo do bus (ou este tipo de bus é desconhecido)\n"
++msgstr ""
++"ERRO: %s: não é possÃvel determinar o tipo do bus (ou este tipo de bus é "
++"desconhecido)\n"
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr "desconhecido"
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
+-msgstr "campo(%d)\t = %d\n"
+-
+-#: src/ata.c:167
+ msgid "S.M.A.R.T. not available"
+ msgstr "S.M.A.R.T. não está disponÃvel"
+
+-#: src/db.c:180
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Valor | Descrição\n"
++"------%s-------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr "hddtemp: não pode abrir %1$s: %2$s\n"
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr "ERRO: erro de sintaxe na linha %1$d em %2$s\n"
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr " ERRO: a linha execedeu %1$d caracteres em %2$s.\n"
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr "detecção de log falhou: %s"
++
++#~ msgid ""
++#~ "WARNING: Drive %s doesn't appear in the database of supported drives\n"
++#~ "WARNING: But using a common value, it reports something.\n"
++#~ "WARNING: Note that the temperature shown could be wrong.\n"
++#~ "WARNING: See --help, --debug and --drivebase options.\n"
++#~ "WARNING: And don't forget you can add your drive to hddtemp.db\n"
++#~ msgstr ""
++#~ "AVISO: O disco %s não parece estar na base de dados de discos suportados\n"
++#~ "AVISO: Mas ao utilizar um valor usual, relata alguma coisa.\n"
++#~ "AVISO: Note que a temperatura mostrada pode estar errada.\n"
++#~ "AVISO: Veja as opções --help, --debug e --frivebase.\n"
++#~ "AVISO: E não se esqueça de adicionar o seu disco a hddtemp.db\n"
++
++#~ msgid "field(%d)\t = %d\n"
++#~ msgstr "campo(%d)\t = %d\n"
+--- hddtemp-0.3-beta15.orig/po/de.po
++++ hddtemp-0.3-beta15/po/de.po
+@@ -0,0 +1,250 @@
++# German translation of hddtemp.
++# Copyright (C) 2008 Free Software Foundation, Inc.
++# This file is distributed under the same license as the hddtemp package.
++# Vinzenz Vietzke <vinz@v1nz.org>, 2008.
++# ,
++#
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: hddtemp 0.3-beta15-44\n"
++"Report-Msgid-Bugs-To: hddtemp@packages.debian.org\n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
++"PO-Revision-Date: 2011-08-30 16:40+0200\n"
++"Last-Translator: Vinzenz Vietzke <vinz@v1nz.org>\n"
++"Language-Team: <debian-l10n-german@lists.debian.org>\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit"
++
++#: src/hddtemp.c:156
++#, c-format
++msgid ""
++"\n"
++"================= hddtemp %s ==================\n"
++"Model: %s\n"
++"\n"
++msgstr ""
++"\n"
++"================= hddtemp %s ==================\n"
++"Modell: %s\n"
++"\n"
++
++#: src/hddtemp.c:189
++#, c-format
++msgid ""
++"WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
++"WARNING: This doesn't mean it hasn't got one.\n"
++"WARNING: If you are sure it has one, please contact me (hddtemp@guzu."
++"net).\n"
++"WARNING: See --help, --debug and --drivebase options.\n"
++msgstr ""
++"WARNUNG: Laufwerk %s scheint keinen Temperatur-Sensor zu haben.\n"
++"WARNUNG: Das bedeutet nicht, dass es keinen besitzt.\n"
++"WARNUNG: Falls Sie sicher sind, dass es einen besitzt, kontaktieren Sie "
++"mich bitte (hddtemp@guzu.net).\n"
++"WARNUNG: Siehe Optionen --help, --debug und --drivebase.\n"
++
++#: src/hddtemp.c:197
++#, c-format
++msgid "%s: %s: no sensor\n"
++msgstr "%s: %s: kein Sensor\n"
++
++#: src/hddtemp.c:211
++#, c-format
++msgid "%s: %s: %d%sC or %sF\n"
++msgstr "%s: %s: %d%s°C oder %s°F\n"
++
++#: src/hddtemp.c:235
++#, c-format
++msgid "%s: %s: drive is sleeping\n"
++msgstr "%s: %s: Laufwerk schläft\n"
++
++#: src/hddtemp.c:242
++#, c-format
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
++msgstr ""
++"%s: %s: Laufwerk unterstützt, aber es hat keinen Temperatur-Sensor.\n"
++
++#: src/hddtemp.c:246
++#, c-format
++msgid "ERROR: %s: %s: unknown returned status\n"
++msgstr "FEHLER: %s: %s: zurückgegebener Status unbekannt\n"
++
++#: src/hddtemp.c:261
++#, c-format
++msgid ""
++"\n"
++"If one of the field value seems to match the temperature, be sure to read\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
++msgstr ""
++"\n"
++"Falls einer der Feldwerte der Temperatur zu entsprechen scheint, stellen "
++"Sie\n"
++"sicher, die hddtemp-Handbuchseite gelesen zu haben, bevor Sie einen "
++"Bericht\n"
++"senden (Abschnitt BERICHT). Danke.\n"
++
++#: src/hddtemp.c:338
++#, c-format
++msgid "ERROR: invalid separator.\n"
++msgstr "FEHLER: ungültiges Trennzeichen.\n"
++
++#: src/hddtemp.c:349
++#, c-format
++msgid "ERROR: invalid port number.\n"
++msgstr "FEHLER: ungültige Portnummer.\n"
++
++#: src/hddtemp.c:371
++#, c-format
++msgid ""
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
++"\n"
++" hddtemp displays the temperature of drives supplied in argument.\n"
++" Drives must support S.M.A.R.T.\n"
++"\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
++" -b --drivebase : display database file content that allow hddtemp "
++"to\n"
++" recognize supported drives.\n"
++" -D --debug : display various S.M.A.R.T. fields and their "
++"values.\n"
++" Useful to find a value that seems to match the\n"
++" temperature and/or to send me a report.\n"
++" (done for every drive supplied).\n"
++" -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
++"default.)\n"
++" -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
++" -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
++"mode).\n"
++" -n --numeric : print only the temperature.\n"
++" -p --port=# : port to listen to (in TCP/IP daemon mode).\n"
++" -s --separator=C : separator to use between fields (in TCP/IP daemon "
++"mode).\n"
++" -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
++" -q --quiet : do not check if the drive is supported.\n"
++" -v --version : display hddtemp version number.\n"
++" -w --wake-up : wake-up the drive if need.\n"
++" -4 : listen on IPv4 sockets only.\n"
++" -6 : listen on IPv6 sockets only.\n"
++"\n"
++"Report bugs or new drives to <hddtemp@guzu.net>.\n"
++msgstr ""
++" Verwendung: hddtemp [OPTIONEN] [TYP:]LAUFWERK1 [[TYP:]LAUFWERK2]...\n"
++"\n"
++" hddtemp zeigt die Temperatur der via Argument angegeben Laufwerke.\n"
++" Laufwerke müssen S.M.A.R.T. unterstützen.\n"
++"\n"
++" TYP kann SATA, PATA oder SCSI sein. Falls ausgelassen, wird hddtemp \n"
++" versuchen, diesen zu erraten.\n"
++"\n"
++" -b --drivebase : Datenbank-Datei-Inhalt anzeigen, der hddtemp "
++"erlaubt\n"
++" unterstützte Laufwerke zu erkennen.\n"
++" -D --debug : verschiedene S.M.A.R.T.-Felder und deren Werte "
++"anzeigen.\n"
++" Nützlich, um Werte zu finden, die der Temperatur "
++"entsprechen\n"
++" und/oder um mir einen Bericht zu senden.\n"
++" (bereits erledigt für jedes bereitgestellte "
++"Laufwerk).\n"
++" -d --daemon : hddtemp im TCP/IP-Daemon-Modus ausführen "
++"(StandardmäÃig Port %d)\n"
++" -f --file=DATEI : zu verwendende Datenbank-Datei festlegen.\n"
++" -F --foreground : nicht daemonisieren, im Vordergrund bleiben.\n"
++" -l --listen=addr : auf einer bestimmten Schnittstelle auf Anfragen "
++"warten (im TCP/IP-Daemon-Modus).\n"
++" -n --numeric : nur die Temperatur ausgeben.\n"
++" -p --port=# : Port, auf dem auf Anfragen gewartet werden soll "
++"(im TCP/IP-Daemon-Modus).\n"
++" -s --separator=C : Trennzeichen zur Verwendung zwischen Feldern (im "
++"TCP/IP-Daemon-Modus).\n"
++" -S --syslog=s : Temperatur alle s Sekunden in das syslog "
++"eintragen.\n"
++" -u --unit=[C|F] : Ausgabe der Temperatur entweder in Celsius oder "
++"Fahrenheit erzwingen.\n"
++" -q --quiet : nicht prüfen, ob das Laufwerk unterstützt wird.\n"
++" -v --version : Versionsnummer von hddtemp anzeigen.\n"
++" -w --wake-up : Laufwerk bei Bedarf aufwecken.\n"
++" -4 : nur auf IPv4-Sockets auf Anfragen warten.\n"
++" -6 : nur auf IPv6-Sockets auf Anfragen warten.\n"
++"\n"
++"Fehler oder neue Laufwerke an <hddtemp@guzu.net> melden.\n"
++
++#: src/hddtemp.c:402
++#, c-format
++msgid "hddtemp version %s\n"
++msgstr "hddtemp Version %s\n"
++
++#: src/hddtemp.c:418
++#, c-format
++msgid "ERROR: invalid interval.\n"
++msgstr "FEHLER: ungültiges Intervall.\n"
++
++#: src/hddtemp.c:438
++#, c-format
++msgid "Too few arguments: you must specify one drive, at least.\n"
++msgstr "Zu wenige Argumente: Sie müssen mindestens ein Laufwerk angeben.\n"
++
++#: src/hddtemp.c:448
++#, c-format
++msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
++msgstr ""
++"FEHLER: kann Optionen --debug und --daemon oder --syslog nicht zusammen "
++"verwenden.\n"
++
++#: src/hddtemp.c:505
++#, c-format
++msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
++msgstr ""
++"FEHLER: %s: kann Bus-Typ nicht ermitteln (oder dieser Bus-Typ ist "
++"unbekannt)\n"
++
++#: src/ata.c:66 src/scsi.c:64
++msgid "unknown"
++msgstr "unbekannt"
++
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
++#, c-format
++msgid "S.M.A.R.T. not available"
++msgstr "S.M.A.R.T. nicht verfügbar"
++
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++"\n"
++"Regexp%s| Wert | Beschreibung\n"
++"------%s---------------------\n"
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
++msgstr "%s%s| %5d | %s\n"
++
++#: src/db.c:236
++#, c-format
++msgid "hddtemp: can't open %1$s: %2$s\n"
++msgstr "hddtemp: kann %1$s nicht öffnen: %2$s\n"
++
++#: src/db.c:250
++#, c-format
++msgid "ERROR: syntax error at line %1$d in %2$s\n"
++msgstr "FEHLER: Syntaxfehler in Zeile %1$d in %2$s\n"
++
++#: src/db.c:257
++#, c-format
++msgid " ERROR: line exceed %1$d characters in %2$s.\n"
++msgstr " FEHLER: Zeile überschreitet %1$d Zeichen in %2$s.\n"
++
++#: src/scsi.c:111 src/scsi.c:129
++#, c-format
++msgid "log sense failed : %s"
++msgstr "Protokoll-Erkennung fehlgeschlagen : %s"
+--- hddtemp-0.3-beta15.orig/po/LINGUAS
++++ hddtemp-0.3-beta15/po/LINGUAS
+@@ -1,2 +1,2 @@
+ # Set of available languages.
+-fr pt ru sv
++de fr pt ru sv
+--- hddtemp-0.3-beta15.orig/po/hddtemp.pot
++++ hddtemp-0.3-beta15/po/hddtemp.pot
+@@ -1,35 +1,22 @@
+-
+-# Copyright (C) 2006 Free Software Foundation, Inc.
+-# This file is distributed under the same license as the 'hddtemp' package.
+-# Emmanuel VARAGNAT <hddtemp@guzu.net>, 2006.
++# SOME DESCRIPTIVE TITLE.
++# Copyright (C) YEAR Free Software Foundation, Inc.
++# 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: hddtemp@guzu.net\n"
+-"POT-Creation-Date: 2005-02-25 22:43+0100\n"
++"Report-Msgid-Bugs-To: \n"
++"POT-Creation-Date: 2006-06-29 16:24+0200\n"
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+-"Last-Translator: Emmanuel Varagnat <hddtemp@guzu.net>\n"
++"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+ "Language-Team: LANGUAGE <LL@li.org>\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=CHARSET\n"
+ "Content-Transfer-Encoding: 8bit\n"
+
+-#: src/hddtemp.c:112
+-#, c-format
+-msgid ""
+-"\n"
+-"Regexp%s| Value | Description\n"
+-"------%s---------------------\n"
+-msgstr ""
+-
+-#: src/hddtemp.c:118
+-#, c-format
+-msgid "%s%s| %5d | %s\n"
+-msgstr ""
+-
+-#: src/hddtemp.c:161
++#: src/hddtemp.c:156
+ #, c-format
+ msgid ""
+ "\n"
+@@ -38,7 +25,7 @@
+ "\n"
+ msgstr ""
+
+-#: src/hddtemp.c:188
++#: src/hddtemp.c:189
+ #, c-format
+ msgid ""
+ "WARNING: Drive %s doesn't seem to have a temperature sensor.\n"
+@@ -47,67 +34,59 @@
+ "WARNING: See --help, --debug and --drivebase options.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:192
+-#, c-format
+-msgid "%s: %s: no sensor\n"
+-msgstr ""
+-
+ #: src/hddtemp.c:197
+ #, c-format
+-msgid ""
+-"WARNING: Drive %s doesn't appear in the database of supported drives\n"
+-"WARNING: But using a common value, it reports something.\n"
+-"WARNING: Note that the temperature shown could be wrong.\n"
+-"WARNING: See --help, --debug and --drivebase options.\n"
+-"WARNING: And don't forget you can add your drive to hddtemp.db\n"
++msgid "%s: %s: no sensor\n"
+ msgstr ""
+
+-#: src/hddtemp.c:202
++#: src/hddtemp.c:211
+ #, c-format
+ msgid "%s: %s: %d%sC or %sF\n"
+ msgstr ""
+
+-#: src/hddtemp.c:214
++#: src/hddtemp.c:235
+ #, c-format
+ msgid "%s: %s: drive is sleeping\n"
+ msgstr ""
+
+-#: src/hddtemp.c:217
++#: src/hddtemp.c:242
+ #, c-format
+-msgid "%s: %s: known drive, but it doesn't have a temperature sensor.\n"
++msgid "%s: %s: drive supported, but it doesn't have a temperature sensor.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:220
++#: src/hddtemp.c:246
+ #, c-format
+ msgid "ERROR: %s: %s: unknown returned status\n"
+ msgstr ""
+
+-#: src/hddtemp.c:235
++#: src/hddtemp.c:261
+ #, c-format
+ msgid ""
+ "\n"
+ "If one of the field value seems to match the temperature, be sure to read\n"
+-"the hddtemp man page before sending me a report (section REPORT). Thanks.\n"
++"the hddtemp man page before sending a report (section REPORT). Thanks.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:308
++#: src/hddtemp.c:338
+ #, c-format
+ msgid "ERROR: invalid separator.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:319
++#: src/hddtemp.c:349
+ #, c-format
+ msgid "ERROR: invalid port number.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:329
++#: src/hddtemp.c:371
+ #, c-format
+ msgid ""
+-" Usage: hddtemp [OPTIONS] DISK1 [DISK2]...\n"
++" Usage: hddtemp [OPTIONS] [TYPE:]DISK1 [[TYPE:]DISK2]...\n"
+ "\n"
+ " hddtemp displays the temperature of drives supplied in argument.\n"
+ " Drives must support S.M.A.R.T.\n"
+ "\n"
++" TYPE could be SATA, PATA or SCSI. If omitted hddtemp will try to guess.\n"
++"\n"
+ " -b --drivebase : display database file content that allow hddtemp to\n"
+ " recognize supported drives.\n"
+ " -D --debug : display various S.M.A.R.T. fields and their values.\n"
+@@ -117,6 +96,7 @@
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by "
+ "default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++" -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon "
+ "mode).\n"
+ " -n --numeric : print only the temperature.\n"
+@@ -124,6 +104,8 @@
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon "
+ "mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
++" -u --unit=[C|F] : force output temperature either in Celsius or "
++"Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -133,58 +115,69 @@
+ "Report bugs or new drives to <hddtemp@guzu.net>.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:522
++#: src/hddtemp.c:402
+ #, c-format
+ msgid "hddtemp version %s\n"
+ msgstr ""
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:418
+ #, c-format
+ msgid "ERROR: invalid interval.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:547
++#: src/hddtemp.c:438
++#, c-format
+ msgid "Too few arguments: you must specify one drive, at least.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:557
++#: src/hddtemp.c:448
++#, c-format
+ msgid "ERROR: can't use --debug and --daemon or --syslog options together.\n"
+ msgstr ""
+
+-#: src/hddtemp.c:583
++#: src/hddtemp.c:505
+ #, c-format
+ msgid "ERROR: %s: can't determine bus type (or this bus type is unknown)\n"
+ msgstr ""
+
+-#: src/ata.c:66 src/scsi.c:68
++#: src/ata.c:66 src/scsi.c:64
+ msgid "unknown"
+ msgstr ""
+
+-#: src/ata.c:98
++#: src/ata.c:85 src/ata.c:104 src/scsi.c:91
+ #, c-format
+-msgid "field(%d)\t = %d\n"
++msgid "S.M.A.R.T. not available"
+ msgstr ""
+
+-#: src/ata.c:167
+-msgid "S.M.A.R.T. not available"
++#: src/db.c:115
++#, c-format
++msgid ""
++"\n"
++"Regexp%s| Value | Description\n"
++"------%s---------------------\n"
++msgstr ""
++
++#: src/db.c:121
++#, c-format
++msgid "%s%s| %5d | %s\n"
+ msgstr ""
+
+-#: src/db.c:180
++#: src/db.c:236
+ #, c-format
+ msgid "hddtemp: can't open %1$s: %2$s\n"
+ msgstr ""
+
+-#: src/db.c:194
++#: src/db.c:250
+ #, c-format
+ msgid "ERROR: syntax error at line %1$d in %2$s\n"
+ msgstr ""
+
+-#: src/db.c:201
++#: src/db.c:257
+ #, c-format
+ msgid " ERROR: line exceed %1$d characters in %2$s.\n"
+ msgstr ""
+
+-#: src/scsi.c:112 src/scsi.c:130
++#: src/scsi.c:111 src/scsi.c:129
+ #, c-format
+ msgid "log sense failed : %s"
+ msgstr ""
+--- hddtemp-0.3-beta15.orig/src/sata.c
++++ hddtemp-0.3-beta15/src/sata.c
+@@ -118,11 +118,22 @@
+ int i;
+ u16 * p;
+
+- if(dsk->db_entry && dsk->db_entry->attribute_id == 0) {
++ if(dsk->db_entry->attribute_id == 0) {
+ close(dsk->fd);
+ dsk->fd = -1;
+ return GETTEMP_NOSENSOR;
+ }
++
++ switch(ata_get_powermode(dsk->fd)) {
++ case PWM_STANDBY:
++ case PWM_SLEEPING:
++ if (!wakeup)
++ return GETTEMP_DRIVE_SLEEP;
++ case PWM_UNKNOWN:
++ case PWM_ACTIVE: /* active or idle */
++ default:
++ break;
++ }
+
+ /* get SMART values */
+ if(sata_enable_smart(dsk->fd) != 0) {
+@@ -154,24 +165,15 @@
+ }
+
+ /* temperature */
+- if(dsk->db_entry && dsk->db_entry->attribute_id > 0)
+- field = sata_search_temperature(values, dsk->db_entry->attribute_id);
+- else
+- field = sata_search_temperature(values, DEFAULT_ATTRIBUTE_ID);
++ field = sata_search_temperature(values, dsk->db_entry->attribute_id);
+
+ if(field)
+ dsk->value = *(field+3);
+
+ if(dsk->db_entry && dsk->value != -1)
+ return GETTEMP_KNOWN;
+- else {
+- if(dsk->value != -1) {
+- return GETTEMP_GUESS;
+- }
+- else {
+- return GETTEMP_UNKNOWN;
+- }
+- }
++ else
++ return GETTEMP_UNKNOWN;
+
+ /* never reached */
+ }
+--- hddtemp-0.3-beta15.orig/src/satacmds.c
++++ hddtemp-0.3-beta15/src/satacmds.c
+@@ -39,7 +39,7 @@
+ #include <sys/ioctl.h>
+ #include <scsi/sg.h>
+ #include <linux/hdreg.h>
+-#include <netinet/in.h>
++#include <byteswap.h>
+
+ // Application specific includes
+ #include "satacmds.h"
+@@ -80,8 +80,8 @@
+
+ ret = scsi_SG_IO(device, cdb, sizeof(cdb), buffer, cmd[3] * 512, sense, sizeof(sense), dxfer_direction);
+
+- /* Verify SATA magics */
+- if (sense[0] != 0x72 || sense[7] != 0x0e || sense[9] != 0x0e || sense[10] != 0x00)
++ /* Verify SATA magic */
++ if (sense[0] != 0x72)
+ return 1;
+ else
+ return ret;
+@@ -95,10 +95,10 @@
+ p = s;
+ end = &s[bytecount & ~1]; /* bytecount must be even */
+
+- /* convert from big-endian to host byte order */
++ /* convert from big-endian to string order */
+ for (p = end ; p != s;) {
+ unsigned short *pp = (unsigned short *) (p -= 2);
+- *pp = ntohs(*pp);
++ *pp = bswap_16(*pp);
+ }
+
+ /* strip leading blanks */
+--- hddtemp-0.3-beta15.orig/src/backtrace.c
++++ hddtemp-0.3-beta15/src/backtrace.c
+@@ -16,9 +16,10 @@
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
++#define _GNU_SOURCE
+ #include <features.h>
+
+-#if defined(__i386__) && defined(__GLIBC__)
++#if (defined(__i386__) || defined(__x86_64__)) && defined(__GLIBC__)
+
+ #include <execinfo.h>
+
+@@ -31,8 +32,12 @@
+ #include <bits/sigcontext.h>
+ #include <sys/param.h>
+
+-#define __USE_GNU
+ #include <ucontext.h>
++#if defined(__i386__)
++# define REG_IP REG_EIP
++#elif defined(__x86_64__)
++# define REG_IP REG_RIP
++#endif
+
+ #define MAX_BTSIZE 64
+
+@@ -42,7 +47,6 @@
+ static char **messages = NULL;
+ static size_t btsize = 0;
+ static size_t i;
+- static unsigned int old_eip, old_ebp;
+ static char *strerr = "???";
+ static FILE *fstrm;
+
+@@ -61,10 +65,10 @@
+ SIC_CASE(SEGV_MAPERR);
+ SIC_CASE(SEGV_ACCERR);
+ }
+- fprintf(fstrm, "=== SEGFAULT (%s) : invalid access to %p, in 0x%08x\n",
++ fprintf(fstrm, "=== SEGFAULT (%s) : invalid access to %p, in %p\n",
+ strerr,
+ ist->si_addr,
+- puc->uc_mcontext.gregs[REG_EIP]);
++ (void*)puc->uc_mcontext.gregs[REG_IP]);
+ break;
+ case SIGILL:
+ switch(ist->si_code) {
+@@ -77,10 +81,10 @@
+ SIC_CASE(ILL_COPROC);
+ SIC_CASE(ILL_BADSTK);
+ }
+- fprintf(fstrm, "=== ILLEGAL INSTR (%s) : invalid access to %p, in 0x%08x\n",
++ fprintf(fstrm, "=== ILLEGAL INSTR (%s) : invalid access to %p, in %p\n",
+ strerr,
+ ist->si_addr,
+- puc->uc_mcontext.gregs[REG_EIP]);
++ (void*)puc->uc_mcontext.gregs[REG_IP]);
+ break;
+ case SIGBUS:
+ switch(ist->si_code) {
+@@ -88,10 +92,10 @@
+ SIC_CASE(BUS_ADRERR);
+ SIC_CASE(BUS_OBJERR);
+ }
+- fprintf(fstrm, "=== BUS ERROR (%p) : invalid access to %p, in 0x%08x\n",
++ fprintf(fstrm, "=== BUS ERROR (%p) : invalid access to %p, in %p\n",
+ strerr,
+ ist->si_addr,
+- puc->uc_mcontext.gregs[REG_EIP]);
++ (void*)puc->uc_mcontext.gregs[REG_IP]);
+ break;
+ }
+ fflush(fstrm);
+@@ -101,7 +105,7 @@
+ /*
+ old_eip = *(unsigned int*)((void*)&n-4);
+ old_ebp = *(unsigned int*)((void*)&n-8);
+- *(unsigned int*)((void*)&n-4) = puc->uc_mcontext.gregs[REG_EIP];
++ *(unsigned int*)((void*)&n-4) = puc->uc_mcontext.gregs[REG_IP];
+ *(unsigned int*)((void*)&n-8) = puc->uc_mcontext.gregs[REG_EBP];
+
+ btsize = backtrace(btinfo, MAX_BTSIZE);
+@@ -111,14 +115,14 @@
+ */
+
+ btsize = backtrace(btinfo, MAX_BTSIZE);
+- btinfo[1] = (void*) puc->uc_mcontext.gregs[REG_EIP];
++ btinfo[1] = (void*) puc->uc_mcontext.gregs[REG_IP];
+
+ messages = backtrace_symbols(btinfo, btsize);
+
+ for(i = 1;
+ i < btsize;
+ i++)
+- fprintf(fstrm, "[%d] #%d: %s\n", getpid(), i, messages[i]);
++ fprintf(fstrm, "[%d] #%zu: %s\n", getpid(), i, messages[i]);
+ fflush(fstrm);
+ fclose(fstrm);
+
+--- hddtemp-0.3-beta15.orig/src/daemon.c
++++ hddtemp-0.3-beta15/src/daemon.c
+@@ -163,19 +163,16 @@
+
+ switch(dsk->ret) {
+ case GETTEMP_NOT_APPLICABLE:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cNA%c*",
+ dsk->drive, separator,
+ dsk->model, separator,
+- "NA", separator,
+- '*');
++ separator);
+ break;
+- case GETTEMP_GUESS:
+ case GETTEMP_UNKNOWN:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cUNK%c*",
+ dsk->drive, separator,
+- dsk->model, separator,
+- "UNK", separator,
+- '*');
++ dsk->model, separator,
++ separator);
+ break;
+ case GETTEMP_KNOWN:
+ n = snprintf(msg, sizeof(msg), "%s%c%s%c%d%c%c",
+@@ -185,26 +182,23 @@
+ get_unit(dsk));
+ break;
+ case GETTEMP_NOSENSOR:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cNOS%c*",
+ dsk->drive, separator,
+ dsk->model, separator,
+- "NOS", separator,
+- '*');
++ separator);
+ break;
+ case GETTEMP_DRIVE_SLEEP:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cSLP%c*",
+ dsk->drive, separator,
+ dsk->model, separator,
+- "SLP", separator,
+- '*');
++ separator);
+ break;
+ case GETTEMP_ERROR:
+ default:
+- n = snprintf(msg, sizeof(msg), "%s%c%s%c%s%c%c",
++ n = snprintf(msg, sizeof(msg), "%s%c%s%cERR%c*",
+ dsk->drive, separator,
+ (dsk->model) ? dsk->model : "???", separator,
+- "ERR", separator,
+- '*');
++ separator);
+ break;
+ }
+ write(cfd,&separator, 1);
+@@ -222,14 +216,11 @@
+ for(dsk = ldisks; dsk; dsk = dsk->next) {
+ switch(dsk->ret) {
+ case GETTEMP_KNOWN:
+- case GETTEMP_GUESS:
+- value_to_unit(dsk);
+-
+ syslog(LOG_INFO, "%s: %s: %d %c",
+ dsk->drive,
+ dsk->model,
+- dsk->value,
+- dsk->db_entry->unit);
++ value_to_unit(dsk),
++ get_unit(dsk));
+ break;
+ case GETTEMP_DRIVE_SLEEP:
+ syslog(LOG_WARNING, _("%s: %s: drive is sleeping"),
+@@ -270,28 +261,30 @@
+ fd_set deffds;
+ time_t next_time;
+
+- switch(fork()) {
+- case -1:
+- perror("fork");
+- exit(2);
+- break;
+- case 0:
+- break;
+- default:
+- exit(0);
+- }
+-
+- setsid();
+-
+- switch(fork()) {
+- case -1:
+- perror("fork");
+- exit(2);
+- break;
+- case 0:
+- break;
+- default:
+- exit(0);
++if (!foreground) {
++ switch(fork()) {
++ case -1:
++ perror("fork");
++ exit(2);
++ break;
++ case 0:
++ break;
++ default:
++ exit(0);
++ }
++
++ setsid();
++
++ switch(fork()) {
++ case -1:
++ perror("fork");
++ exit(2);
++ break;
++ case 0:
++ break;
++ default:
++ exit(0);
++ }
+ }
+ chdir("/");
+ umask(0);
+--- hddtemp-0.3-beta15.orig/src/hddtemp.c
++++ hddtemp-0.3-beta15/src/hddtemp.c
+@@ -75,7 +75,7 @@
+ char separator = SEPARATOR;
+
+ struct bustype * bus[BUS_TYPE_MAX];
+-int tcp_daemon, debug, quiet, numeric, wakeup, af_hint;
++int tcp_daemon, debug, quiet, numeric, wakeup, foreground, af_hint;
+
+ static enum { DEFAULT, CELSIUS, FAHRENHEIT } unit;
+
+@@ -194,23 +194,7 @@
+ if (numeric && quiet)
+ printf("0\n");
+ else
+- printf(_("%s: %s: no sensor\n"), dsk->drive, dsk->model);
+-
+- break;
+- case GETTEMP_GUESS:
+-
+- if(!quiet)
+- fprintf(stderr,
+- _("WARNING: Drive %s doesn't appear in the database of supported drives\n"
+- "WARNING: But using a common value, it reports something.\n"
+- "WARNING: Note that the temperature shown could be wrong.\n"
+- "WARNING: See --help, --debug and --drivebase options.\n"
+- "WARNING: And don't forget you can add your drive to hddtemp.db\n"), dsk->drive);
+-
+- if (! numeric)
+- printf(_("%s: %s: %d%sC or %sF\n"), dsk->drive, dsk->model, dsk->value, degree, degree);
+- else
+- printf("%d\n", value_to_unit(dsk));
++ fprintf(stderr, _("%s: %s: no sensor\n"), dsk->drive, dsk->model);
+
+ break;
+ case GETTEMP_KNOWN:
+@@ -232,14 +216,14 @@
+ if (numeric && quiet)
+ printf("0\n");
+ else
+- printf(_("%s: %s: drive is sleeping\n"), dsk->drive, dsk->model);
++ fprintf(stderr, _("%s: %s: drive is sleeping\n"), dsk->drive, dsk->model);
+
+ break;
+ case GETTEMP_NOSENSOR:
+ if (numeric && quiet)
+ printf("0\n");
+ else
+- printf(_("%s: %s: drive supported, but it doesn't have a temperature sensor.\n"), dsk->drive, dsk->model);
++ fprintf(stderr, _("%s: %s: drive supported, but it doesn't have a temperature sensor.\n"), dsk->drive, dsk->model);
+
+ break;
+ default:
+@@ -268,8 +252,9 @@
+
+ int main(int argc, char* argv[]) {
+ int i, c, lindex = 0, db_loaded = 0;
++ int ret = 0;
+ int show_db;
+- struct disk * ldisks;
++ struct disk * ldisks;
+
+ backtrace_sigsegv();
+ backtrace_sigill();
+@@ -279,7 +264,7 @@
+ bindtextdomain (PACKAGE, LOCALEDIR);
+ textdomain (PACKAGE);
+
+- show_db = debug = numeric = quiet = wakeup = af_hint = syslog_interval = 0;
++ show_db = debug = numeric = quiet = wakeup = af_hint = syslog_interval = foreground = 0;
+ unit = DEFAULT;
+ portnum = PORT_NUMBER;
+ listen_addr = NULL;
+@@ -294,6 +279,7 @@
+ {"drivebase", 0, NULL, 'b'},
+ {"debug", 0, NULL, 'D'},
+ {"file", 1, NULL, 'f'},
++ {"foreground", 0, NULL, 'F'},
+ {"listen", 1, NULL, 'l'},
+ {"version", 0, NULL, 'v'},
+ {"port", 1, NULL, 'p'},
+@@ -305,7 +291,7 @@
+ {0, 0, 0, 0}
+ };
+
+- c = getopt_long (argc, argv, "bDdf:l:hp:qs:u:vnw46S:", long_options, &lindex);
++ c = getopt_long (argc, argv, "bDdf:l:hp:qs:u:vnw46FS:", long_options, &lindex);
+ if (c == -1)
+ break;
+
+@@ -382,12 +368,13 @@
+ " (done for every drive supplied).\n"
+ " -d --daemon : run hddtemp in TCP/IP daemon mode (port %d by default.)\n"
+ " -f --file=FILE : specify database file to use.\n"
++ " -F --foreground : don't daemonize, stay in foreground.\n"
+ " -l --listen=addr : listen on a specific interface (in TCP/IP daemon mode).\n"
+ " -n --numeric : print only the temperature.\n"
+ " -p --port=# : port to listen to (in TCP/IP daemon mode).\n"
+ " -s --separator=C : separator to use between fields (in TCP/IP daemon mode).\n"
+ " -S --syslog=s : log temperature to syslog every s seconds.\n"
+- " -u --unit=[C|F] : force output temperature either in Celius or Fahrenheit.\n"
++ " -u --unit=[C|F] : force output temperature either in Celsius or Fahrenheit.\n"
+ " -q --quiet : do not check if the drive is supported.\n"
+ " -v --version : display hddtemp version number.\n"
+ " -w --wake-up : wake-up the drive if need.\n"
+@@ -418,6 +405,9 @@
+ }
+ }
+ break;
++ case 'F':
++ foreground = 1;
++ break;
+ default:
+ exit(1);
+ }
+@@ -489,6 +479,7 @@
+ if( (dsk->fd = open(dsk->drive, O_RDONLY | O_NONBLOCK)) < 0) {
+ snprintf(dsk->errormsg, MAX_ERRORMSG_SIZE, "open: %s\n", strerror(errno));
+ dsk->type = ERROR;
++ ret = 1;
+ continue;
+ }
+
+@@ -501,6 +492,7 @@
+
+ ldisks = dsk->next;
+ free(dsk);
++ ret = 1;
+ continue;
+ }
+
+@@ -514,11 +506,17 @@
+ db_loaded = 1;
+ }
+
++ dsk->db_entry = (struct harddrive_entry *)malloc(sizeof(struct harddrive_entry));
+ dbe = is_a_supported_drive(dsk->model);
+- if(dbe) {
+- dsk->db_entry = (struct harddrive_entry *)malloc(sizeof(struct harddrive_entry));
++ if(dbe)
+ memcpy(dsk->db_entry, dbe, sizeof(struct harddrive_entry));
+- }
++ else {
++ dsk->db_entry->regexp = "";
++ dsk->db_entry->description = "";
++ dsk->db_entry->attribute_id = DEFAULT_ATTRIBUTE_ID;
++ dsk->db_entry->unit = 'C';
++ dsk->db_entry->next = NULL;
++ }
+ }
+ }
+
+@@ -530,5 +528,5 @@
+ do_direct_mode(ldisks);
+ }
+
+- return 0;
++ return ret;
+ }
+--- hddtemp-0.3-beta15.orig/src/ata.c
++++ hddtemp-0.3-beta15/src/ata.c
+@@ -75,7 +75,7 @@
+ int i;
+ u16 * p;
+
+- if(dsk->db_entry && dsk->db_entry->attribute_id == 0) {
++ if(dsk->db_entry->attribute_id == 0) {
+ close(dsk->fd);
+ dsk->fd = -1;
+ return GETTEMP_NOSENSOR;
+@@ -140,24 +140,15 @@
+ */
+
+ /* temperature */
+- if(dsk->db_entry && dsk->db_entry->attribute_id > 0)
+- field = ata_search_temperature(values, dsk->db_entry->attribute_id);
+- else
+- field = ata_search_temperature(values, DEFAULT_ATTRIBUTE_ID);
++ field = ata_search_temperature(values, dsk->db_entry->attribute_id);
+
+ if(field)
+ dsk->value = *(field+3);
+
+- if(dsk->db_entry && dsk->value != -1)
++ if(dsk->value != -1)
+ return GETTEMP_KNOWN;
+- else {
+- if(dsk->value != -1) {
+- return GETTEMP_GUESS;
+- }
+- else {
+- return GETTEMP_UNKNOWN;
+- }
+- }
++ else
++ return GETTEMP_UNKNOWN;
+
+ /* never reached */
+ }
+--- hddtemp-0.3-beta15.orig/src/hddtemp.h
++++ hddtemp-0.3-beta15/src/hddtemp.h
+@@ -39,8 +39,6 @@
+ GETTEMP_ERROR, /* Error */
+ GETTEMP_NOT_APPLICABLE, /* */
+ GETTEMP_UNKNOWN, /* Drive is not in database */
+- GETTEMP_GUESS, /* Not in database, but something was guessed, user must
+- check that the temperature returned is correct */
+ GETTEMP_KNOWN, /* Drive appear in database */
+ GETTEMP_NOSENSOR, /* Drive appear in database but is known to have no sensor */
+ GETTEMP_DRIVE_SLEEP /* Drive is sleeping */
+@@ -78,7 +76,7 @@
+
+ extern struct bustype * bus[BUS_TYPE_MAX];
+ extern char errormsg[MAX_ERRORMSG_SIZE];
+-extern int tcp_daemon, debug, quiet, wakeup, af_hint;
++extern int tcp_daemon, debug, quiet, wakeup, af_hint, foreground;
+ extern char separator;
+ extern long portnum, syslog_interval;
+ extern char * listen_addr;
+--- hddtemp-0.3-beta15.orig/src/scsicmds.c
++++ hddtemp-0.3-beta15/src/scsicmds.c
+@@ -147,6 +147,7 @@
+ return 1;
+ else {
+ scsi_fixstring(buffer + 8, 24);
++ buffer[32] = 0;
+ return 0;
+ }
+ }
diff --git a/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb b/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb
new file mode 100644
index 0000000..fc38d86
--- /dev/null
+++ b/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb
@@ -0,0 +1,30 @@
+SUMMARY = "Hard disk temperature monitor daemon"
+SECTION = "console/network"
+LICENSE = "GPLv2+"
+
+SRC_URI = "http://download.savannah.nongnu.org/releases/hddtemp/hddtemp-0.3-beta15.tar.bz2 \
+ file://hddtemp-no-nls-support.patch \
+ file://hddtemp_0.3-beta15-52.diff \
+ file://hddtemp-0.3-beta15-autodetect-717479.patch \
+ file://hddtemp-db.patch;striplevel=0 \
+ file://hddtemp.db \
+ "
+
+SRC_URI[md5sum] = "8b829339e1ae9df701684ec239021bb8"
+SRC_URI[sha256sum] = "618541584054093d53be8a2d9e81c97174f30f00af91cb8700a97e442d79ef5b"
+
+LIC_FILES_CHKSUM = "file://GPL-2;md5=eb723b61539feef013de476e68b5c50a"
+
+inherit autotools gettext update-rc.d
+
+FILES_${PN} += "/usr/share/misc/hddtemp.db"
+
+do_install_append() {
+ install -d ${D}/usr/share/misc/
+ install -m 0644 ${WORKDIR}/hddtemp.db ${D}/usr/share/misc/hddtemp.db
+ install -d ${D}${sysconfdir}/init.d
+ install -m 0644 debian/init ${D}${sysconfdir}/init.d/hddtemp
+}
+
+INITSCRIPT_NAME = "hddtemp"
+INITSCRIPT_PARAMS = "start 99 2 3 4 5 . stop 20 0 1 6 ."
--
1.7.9.5
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [meta-oe][PATCH] hddtemp: add from OE-Classic and update
2012-10-20 11:25 Paul Eggleton
@ 2012-10-20 11:41 ` Otavio Salvador
0 siblings, 0 replies; 9+ messages in thread
From: Otavio Salvador @ 2012-10-20 11:41 UTC (permalink / raw)
To: openembedded-devel
On Sat, Oct 20, 2012 at 8:25 AM, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> hddtemp is unmaintained upstream so we have to do a bit of patching. All
> patches sourced from Debian/Fedora, except hddtemp-no-nls-support.patch
> which came from OE-Classic.
>
> Other improvements:
> * Install initscript
> * Make LICENSE more accurate
> * Add LIC_FILES_CHKSUM
> * inherit gettext to avoid error during configure
>
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2012-10-20 15:21 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-18 17:40 [meta-oe][PATCH] hddtemp: add from OE-Classic and update Paul Eggleton
-- strict thread matches above, loose matches on Subject: below --
2012-10-19 16:46 Paul Eggleton
2012-10-20 11:54 ` Otavio Salvador
2012-10-20 12:22 ` Paul Eggleton
2012-10-20 13:13 ` Otavio Salvador
2012-10-20 13:31 ` Paul Eggleton
2012-10-20 15:07 ` Otavio Salvador
2012-10-20 11:25 Paul Eggleton
2012-10-20 11:41 ` Otavio Salvador
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox