Merge lp:~jfi/ubuntu/quantal/psensor/new-upstream-0-6-2-19 into lp:ubuntu/quantal/psensor

Proposed by Jean-Philippe Orsini
Status: Merged
Merged at revision: 15
Proposed branch: lp:~jfi/ubuntu/quantal/psensor/new-upstream-0-6-2-19
Merge into: lp:ubuntu/quantal/psensor
Diff against target: 3456 lines (+664/-1032)
36 files modified
.pc/LP1021900.patch/src/lib/psensor.c (+0/-461)
.pc/applied-patches (+0/-1)
Makefile.in (+64/-42)
NEWS (+16/-1)
aclocal.m4 (+44/-24)
configure (+19/-16)
configure.ac (+1/-1)
debian/changelog (+12/-0)
debian/patches/LP1021900.patch (+0/-26)
debian/patches/series (+0/-1)
icons/hicolor/14x14/Makefile.in (+19/-10)
icons/hicolor/16x16/Makefile.in (+19/-10)
icons/hicolor/22x22/Makefile.in (+19/-10)
icons/hicolor/24x24/Makefile.in (+19/-10)
icons/hicolor/32x32/Makefile.in (+19/-10)
icons/hicolor/48x48/Makefile.in (+19/-10)
icons/hicolor/64x64/Makefile.in (+19/-10)
icons/hicolor/scalable/Makefile.in (+19/-10)
icons/ubuntu-mono-dark/apps/22/Makefile.in (+19/-10)
icons/ubuntu-mono-dark/status/22/Makefile.in (+19/-10)
icons/ubuntu-mono-light/status/22/Makefile.in (+19/-10)
po/LINGUAS (+9/-1)
po/fr.po (+78/-143)
po/psensor.pot (+1/-5)
po/tr.po (+5/-24)
po/zh_CN.po (+91/-107)
src/Makefile.in (+20/-11)
src/glade/Makefile.in (+19/-10)
src/lib/Makefile.in (+13/-8)
src/lib/psensor.c (+2/-2)
src/main.c (+8/-8)
src/psensor.1 (+1/-1)
src/server/Makefile.in (+20/-11)
src/server/psensor-server.1 (+1/-1)
tests/Makefile.in (+12/-7)
www/Makefile.in (+19/-10)
To merge this branch: bzr merge lp:~jfi/ubuntu/quantal/psensor/new-upstream-0-6-2-19
Reviewer Review Type Date Requested Status
Iain Lane Approve
Ubuntu branches Pending
Review via email: mp+122221@code.launchpad.net

Commit message

* New upstream release
   + fixed hide window on startup for gnome-shell. (Closes: #676361)
   + fixed size of the icon hicolor/48x48/psensor_hot.png. (LP: #1029065)
* Removed LP1021900.patch: fixed upstream since 0.6.2.18.
* Remaining changes:
  + Modifed build-dep to add NVidia and Application Indicator support
  + Only add an nvidia-settings build-dep on i386 and amd6

Description of the change

I am submitting this merge following discussion from a previous request: https://code.launchpad.net/~jfi/ubuntu/quantal/psensor/fix-LP1029065/+merge/117028

This branch is upgrading to Psensor version 0.6.2.19.

The mainstream diff between 0.6.2.17 and 0.6.2.19:
 - fix https://bugs.launchpad.net/ubuntu/+source/psensor/+bug/1029065
 - fix https://bugs.launchpad.net/ubuntu/+source/psensor/+bug/1021900
 - fix http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676361
 - added and merged (from LP) several translations files (only .po, no code modification)

LP1021900.patch is removed because it has been fixed upstream since 0.6.2.18.

To post a comment you must log in.
16. By Jean-Philippe Orsini

fixed bullet indentation

Revision history for this message
Iain Lane (laney) wrote :

Looks good to me, thanks — uploading! I just changed the version number to ...-0ubuntu1 as this isn't a merge.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== removed directory '.pc/LP1021900.patch'
=== removed directory '.pc/LP1021900.patch/src'
=== removed directory '.pc/LP1021900.patch/src/lib'
=== removed file '.pc/LP1021900.patch/src/lib/psensor.c'
--- .pc/LP1021900.patch/src/lib/psensor.c 2012-07-07 00:47:44 +0000
+++ .pc/LP1021900.patch/src/lib/psensor.c 1970-01-01 00:00:00 +0000
@@ -1,461 +0,0 @@
1/*
2 * Copyright (C) 2010-2012 jeanfi@gmail.com
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
18 */
19#include <stdlib.h>
20#include <string.h>
21
22#include <locale.h>
23#include <libintl.h>
24#define _(str) gettext(str)
25
26#include "hdd.h"
27#include "psensor.h"
28#include "lmsensor.h"
29
30#ifdef HAVE_GTOP
31#include "cpu.h"
32#endif
33
34
35struct psensor *psensor_create(char *id, char *name,
36 unsigned int type, int values_max_length)
37{
38 struct psensor *psensor
39 = (struct psensor *)malloc(sizeof(struct psensor));
40
41 psensor->id = id;
42 psensor->name = name;
43 psensor->enabled = 1;
44 psensor->min = UNKNOWN_DBL_VALUE;
45 psensor->max = UNKNOWN_DBL_VALUE;
46
47 psensor->type = type;
48
49 psensor->values_max_length = values_max_length;
50 psensor->measures = measures_dbl_create(values_max_length);
51
52 psensor->alarm_limit = 0;
53
54 psensor->cb_alarm_raised = NULL;
55 psensor->cb_alarm_raised_data = NULL;
56 psensor->alarm_raised = 0;
57
58 psensor->alarm_enabled = 0;
59
60 psensor->url = NULL;
61
62 psensor->color = NULL;
63
64 return psensor;
65}
66
67void psensor_values_resize(struct psensor *s, int new_size)
68{
69 struct measure *new_ms, *cur_ms;
70 int cur_size;
71
72 cur_size = s->values_max_length;
73 cur_ms = s->measures;
74 new_ms = measures_dbl_create(new_size);
75
76 if (cur_ms) {
77 int i;
78 for (i = 0; i < new_size - 1 && i < cur_size - 1; i++)
79 measure_copy(&cur_ms[cur_size - i - 1],
80 &new_ms[new_size - i - 1]);
81
82 measures_free(s->measures);
83 }
84
85 s->values_max_length = new_size;
86 s->measures = new_ms;
87}
88
89void psensor_free(struct psensor *sensor)
90{
91 if (sensor) {
92 free(sensor->name);
93 free(sensor->id);
94
95 if (sensor->color)
96 free(sensor->color);
97
98 measures_free(sensor->measures);
99
100 free(sensor->url);
101
102 free(sensor);
103 }
104}
105
106void psensor_list_free(struct psensor **sensors)
107{
108 struct psensor **sensor_cur;
109
110 if (sensors) {
111 sensor_cur = sensors;
112
113 while (*sensor_cur) {
114 psensor_free(*sensor_cur);
115
116 sensor_cur++;
117 }
118
119 free(sensors);
120
121 sensors = NULL;
122 }
123}
124
125int psensor_list_size(struct psensor **sensors)
126{
127 int size;
128 struct psensor **sensor_cur;
129
130 if (!sensors)
131 return 0;
132
133 size = 0;
134 sensor_cur = sensors;
135
136 while (*sensor_cur) {
137 size++;
138 sensor_cur++;
139 }
140 return size;
141}
142
143int psensor_list_contains_type(struct psensor **sensors, unsigned int type)
144{
145 struct psensor **s;
146
147 if (!sensors)
148 return 0;
149
150 s = sensors;
151 while (*s) {
152 if ((*s)->type == type)
153 return 1;
154 s++;
155 }
156
157 return 0;
158}
159
160struct psensor **psensor_list_add(struct psensor **sensors,
161 struct psensor *sensor)
162{
163 int size = psensor_list_size(sensors);
164
165 struct psensor **result
166 = malloc((size + 1 + 1) * sizeof(struct psensor *));
167
168 if (sensors)
169 memcpy(result, sensors, size * sizeof(struct psensor *));
170
171 result[size] = sensor;
172 result[size + 1] = NULL;
173
174 return result;
175}
176
177struct psensor *psensor_list_get_by_id(struct psensor **sensors, const char *id)
178{
179 struct psensor **sensors_cur = sensors;
180
181 while (*sensors_cur) {
182 if (!strcmp((*sensors_cur)->id, id))
183 return *sensors_cur;
184
185 sensors_cur++;
186 }
187
188 return NULL;
189}
190
191int is_temp_type(unsigned int type)
192{
193 return type & SENSOR_TYPE_TEMP;
194}
195
196int is_fan_type(unsigned int type)
197{
198 return type & SENSOR_TYPE_FAN;
199}
200
201char *psensor_value_to_string(unsigned int type, double value)
202{
203 /* should not be possible to exceed 20 characters with temp or
204 rpm values the .x part is never displayed */
205 char *str = malloc(20);
206
207 char *unit;
208
209 if (is_temp_type(type))
210 unit = "C";
211 else if (type & SENSOR_TYPE_CPU_USAGE)
212 unit = "%";
213 else
214 unit = "";
215
216 sprintf(str, "%.0f%s", value, unit);
217
218 return str;
219}
220
221void psensor_set_current_value(struct psensor *sensor, double value)
222{
223 struct timeval tv;
224
225 if (gettimeofday(&tv, NULL) != 0)
226 timerclear(&tv);
227
228 psensor_set_current_measure(sensor, value, tv);
229}
230
231void
232psensor_set_current_measure(struct psensor *s,
233 double v, struct timeval tv)
234{
235 memmove(s->measures,
236 &s->measures[1],
237 (s->values_max_length - 1) * sizeof(struct measure));
238
239 s->measures[s->values_max_length - 1].value.d_num = v;
240 s->measures[s->values_max_length - 1].time = tv;
241
242 if (s->min == UNKNOWN_DBL_VALUE || v < s->min)
243 s->min = v;
244
245 if (s->max == UNKNOWN_DBL_VALUE || v > s->max)
246 s->max = v;
247
248 if (s->alarm_limit && s->alarm_enabled) {
249 if (v > s->alarm_limit) {
250 if (!s->alarm_raised && s->cb_alarm_raised)
251 s->cb_alarm_raised(s,
252 s->cb_alarm_raised_data);
253
254 s->alarm_raised = 1;
255 } else {
256 s->alarm_raised = 0;
257 }
258 }
259}
260
261double psensor_get_current_value(struct psensor *sensor)
262{
263 return sensor->measures[sensor->values_max_length - 1].value.d_num;
264}
265
266struct measure *psensor_get_current_measure(struct psensor *sensor)
267{
268 return &sensor->measures[sensor->values_max_length - 1];
269}
270
271/*
272 Returns the minimal value of a given 'type' (SENSOR_TYPE_TEMP or
273 SENSOR_TYPE_FAN)
274 */
275double get_min_value(struct psensor **sensors, int type)
276{
277 double m = UNKNOWN_DBL_VALUE;
278 struct psensor **s = sensors;
279
280 while (*s) {
281 struct psensor *sensor = *s;
282
283 if (sensor->enabled && (sensor->type & type)) {
284 int i;
285 double t;
286
287 for (i = 0; i < sensor->values_max_length; i++) {
288 t = sensor->measures[i].value.d_num;
289
290 if (t == UNKNOWN_DBL_VALUE)
291 continue;
292
293 if (m == UNKNOWN_DBL_VALUE || t < m)
294 m = t;
295 }
296 }
297 s++;
298 }
299
300 return m;
301}
302
303/*
304 Returns the maximal value of a given 'type' (SENSOR_TYPE_TEMP or
305 SENSOR_TYPE_FAN)
306 */
307double get_max_value(struct psensor **sensors, int type)
308{
309 double m = UNKNOWN_DBL_VALUE;
310 struct psensor **s = sensors;
311
312 while (*s) {
313 struct psensor *sensor = *s;
314
315 if (sensor->enabled && (sensor->type & type)) {
316 int i;
317 double t;
318 for (i = 0; i < sensor->values_max_length; i++) {
319 t = sensor->measures[i].value.d_num;
320
321 if (t == UNKNOWN_DBL_VALUE)
322 continue;
323
324 if (m == UNKNOWN_DBL_VALUE || t > m)
325 m = t;
326 }
327 }
328 s++;
329 }
330
331 return m;
332}
333
334double
335psensor_get_max_current_value(struct psensor **sensors, unsigned int type)
336{
337 double m = UNKNOWN_DBL_VALUE;
338 struct psensor **s_cur = sensors;
339
340 while (*s_cur) {
341 struct psensor *s = *s_cur;
342
343 if (s->enabled && (s->type & type)) {
344 double v = psensor_get_current_value(s);
345
346 if (m == UNKNOWN_DBL_VALUE || v > m)
347 m = v;
348 }
349
350 s_cur++;
351 }
352
353 return m;
354}
355
356double get_min_temp(struct psensor **sensors)
357{
358 return get_min_value(sensors, SENSOR_TYPE_TEMP);
359}
360
361double get_min_rpm(struct psensor **sensors)
362{
363 return get_min_value(sensors, SENSOR_TYPE_FAN);
364}
365
366double get_max_rpm(struct psensor **sensors)
367{
368 return get_max_value(sensors, SENSOR_TYPE_FAN);
369}
370
371double get_max_temp(struct psensor **sensors)
372{
373 return get_max_value(sensors, SENSOR_TYPE_TEMP);
374}
375
376struct psensor **get_all_sensors(int values_max_length)
377{
378 struct psensor **psensors = NULL;
379 struct psensor **tmp_psensors;
380
381 psensors = lmsensor_psensor_list_add(NULL, values_max_length);
382
383 tmp_psensors = hdd_psensor_list_add(psensors, values_max_length);
384 if (tmp_psensors != psensors) {
385 free(psensors);
386 psensors = tmp_psensors;
387 }
388
389 if (!psensors) { /* there is no detected sensors */
390 psensors = malloc(sizeof(struct psensor *));
391 *psensors = NULL;
392 }
393
394 return psensors;
395}
396
397const char *psensor_type_to_str(unsigned int type)
398{
399 if ((type & SENSOR_TYPE_NVIDIA_TEMP) == SENSOR_TYPE_NVIDIA_TEMP)
400 return "NVidia GPU Temperature";
401
402 if ((type & SENSOR_TYPE_AMD_TEMP) == SENSOR_TYPE_AMD_TEMP)
403 return "AMD GPU Temperature";
404
405 if ((type & SENSOR_TYPE_AMD_FAN) == SENSOR_TYPE_AMD_FAN)
406 return "AMD GPU Fan Speed";
407
408 if ((type & SENSOR_TYPE_HDD_TEMP) == SENSOR_TYPE_HDD_TEMP)
409 return "HDD Temperature";
410
411 if (type & SENSOR_TYPE_CPU_USAGE)
412 return "CPU Usage";
413
414 if (type & SENSOR_TYPE_TEMP)
415 return "Temperature";
416
417 if (type & SENSOR_TYPE_FAN)
418 return "Fan";
419
420 if (type & SENSOR_TYPE_REMOTE)
421 return "Remote";
422
423 return "N/A"; /* should not be possible */
424}
425
426
427const char *psensor_type_to_unit_str(unsigned int type)
428{
429 if (type & SENSOR_TYPE_TEMP)
430 return _("C");
431
432 if (type & SENSOR_TYPE_FAN)
433 return _("RPM");
434
435 if (type & SENSOR_TYPE_CPU_USAGE)
436 return _("%");
437
438 return "N/A";
439}
440
441void psensor_list_update_measures(struct psensor **sensors)
442{
443 lmsensor_psensor_list_update(sensors);
444
445#ifdef HAVE_GTOP
446 cpu_psensor_list_update(sensors);
447#endif
448
449 if (psensor_list_contains_type(sensors, SENSOR_TYPE_HDD_TEMP))
450 hdd_psensor_list_update(sensors);
451}
452
453void psensor_init()
454{
455 lmsensor_init();
456}
457
458void psensor_cleanup()
459{
460 lmsensor_cleanup();
461}
4620
=== removed file '.pc/applied-patches'
--- .pc/applied-patches 2012-07-13 02:22:18 +0000
+++ .pc/applied-patches 1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
1LP1021900.patch
20
=== modified file 'Makefile.in'
--- Makefile.in 2011-11-25 02:56:22 +0000
+++ Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -80,6 +80,12 @@
80am__base_list = \80am__base_list = \
81 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \81 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
82 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'82 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
83am__uninstall_files_from_dir = { \
84 test -z "$$files" \
85 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
86 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
87 $(am__cd) "$$dir" && rm -f $$files; }; \
88 }
83am__installdirs = "$(DESTDIR)$(autostartdir)" \89am__installdirs = "$(DESTDIR)$(autostartdir)" \
84 "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(docdir)"90 "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(docdir)"
85DATA = $(autostart_DATA) $(desktop_DATA) $(dist_doc_DATA)91DATA = $(autostart_DATA) $(desktop_DATA) $(dist_doc_DATA)
@@ -95,9 +101,11 @@
95distdir = $(PACKAGE)-$(VERSION)101distdir = $(PACKAGE)-$(VERSION)
96top_distdir = $(distdir)102top_distdir = $(distdir)
97am__remove_distdir = \103am__remove_distdir = \
98 { test ! -d "$(distdir)" \104 if test -d "$(distdir)"; then \
99 || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \105 find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
100 && rm -fr "$(distdir)"; }; }106 && rm -rf "$(distdir)" \
107 || { sleep 5 && rm -rf "$(distdir)"; }; \
108 else :; fi
101am__relativize = \109am__relativize = \
102 dir0=`pwd`; \110 dir0=`pwd`; \
103 sed_first='s,^\([^/]*\)/.*$$,\1,'; \111 sed_first='s,^\([^/]*\)/.*$$,\1,'; \
@@ -126,6 +134,8 @@
126DIST_ARCHIVES = $(distdir).tar.gz134DIST_ARCHIVES = $(distdir).tar.gz
127GZIP_ENV = --best135GZIP_ENV = --best
128distuninstallcheck_listfiles = find . -type f -print136distuninstallcheck_listfiles = find . -type f -print
137am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
138 | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
129distcleancheck_listfiles = find . -type f -print139distcleancheck_listfiles = find . -type f -print
130ACLOCAL = @ACLOCAL@140ACLOCAL = @ACLOCAL@
131AMTAR = @AMTAR@141AMTAR = @AMTAR@
@@ -297,7 +307,7 @@
297 $(MAKE) $(AM_MAKEFLAGS) all-recursive307 $(MAKE) $(AM_MAKEFLAGS) all-recursive
298308
299.SUFFIXES:309.SUFFIXES:
300am--refresh:310am--refresh: Makefile
301 @:311 @:
302$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)312$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
303 @for dep in $?; do \313 @for dep in $?; do \
@@ -333,10 +343,8 @@
333$(am__aclocal_m4_deps):343$(am__aclocal_m4_deps):
334344
335config.h: stamp-h1345config.h: stamp-h1
336 @if test ! -f $@; then \346 @if test ! -f $@; then rm -f stamp-h1; else :; fi
337 rm -f stamp-h1; \347 @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
338 $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
339 else :; fi
340348
341stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status349stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
342 @rm -f stamp-h1350 @rm -f stamp-h1
@@ -365,9 +373,7 @@
365 @$(NORMAL_UNINSTALL)373 @$(NORMAL_UNINSTALL)
366 @list='$(autostart_DATA)'; test -n "$(autostartdir)" || list=; \374 @list='$(autostart_DATA)'; test -n "$(autostartdir)" || list=; \
367 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \375 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
368 test -n "$$files" || exit 0; \376 dir='$(DESTDIR)$(autostartdir)'; $(am__uninstall_files_from_dir)
369 echo " ( cd '$(DESTDIR)$(autostartdir)' && rm -f" $$files ")"; \
370 cd "$(DESTDIR)$(autostartdir)" && rm -f $$files
371install-desktopDATA: $(desktop_DATA)377install-desktopDATA: $(desktop_DATA)
372 @$(NORMAL_INSTALL)378 @$(NORMAL_INSTALL)
373 test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)"379 test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)"
@@ -385,9 +391,7 @@
385 @$(NORMAL_UNINSTALL)391 @$(NORMAL_UNINSTALL)
386 @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \392 @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
387 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \393 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
388 test -n "$$files" || exit 0; \394 dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir)
389 echo " ( cd '$(DESTDIR)$(desktopdir)' && rm -f" $$files ")"; \
390 cd "$(DESTDIR)$(desktopdir)" && rm -f $$files
391install-dist_docDATA: $(dist_doc_DATA)395install-dist_docDATA: $(dist_doc_DATA)
392 @$(NORMAL_INSTALL)396 @$(NORMAL_INSTALL)
393 test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)"397 test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)"
@@ -405,9 +409,7 @@
405 @$(NORMAL_UNINSTALL)409 @$(NORMAL_UNINSTALL)
406 @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \410 @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \
407 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \411 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
408 test -n "$$files" || exit 0; \412 dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
409 echo " ( cd '$(DESTDIR)$(docdir)' && rm -f" $$files ")"; \
410 cd "$(DESTDIR)$(docdir)" && rm -f $$files
411413
412# This directory's subdirectories are mostly independent; you can cd414# This directory's subdirectories are mostly independent; you can cd
413# into them and run `make' without going through this Makefile.415# into them and run `make' without going through this Makefile.
@@ -616,7 +618,11 @@
616 $(am__remove_distdir)618 $(am__remove_distdir)
617619
618dist-bzip2: distdir620dist-bzip2: distdir
619 tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2621 tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
622 $(am__remove_distdir)
623
624dist-lzip: distdir
625 tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
620 $(am__remove_distdir)626 $(am__remove_distdir)
621627
622dist-lzma: distdir628dist-lzma: distdir
@@ -624,7 +630,7 @@
624 $(am__remove_distdir)630 $(am__remove_distdir)
625631
626dist-xz: distdir632dist-xz: distdir
627 tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz633 tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
628 $(am__remove_distdir)634 $(am__remove_distdir)
629635
630dist-tarZ: distdir636dist-tarZ: distdir
@@ -655,6 +661,8 @@
655 bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\661 bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
656 *.tar.lzma*) \662 *.tar.lzma*) \
657 lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\663 lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
664 *.tar.lz*) \
665 lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
658 *.tar.xz*) \666 *.tar.xz*) \
659 xz -dc $(distdir).tar.xz | $(am__untar) ;;\667 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
660 *.tar.Z*) \668 *.tar.Z*) \
@@ -674,6 +682,7 @@
674 && am__cwd=`pwd` \682 && am__cwd=`pwd` \
675 && $(am__cd) $(distdir)/_build \683 && $(am__cd) $(distdir)/_build \
676 && ../configure --srcdir=.. --prefix="$$dc_install_base" \684 && ../configure --srcdir=.. --prefix="$$dc_install_base" \
685 $(AM_DISTCHECK_CONFIGURE_FLAGS) \
677 $(DISTCHECK_CONFIGURE_FLAGS) \686 $(DISTCHECK_CONFIGURE_FLAGS) \
678 && $(MAKE) $(AM_MAKEFLAGS) \687 && $(MAKE) $(AM_MAKEFLAGS) \
679 && $(MAKE) $(AM_MAKEFLAGS) dvi \688 && $(MAKE) $(AM_MAKEFLAGS) dvi \
@@ -702,8 +711,16 @@
702 list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \711 list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
703 sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'712 sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
704distuninstallcheck:713distuninstallcheck:
705 @$(am__cd) '$(distuninstallcheck_dir)' \714 @test -n '$(distuninstallcheck_dir)' || { \
706 && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \715 echo 'ERROR: trying to run $@ with an empty' \
716 '$$(distuninstallcheck_dir)' >&2; \
717 exit 1; \
718 }; \
719 $(am__cd) '$(distuninstallcheck_dir)' || { \
720 echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
721 exit 1; \
722 }; \
723 test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
707 || { echo "ERROR: files left after uninstall:" ; \724 || { echo "ERROR: files left after uninstall:" ; \
708 if test -n "$(DESTDIR)"; then \725 if test -n "$(DESTDIR)"; then \
709 echo " (check DESTDIR support)"; \726 echo " (check DESTDIR support)"; \
@@ -737,10 +754,15 @@
737754
738installcheck: installcheck-recursive755installcheck: installcheck-recursive
739install-strip:756install-strip:
740 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \757 if test -z '$(STRIP)'; then \
741 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \758 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
742 `test -z '$(STRIP)' || \759 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
743 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install760 install; \
761 else \
762 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
763 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
764 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
765 fi
744mostlyclean-generic:766mostlyclean-generic:
745767
746clean-generic:768clean-generic:
@@ -829,20 +851,20 @@
829.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \851.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
830 all all-am am--refresh check check-am clean clean-generic \852 all all-am am--refresh check check-am clean clean-generic \
831 ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \853 ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
832 dist-lzma dist-shar dist-tarZ dist-xz dist-zip distcheck \854 dist-lzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
833 distclean distclean-generic distclean-hdr distclean-tags \855 distcheck distclean distclean-generic distclean-hdr \
834 distcleancheck distdir distuninstallcheck dvi dvi-am html \856 distclean-tags distcleancheck distdir distuninstallcheck dvi \
835 html-am info info-am install install-am install-autostartDATA \857 dvi-am html html-am info info-am install install-am \
836 install-data install-data-am install-desktopDATA \858 install-autostartDATA install-data install-data-am \
837 install-dist_docDATA install-dvi install-dvi-am install-exec \859 install-desktopDATA install-dist_docDATA install-dvi \
838 install-exec-am install-html install-html-am install-info \860 install-dvi-am install-exec install-exec-am install-html \
839 install-info-am install-man install-pdf install-pdf-am \861 install-html-am install-info install-info-am install-man \
840 install-ps install-ps-am install-strip installcheck \862 install-pdf install-pdf-am install-ps install-ps-am \
841 installcheck-am installdirs installdirs-am maintainer-clean \863 install-strip installcheck installcheck-am installdirs \
842 maintainer-clean-generic mostlyclean mostlyclean-generic pdf \864 installdirs-am maintainer-clean maintainer-clean-generic \
843 pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \865 mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
844 uninstall-autostartDATA uninstall-desktopDATA \866 tags-recursive uninstall uninstall-am uninstall-autostartDATA \
845 uninstall-dist_docDATA867 uninstall-desktopDATA uninstall-dist_docDATA
846868
847869
848# Tell versions [3.59,3.63) of GNU make to not export all variables.870# Tell versions [3.59,3.63) of GNU make to not export all variables.
849871
=== modified file 'NEWS'
--- NEWS 2012-04-09 12:15:54 +0000
+++ NEWS 2012-08-31 10:30:30 +0000
@@ -1,6 +1,21 @@
1* v0.6.2.19
2
3** psensor: fixed size of the icon hicolor/48x48/psensor_hot.png.
4 (LP: #1029065)
5
6* v0.6.2.18
7
8** added degree sign for celcius (Closes LP: #1021900).
9** added russian, brazilian, hungarian, serbian, slovenian,
10 italian, ukrainian and german translation files.
11** merged translations from LP.
12** psensor: fixed hide window on startup for gnome-shell (Closes:
13 #676361).
14
1* v0.6.2.1715* v0.6.2.17
216
3** psensor: fixed sensor type displayed in sensor preferences dialog.17** psensor: fixed sensor type displayed in sensor preferences
18 dialog. (Closes LP: #968912)
4** psensor: fixed compilation error on 64bits with ATI/AMD GPU support.19** psensor: fixed compilation error on 64bits with ATI/AMD GPU support.
5** psensor: not calling g_thread_init when compiled with glib >= 2.31.20** psensor: not calling g_thread_init when compiled with glib >= 2.31.
6** changed copyright dates to 2012.21** changed copyright dates to 2012.
722
=== modified file 'aclocal.m4'
--- aclocal.m4 2011-11-25 02:56:22 +0000
+++ aclocal.m4 2012-08-31 10:30:30 +0000
@@ -1,7 +1,8 @@
1# generated automatically by aclocal 1.11.1 -*- Autoconf -*-1# generated automatically by aclocal 1.11.3 -*- Autoconf -*-
22
3# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,3# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.4# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
5# Inc.
5# This file is free software; the Free Software Foundation6# This file is free software; the Free Software Foundation
6# gives unlimited permission to copy and/or distribute it,7# gives unlimited permission to copy and/or distribute it,
7# with or without modifications, as long as this notice is preserved.8# with or without modifications, as long as this notice is preserved.
@@ -2517,12 +2518,15 @@
2517AC_SUBST([$1])dnl2518AC_SUBST([$1])dnl
2518])2519])
25192520
2520# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.2521# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
2522# Foundation, Inc.
2521#2523#
2522# This file is free software; the Free Software Foundation2524# This file is free software; the Free Software Foundation
2523# gives unlimited permission to copy and/or distribute it,2525# gives unlimited permission to copy and/or distribute it,
2524# with or without modifications, as long as this notice is preserved.2526# with or without modifications, as long as this notice is preserved.
25252527
2528# serial 1
2529
2526# AM_AUTOMAKE_VERSION(VERSION)2530# AM_AUTOMAKE_VERSION(VERSION)
2527# ----------------------------2531# ----------------------------
2528# Automake X.Y traces this macro to ensure aclocal.m4 has been2532# Automake X.Y traces this macro to ensure aclocal.m4 has been
@@ -2532,7 +2536,7 @@
2532[am__api_version='1.11'2536[am__api_version='1.11'
2533dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to2537dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
2534dnl require some minimum version. Point them to the right macro.2538dnl require some minimum version. Point them to the right macro.
2535m4_if([$1], [1.11.1], [],2539m4_if([$1], [1.11.3], [],
2536 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl2540 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
2537])2541])
25382542
@@ -2548,19 +2552,21 @@
2548# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.2552# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
2549# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.2553# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
2550AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],2554AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
2551[AM_AUTOMAKE_VERSION([1.11.1])dnl2555[AM_AUTOMAKE_VERSION([1.11.3])dnl
2552m4_ifndef([AC_AUTOCONF_VERSION],2556m4_ifndef([AC_AUTOCONF_VERSION],
2553 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl2557 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
2554_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])2558_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
25552559
2556# AM_AUX_DIR_EXPAND -*- Autoconf -*-2560# AM_AUX_DIR_EXPAND -*- Autoconf -*-
25572561
2558# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.2562# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
2559#2563#
2560# This file is free software; the Free Software Foundation2564# This file is free software; the Free Software Foundation
2561# gives unlimited permission to copy and/or distribute it,2565# gives unlimited permission to copy and/or distribute it,
2562# with or without modifications, as long as this notice is preserved.2566# with or without modifications, as long as this notice is preserved.
25632567
2568# serial 1
2569
2564# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets2570# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
2565# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to2571# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
2566# `$srcdir', `$srcdir/..', or `$srcdir/../..'.2572# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
@@ -2642,14 +2648,14 @@
2642Usually this means the macro was only invoked conditionally.]])2648Usually this means the macro was only invoked conditionally.]])
2643fi])])2649fi])])
26442650
2645# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 20092651# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
2646# Free Software Foundation, Inc.2652# 2010, 2011 Free Software Foundation, Inc.
2647#2653#
2648# This file is free software; the Free Software Foundation2654# This file is free software; the Free Software Foundation
2649# gives unlimited permission to copy and/or distribute it,2655# gives unlimited permission to copy and/or distribute it,
2650# with or without modifications, as long as this notice is preserved.2656# with or without modifications, as long as this notice is preserved.
26512657
2652# serial 102658# serial 12
26532659
2654# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be2660# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
2655# written in clear, in which case automake, when reading aclocal.m4,2661# written in clear, in which case automake, when reading aclocal.m4,
@@ -2689,6 +2695,7 @@
2689 # instance it was reported that on HP-UX the gcc test will end up2695 # instance it was reported that on HP-UX the gcc test will end up
2690 # making a dummy file named `D' -- because `-MD' means `put the output2696 # making a dummy file named `D' -- because `-MD' means `put the output
2691 # in D'.2697 # in D'.
2698 rm -rf conftest.dir
2692 mkdir conftest.dir2699 mkdir conftest.dir
2693 # Copy depcomp to subdir because otherwise we won't find it if we're2700 # Copy depcomp to subdir because otherwise we won't find it if we're
2694 # using a relative directory.2701 # using a relative directory.
@@ -2753,7 +2760,7 @@
2753 break2760 break
2754 fi2761 fi
2755 ;;2762 ;;
2756 msvisualcpp | msvcmsys)2763 msvc7 | msvc7msys | msvisualcpp | msvcmsys)
2757 # This compiler won't grok `-c -o', but also, the minuso test has2764 # This compiler won't grok `-c -o', but also, the minuso test has
2758 # not run yet. These depmodes are late enough in the game, and2765 # not run yet. These depmodes are late enough in the game, and
2759 # so weak that their functioning should not be impacted.2766 # so weak that their functioning should not be impacted.
@@ -2818,10 +2825,13 @@
2818if test "x$enable_dependency_tracking" != xno; then2825if test "x$enable_dependency_tracking" != xno; then
2819 am_depcomp="$ac_aux_dir/depcomp"2826 am_depcomp="$ac_aux_dir/depcomp"
2820 AMDEPBACKSLASH='\'2827 AMDEPBACKSLASH='\'
2828 am__nodep='_no'
2821fi2829fi
2822AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])2830AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
2823AC_SUBST([AMDEPBACKSLASH])dnl2831AC_SUBST([AMDEPBACKSLASH])dnl
2824_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl2832_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
2833AC_SUBST([am__nodep])dnl
2834_AM_SUBST_NOTMAKE([am__nodep])dnl
2825])2835])
28262836
2827# Generate code to set up dependency tracking. -*- Autoconf -*-2837# Generate code to set up dependency tracking. -*- Autoconf -*-
@@ -3043,12 +3053,15 @@
3043done3053done
3044echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])3054echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
30453055
3046# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.3056# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
3057# Inc.
3047#3058#
3048# This file is free software; the Free Software Foundation3059# This file is free software; the Free Software Foundation
3049# gives unlimited permission to copy and/or distribute it,3060# gives unlimited permission to copy and/or distribute it,
3050# with or without modifications, as long as this notice is preserved.3061# with or without modifications, as long as this notice is preserved.
30513062
3063# serial 1
3064
3052# AM_PROG_INSTALL_SH3065# AM_PROG_INSTALL_SH
3053# ------------------3066# ------------------
3054# Define $install_sh.3067# Define $install_sh.
@@ -3215,12 +3228,15 @@
3215fi3228fi
3216])3229])
32173230
3218# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.3231# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
3232# Inc.
3219#3233#
3220# This file is free software; the Free Software Foundation3234# This file is free software; the Free Software Foundation
3221# gives unlimited permission to copy and/or distribute it,3235# gives unlimited permission to copy and/or distribute it,
3222# with or without modifications, as long as this notice is preserved.3236# with or without modifications, as long as this notice is preserved.
32233237
3238# serial 1
3239
3224# AM_PROG_MKDIR_P3240# AM_PROG_MKDIR_P
3225# ---------------3241# ---------------
3226# Check for `mkdir -p'.3242# Check for `mkdir -p'.
@@ -3243,13 +3259,14 @@
32433259
3244# Helper functions for option handling. -*- Autoconf -*-3260# Helper functions for option handling. -*- Autoconf -*-
32453261
3246# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc.3262# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
3263# Foundation, Inc.
3247#3264#
3248# This file is free software; the Free Software Foundation3265# This file is free software; the Free Software Foundation
3249# gives unlimited permission to copy and/or distribute it,3266# gives unlimited permission to copy and/or distribute it,
3250# with or without modifications, as long as this notice is preserved.3267# with or without modifications, as long as this notice is preserved.
32513268
3252# serial 43269# serial 5
32533270
3254# _AM_MANGLE_OPTION(NAME)3271# _AM_MANGLE_OPTION(NAME)
3255# -----------------------3272# -----------------------
@@ -3257,13 +3274,13 @@
3257[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])3274[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
32583275
3259# _AM_SET_OPTION(NAME)3276# _AM_SET_OPTION(NAME)
3260# ------------------------------3277# --------------------
3261# Set option NAME. Presently that only means defining a flag for this option.3278# Set option NAME. Presently that only means defining a flag for this option.
3262AC_DEFUN([_AM_SET_OPTION],3279AC_DEFUN([_AM_SET_OPTION],
3263[m4_define(_AM_MANGLE_OPTION([$1]), 1)])3280[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
32643281
3265# _AM_SET_OPTIONS(OPTIONS)3282# _AM_SET_OPTIONS(OPTIONS)
3266# ----------------------------------3283# ------------------------
3267# OPTIONS is a space-separated list of Automake options.3284# OPTIONS is a space-separated list of Automake options.
3268AC_DEFUN([_AM_SET_OPTIONS],3285AC_DEFUN([_AM_SET_OPTIONS],
3269[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])3286[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
@@ -3339,12 +3356,14 @@
3339fi3356fi
3340AC_MSG_RESULT(yes)])3357AC_MSG_RESULT(yes)])
33413358
3342# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.3359# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
3343#3360#
3344# This file is free software; the Free Software Foundation3361# This file is free software; the Free Software Foundation
3345# gives unlimited permission to copy and/or distribute it,3362# gives unlimited permission to copy and/or distribute it,
3346# with or without modifications, as long as this notice is preserved.3363# with or without modifications, as long as this notice is preserved.
33473364
3365# serial 1
3366
3348# AM_PROG_INSTALL_STRIP3367# AM_PROG_INSTALL_STRIP
3349# ---------------------3368# ---------------------
3350# One issue with vendor `install' (even GNU) is that you can't3369# One issue with vendor `install' (even GNU) is that you can't
@@ -3367,13 +3386,13 @@
3367INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"3386INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
3368AC_SUBST([INSTALL_STRIP_PROGRAM])])3387AC_SUBST([INSTALL_STRIP_PROGRAM])])
33693388
3370# Copyright (C) 2006, 2008 Free Software Foundation, Inc.3389# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
3371#3390#
3372# This file is free software; the Free Software Foundation3391# This file is free software; the Free Software Foundation
3373# gives unlimited permission to copy and/or distribute it,3392# gives unlimited permission to copy and/or distribute it,
3374# with or without modifications, as long as this notice is preserved.3393# with or without modifications, as long as this notice is preserved.
33753394
3376# serial 23395# serial 3
33773396
3378# _AM_SUBST_NOTMAKE(VARIABLE)3397# _AM_SUBST_NOTMAKE(VARIABLE)
3379# ---------------------------3398# ---------------------------
@@ -3382,13 +3401,13 @@
3382AC_DEFUN([_AM_SUBST_NOTMAKE])3401AC_DEFUN([_AM_SUBST_NOTMAKE])
33833402
3384# AM_SUBST_NOTMAKE(VARIABLE)3403# AM_SUBST_NOTMAKE(VARIABLE)
3385# ---------------------------3404# --------------------------
3386# Public sister of _AM_SUBST_NOTMAKE.3405# Public sister of _AM_SUBST_NOTMAKE.
3387AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])3406AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
33883407
3389# Check how to create a tarball. -*- Autoconf -*-3408# Check how to create a tarball. -*- Autoconf -*-
33903409
3391# Copyright (C) 2004, 2005 Free Software Foundation, Inc.3410# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
3392#3411#
3393# This file is free software; the Free Software Foundation3412# This file is free software; the Free Software Foundation
3394# gives unlimited permission to copy and/or distribute it,3413# gives unlimited permission to copy and/or distribute it,
@@ -3410,10 +3429,11 @@
3410# a tarball read from stdin.3429# a tarball read from stdin.
3411# $(am__untar) < result.tar3430# $(am__untar) < result.tar
3412AC_DEFUN([_AM_PROG_TAR],3431AC_DEFUN([_AM_PROG_TAR],
3413[# Always define AMTAR for backward compatibility.3432[# Always define AMTAR for backward compatibility. Yes, it's still used
3414AM_MISSING_PROG([AMTAR], [tar])3433# in the wild :-( We should find a proper way to deprecate it ...
3434AC_SUBST([AMTAR], ['$${TAR-tar}'])
3415m4_if([$1], [v7],3435m4_if([$1], [v7],
3416 [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],3436 [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
3417 [m4_case([$1], [ustar],, [pax],,3437 [m4_case([$1], [ustar],, [pax],,
3418 [m4_fatal([Unknown tar format])])3438 [m4_fatal([Unknown tar format])])
3419AC_MSG_CHECKING([how to create a $1 tar archive])3439AC_MSG_CHECKING([how to create a $1 tar archive])
34203440
=== modified file 'configure'
--- configure 2012-04-09 12:15:54 +0000
+++ configure 2012-08-31 10:30:30 +0000
@@ -1,6 +1,6 @@
1#! /bin/sh1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.68 for psensor 0.6.2.17.3# Generated by GNU Autoconf 2.68 for psensor 0.6.2.19.
4#4#
5# Report bugs to <jeanfi@gmail.com>.5# Report bugs to <jeanfi@gmail.com>.
6#6#
@@ -560,8 +560,8 @@
560# Identity of this package.560# Identity of this package.
561PACKAGE_NAME='psensor'561PACKAGE_NAME='psensor'
562PACKAGE_TARNAME='psensor'562PACKAGE_TARNAME='psensor'
563PACKAGE_VERSION='0.6.2.17'563PACKAGE_VERSION='0.6.2.19'
564PACKAGE_STRING='psensor 0.6.2.17'564PACKAGE_STRING='psensor 0.6.2.19'
565PACKAGE_BUGREPORT='jeanfi@gmail.com'565PACKAGE_BUGREPORT='jeanfi@gmail.com'
566PACKAGE_URL='http://wpitchoune.net/psensor'566PACKAGE_URL='http://wpitchoune.net/psensor'
567567
@@ -691,6 +691,7 @@
691am__fastdepCC_FALSE691am__fastdepCC_FALSE
692am__fastdepCC_TRUE692am__fastdepCC_TRUE
693CCDEPMODE693CCDEPMODE
694am__nodep
694AMDEPBACKSLASH695AMDEPBACKSLASH
695AMDEP_FALSE696AMDEP_FALSE
696AMDEP_TRUE697AMDEP_TRUE
@@ -1355,7 +1356,7 @@
1355 # Omit some internal or obsolete options to make the list less imposing.1356 # Omit some internal or obsolete options to make the list less imposing.
1356 # This message is too long to be a string in the A/UX 3.1 sh.1357 # This message is too long to be a string in the A/UX 3.1 sh.
1357 cat <<_ACEOF1358 cat <<_ACEOF
1358\`configure' configures psensor 0.6.2.17 to adapt to many kinds of systems.1359\`configure' configures psensor 0.6.2.19 to adapt to many kinds of systems.
13591360
1360Usage: $0 [OPTION]... [VAR=VALUE]...1361Usage: $0 [OPTION]... [VAR=VALUE]...
13611362
@@ -1429,7 +1430,7 @@
14291430
1430if test -n "$ac_init_help"; then1431if test -n "$ac_init_help"; then
1431 case $ac_init_help in1432 case $ac_init_help in
1432 short | recursive ) echo "Configuration of psensor 0.6.2.17:";;1433 short | recursive ) echo "Configuration of psensor 0.6.2.19:";;
1433 esac1434 esac
1434 cat <<\_ACEOF1435 cat <<\_ACEOF
14351436
@@ -1567,7 +1568,7 @@
1567test -n "$ac_init_help" && exit $ac_status1568test -n "$ac_init_help" && exit $ac_status
1568if $ac_init_version; then1569if $ac_init_version; then
1569 cat <<\_ACEOF1570 cat <<\_ACEOF
1570psensor configure 0.6.2.171571psensor configure 0.6.2.19
1571generated by GNU Autoconf 2.681572generated by GNU Autoconf 2.68
15721573
1573Copyright (C) 2010 Free Software Foundation, Inc.1574Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1990,7 +1991,7 @@
1990This file contains any messages produced by compilers while1991This file contains any messages produced by compilers while
1991running configure, to aid debugging if configure makes a mistake.1992running configure, to aid debugging if configure makes a mistake.
19921993
1993It was created by psensor $as_me 0.6.2.17, which was1994It was created by psensor $as_me 0.6.2.19, which was
1994generated by GNU Autoconf 2.68. Invocation command line was1995generated by GNU Autoconf 2.68. Invocation command line was
19951996
1996 $ $0 $@1997 $ $0 $@
@@ -2807,7 +2808,7 @@
28072808
2808# Define the identity of the package.2809# Define the identity of the package.
2809 PACKAGE='psensor'2810 PACKAGE='psensor'
2810 VERSION='0.6.2.17'2811 VERSION='0.6.2.19'
28112812
28122813
2813cat >>confdefs.h <<_ACEOF2814cat >>confdefs.h <<_ACEOF
@@ -2837,11 +2838,11 @@
28372838
2838# We need awk for the "check" target. The system "awk" is bad on2839# We need awk for the "check" target. The system "awk" is bad on
2839# some platforms.2840# some platforms.
2840# Always define AMTAR for backward compatibility.2841# Always define AMTAR for backward compatibility. Yes, it's still used
28412842# in the wild :-( We should find a proper way to deprecate it ...
2842AMTAR=${AMTAR-"${am_missing_run}tar"}2843AMTAR='$${TAR-tar}'
28432844
2844am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'2845am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
28452846
28462847
28472848
@@ -3694,6 +3695,7 @@
3694if test "x$enable_dependency_tracking" != xno; then3695if test "x$enable_dependency_tracking" != xno; then
3695 am_depcomp="$ac_aux_dir/depcomp"3696 am_depcomp="$ac_aux_dir/depcomp"
3696 AMDEPBACKSLASH='\'3697 AMDEPBACKSLASH='\'
3698 am__nodep='_no'
3697fi3699fi
3698 if test "x$enable_dependency_tracking" != xno; then3700 if test "x$enable_dependency_tracking" != xno; then
3699 AMDEP_TRUE=3701 AMDEP_TRUE=
@@ -3718,6 +3720,7 @@
3718 # instance it was reported that on HP-UX the gcc test will end up3720 # instance it was reported that on HP-UX the gcc test will end up
3719 # making a dummy file named `D' -- because `-MD' means `put the output3721 # making a dummy file named `D' -- because `-MD' means `put the output
3720 # in D'.3722 # in D'.
3723 rm -rf conftest.dir
3721 mkdir conftest.dir3724 mkdir conftest.dir
3722 # Copy depcomp to subdir because otherwise we won't find it if we're3725 # Copy depcomp to subdir because otherwise we won't find it if we're
3723 # using a relative directory.3726 # using a relative directory.
@@ -3777,7 +3780,7 @@
3777 break3780 break
3778 fi3781 fi
3779 ;;3782 ;;
3780 msvisualcpp | msvcmsys)3783 msvc7 | msvc7msys | msvisualcpp | msvcmsys)
3781 # This compiler won't grok `-c -o', but also, the minuso test has3784 # This compiler won't grok `-c -o', but also, the minuso test has
3782 # not run yet. These depmodes are late enough in the game, and3785 # not run yet. These depmodes are late enough in the game, and
3783 # so weak that their functioning should not be impacted.3786 # so weak that their functioning should not be impacted.
@@ -9176,7 +9179,7 @@
9176# report actual input values of CONFIG_FILES etc. instead of their9179# report actual input values of CONFIG_FILES etc. instead of their
9177# values after options handling.9180# values after options handling.
9178ac_log="9181ac_log="
9179This file was extended by psensor $as_me 0.6.2.17, which was9182This file was extended by psensor $as_me 0.6.2.19, which was
9180generated by GNU Autoconf 2.68. Invocation command line was9183generated by GNU Autoconf 2.68. Invocation command line was
91819184
9182 CONFIG_FILES = $CONFIG_FILES9185 CONFIG_FILES = $CONFIG_FILES
@@ -9243,7 +9246,7 @@
9243cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=19246cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
9244ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"9247ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
9245ac_cs_version="\\9248ac_cs_version="\\
9246psensor config.status 0.6.2.179249psensor config.status 0.6.2.19
9247configured by $0, generated by GNU Autoconf 2.68,9250configured by $0, generated by GNU Autoconf 2.68,
9248 with options \\"\$ac_cs_config\\"9251 with options \\"\$ac_cs_config\\"
92499252
92509253
=== modified file 'configure.ac'
--- configure.ac 2012-04-09 12:15:54 +0000
+++ configure.ac 2012-08-31 10:30:30 +0000
@@ -2,7 +2,7 @@
2# Process this file with autoconf to produce a configure script.2# Process this file with autoconf to produce a configure script.
33
4AC_PREREQ([2.64])4AC_PREREQ([2.64])
5AC_INIT([psensor], [0.6.2.17],[jeanfi@gmail.com],[psensor],[http://wpitchoune.net/psensor])5AC_INIT([psensor], [0.6.2.19],[jeanfi@gmail.com],[psensor],[http://wpitchoune.net/psensor])
66
7AM_INIT_AUTOMAKE([-Wall -Werror gnu])7AM_INIT_AUTOMAKE([-Wall -Werror gnu])
88
99
=== modified file 'debian/changelog'
--- debian/changelog 2012-07-13 02:22:18 +0000
+++ debian/changelog 2012-08-31 10:30:30 +0000
@@ -1,3 +1,15 @@
1psensor (0.6.2.19-1ubuntu1) quantal; urgency=low
2
3 * New upstream release
4 + fixed hide window on startup for gnome-shell. (Closes: #676361)
5 + fixed size of the icon hicolor/48x48/psensor_hot.png. (LP: #1029065)
6 * Removed LP1021900.patch: fixed upstream since 0.6.2.18.
7 * Remaining changes:
8 + Modifed build-dep to add NVidia and Application Indicator support
9 + Only add an nvidia-settings build-dep on i386 and amd6
10
11 -- Jean-Philippe Orsini <jeanfi@gmail.com> Tue, 21 Aug 2012 11:19:33 +0200
12
1psensor (0.6.2.17-2ubuntu1) quantal; urgency=low13psensor (0.6.2.17-2ubuntu1) quantal; urgency=low
214
3 * Merge from Debian testing. Remaining changes:15 * Merge from Debian testing. Remaining changes:
416
=== removed file 'debian/patches/LP1021900.patch'
--- debian/patches/LP1021900.patch 2012-07-07 00:47:44 +0000
+++ debian/patches/LP1021900.patch 1970-01-01 00:00:00 +0000
@@ -1,26 +0,0 @@
1Description: added degree Celcius symbol
2Author: Jean-Philippe Orsini <jeanfi@gmail.com>
3Origin: Upstream
4Ubuntu-bug: https://bugs.launchpad.net/ubuntu/+source/psensor/+bug/1021900
5Index: psensor-0.6.2.16/src/lib/psensor.c
6===================================================================
7--- psensor-0.6.2.16.orig/src/lib/psensor.c 2012-07-07 00:40:33.000000000 +0200
8+++ psensor-0.6.2.16/src/lib/psensor.c 2012-07-07 00:47:36.258308297 +0200
9@@ -207,7 +207,7 @@
10 char *unit;
11
12 if (is_temp_type(type))
13- unit = "C";
14+ unit = "°C";
15 else if (type & SENSOR_TYPE_CPU_USAGE)
16 unit = "%";
17 else
18@@ -427,7 +427,7 @@
19 const char *psensor_type_to_unit_str(unsigned int type)
20 {
21 if (type & SENSOR_TYPE_TEMP)
22- return _("C");
23+ return "\302\260C";
24
25 if (type & SENSOR_TYPE_FAN)
26 return _("RPM");
270
=== modified file 'debian/patches/series'
--- debian/patches/series 2012-07-13 02:22:18 +0000
+++ debian/patches/series 2012-08-31 10:30:30 +0000
@@ -1,1 +0,0 @@
1LP1021900.patch
20
=== modified file 'icons/hicolor/14x14/Makefile.in'
--- icons/hicolor/14x14/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/hicolor/14x14/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'icons/hicolor/16x16/Makefile.in'
--- icons/hicolor/16x16/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/hicolor/16x16/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'icons/hicolor/22x22/Makefile.in'
--- icons/hicolor/22x22/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/hicolor/22x22/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'icons/hicolor/24x24/Makefile.in'
--- icons/hicolor/24x24/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/hicolor/24x24/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'icons/hicolor/32x32/Makefile.in'
--- icons/hicolor/32x32/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/hicolor/32x32/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'icons/hicolor/48x48/Makefile.in'
--- icons/hicolor/48x48/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/hicolor/48x48/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'icons/hicolor/48x48/psensor_hot.png'
338Binary files icons/hicolor/48x48/psensor_hot.png 2011-11-25 02:56:22 +0000 and icons/hicolor/48x48/psensor_hot.png 2012-08-31 10:30:30 +0000 differ347Binary files icons/hicolor/48x48/psensor_hot.png 2011-11-25 02:56:22 +0000 and icons/hicolor/48x48/psensor_hot.png 2012-08-31 10:30:30 +0000 differ
=== modified file 'icons/hicolor/64x64/Makefile.in'
--- icons/hicolor/64x64/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/hicolor/64x64/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'icons/hicolor/scalable/Makefile.in'
--- icons/hicolor/scalable/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/hicolor/scalable/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'icons/ubuntu-mono-dark/apps/22/Makefile.in'
--- icons/ubuntu-mono-dark/apps/22/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/ubuntu-mono-dark/apps/22/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'icons/ubuntu-mono-dark/status/22/Makefile.in'
--- icons/ubuntu-mono-dark/status/22/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/ubuntu-mono-dark/status/22/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'icons/ubuntu-mono-light/status/22/Makefile.in'
--- icons/ubuntu-mono-light/status/22/Makefile.in 2011-11-25 02:56:22 +0000
+++ icons/ubuntu-mono-light/status/22/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(psensordistpixdir)"76am__installdirs = "$(DESTDIR)$(psensordistpixdir)"
71DATA = $(psensordistpix_DATA)77DATA = $(psensordistpix_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \277 @list='$(psensordistpix_DATA)'; test -n "$(psensordistpixdir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(psensordistpixdir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(psensordistpixdir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(psensordistpixdir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'po/LINGUAS'
--- po/LINGUAS 2011-04-21 15:19:35 +0000
+++ po/LINGUAS 2012-08-31 10:30:30 +0000
@@ -6,6 +6,14 @@
6# Copying and distribution of this file, with or without modification,6# Copying and distribution of this file, with or without modification,
7# are permitted in any medium without royalty provided the copyright7# are permitted in any medium without royalty provided the copyright
8# notice and this notice are preserved.8# notice and this notice are preserved.
9de
9fr10fr
11hu
12it
13pt_BR
14ru
15sl
16sr
17tr
18uk
10zh_CN19zh_CN
11tr
1220
=== modified file 'po/fr.gmo'
13Binary files po/fr.gmo 2012-04-09 12:15:54 +0000 and po/fr.gmo 2012-08-31 10:30:30 +0000 differ21Binary files po/fr.gmo 2012-04-09 12:15:54 +0000 and po/fr.gmo 2012-08-31 10:30:30 +0000 differ
=== modified file 'po/fr.po'
--- po/fr.po 2012-04-09 12:15:54 +0000
+++ po/fr.po 2012-08-31 10:30:30 +0000
@@ -5,19 +5,21 @@
5#5#
6msgid ""6msgid ""
7msgstr ""7msgstr ""
8"Project-Id-Version: psensor 0.6.0.9\n"8"Project-Id-Version: psensor 0.6.2.x\n"
9"Report-Msgid-Bugs-To: jeanfi@gmail.com\n"9"Report-Msgid-Bugs-To: jeanfi@gmail.com\n"
10"POT-Creation-Date: 2012-03-26 10:30+0200\n"10"POT-Creation-Date: 2012-07-07 00:37+0200\n"
11"PO-Revision-Date: 2011-02-07 21:18+0100\n"11"PO-Revision-Date: 2012-06-13 15:38+0000\n"
12"Last-Translator: Jean-Philippe Orsini <jeanfi@gmail.com>\n"12"Last-Translator: Vincent Lhote <Unknown>\n"
13"Language-Team: Oriya\n"13"Language-Team: Oriya\n"
14"Language: or\n"14"Language: fr\n"
15"MIME-Version: 1.0\n"15"MIME-Version: 1.0\n"
16"Content-Type: text/plain; charset=UTF-8\n"16"Content-Type: text/plain; charset=UTF-8\n"
17"Content-Transfer-Encoding: 8-bit\n"17"Content-Transfer-Encoding: 8bit\n"
18"X-Launchpad-Export-Date: 2012-07-09 21:00+0000\n"
19"X-Generator: Launchpad (build 15558)\n"
1820
19#: src/main.c:7721#: src/main.c:77
20#, fuzzy, c-format22#, c-format
21msgid ""23msgid ""
22"Copyright (C) %s jeanfi@gmail.com\n"24"Copyright (C) %s jeanfi@gmail.com\n"
23"License GPLv2: GNU GPL version 2 or later <http://www.gnu.org/licenses/old-"25"License GPLv2: GNU GPL version 2 or later <http://www.gnu.org/licenses/old-"
@@ -26,12 +28,12 @@
26"There is NO WARRANTY, to the extent permitted by law.\n"28"There is NO WARRANTY, to the extent permitted by law.\n"
27msgstr ""29msgstr ""
28"Copyright (C) %s wpitchoune@gmail.com\n"30"Copyright (C) %s wpitchoune@gmail.com\n"
29"License GPLv2: GNU GPL version 3 ou ultérieure<http://www.gnu.org/licenses/"31"Licence GPLv2: GNU GPL version 3 ou ultérieure<http://www.gnu.org/licenses/"
30"old-licenses/gpl-2.0.html>\n"32"old-licenses/gpl-2.0.html>\n"
31"Ceci est un logiciel libre, vous êtes libre de le modifier et de le \n"33"Ceci est un logiciel libre, vous êtes libre de le modifier et de le \n"
32"redistribuer.\n"34"redistribuer.\n"
33"Ce logiciel n'est accompagné d'ABSOLUMENT AUCUNE GARANTIE, dans les limites\n"35"Ce logiciel n'est accompagné d’ABSOLUMENT AUCUNE GARANTIE, dans les limites\n"
34"autorisees par la loi applicable.\n"36"autorisées par la loi applicable.\n"
3537
36#: src/main.c:88 src/server/server.c:8638#: src/main.c:88 src/server/server.c:86
37#, c-format39#, c-format
@@ -68,6 +70,8 @@
68#: src/main.c:10570#: src/main.c:105
69msgid " -d, --debug=LEVEL set the debug level, integer between 0 and 3"71msgid " -d, --debug=LEVEL set the debug level, integer between 0 and 3"
70msgstr ""72msgstr ""
73" -d, --debug=LEVEL assigner le niveau de débogage, nombre entier entre 0 "
74"et 3"
7175
72#: src/main.c:110 src/server/server.c:10476#: src/main.c:110 src/server/server.c:104
73#, c-format77#, c-format
@@ -77,12 +81,11 @@
77#: src/main.c:112 src/server/server.c:10681#: src/main.c:112 src/server/server.c:106
78#, c-format82#, c-format
79msgid "%s home page: <%s>\n"83msgid "%s home page: <%s>\n"
80msgstr "%s page d'acceuil: <%s>\n"84msgstr "%s page d’accueil: <%s>\n"
8185
82#: src/main.c:42586#: src/main.c:425
83#, fuzzy
84msgid "Enables debug mode."87msgid "Enables debug mode."
85msgstr "Activée"88msgstr "Active le mode de débogage."
8689
87#: src/main.c:434 src/server/server.c:35290#: src/main.c:434 src/server/server.c:352
88#, c-format91#, c-format
@@ -97,10 +100,9 @@
97"distance.\n"100"distance.\n"
98101
99#: src/ui.c:80102#: src/ui.c:80
100#, fuzzy
101msgid "Psensor is a GTK+ application for monitoring hardware sensors"103msgid "Psensor is a GTK+ application for monitoring hardware sensors"
102msgstr ""104msgstr ""
103"psensor est une application GTK pour surveiller les sondes matérielles "105"Psensor est une application GTK+ pour surveiller les sondes matérielles "
104"thermiques et les ventilateurs."106"thermiques et les ventilateurs."
105107
106#: src/ui.c:83108#: src/ui.c:83
@@ -108,36 +110,34 @@
108"Copyright(c) 2010-2012\n"110"Copyright(c) 2010-2012\n"
109"jeanfi@gmail.com"111"jeanfi@gmail.com"
110msgstr ""112msgstr ""
113"Copyright(c) 2010-2012\n"
114"jeanfi@gmail.com"
111115
112#: src/ui.c:86116#: src/ui.c:86
113msgid "About Psensor"117msgid "About Psensor"
114msgstr ""118msgstr "A propos de Psensor"
115119
116#: src/ui.c:89120#: src/ui.c:89
117msgid "Psensor Homepage"121msgid "Psensor Homepage"
118msgstr ""122msgstr "Site internet de Psensor"
119123
120#: src/ui.c:144124#: src/ui.c:144
121#, fuzzy
122msgid "_Preferences"125msgid "_Preferences"
123msgstr "Configuration"126msgstr "_Configuration"
124127
125#: src/ui.c:145 src/ui_sensorlist.c:200128#: src/ui.c:145 src/ui_sensorlist.c:200
126msgid "Preferences"129msgid "Preferences"
127msgstr "Configuration"130msgstr "Configuration"
128131
129#: src/ui.c:149132#: src/ui.c:149
130#, fuzzy
131msgid "_Sensor Preferences"133msgid "_Sensor Preferences"
132msgstr "Editer La Configuration Des Sondes"134msgstr "Configuration Des Sondes"
133135
134#: src/ui.c:150136#: src/ui.c:150
135#, fuzzy
136msgid "Sensor Preferences"137msgid "Sensor Preferences"
137msgstr "Editer La Configuration Des Sondes"138msgstr "Configuration Des Sondes"
138139
139#: src/ui.c:154140#: src/ui.c:154
140#, fuzzy
141msgid "_Quit"141msgid "_Quit"
142msgstr "Quitter"142msgstr "Quitter"
143143
@@ -147,29 +147,29 @@
147147
148#: src/ui.c:160148#: src/ui.c:160
149msgid "_About"149msgid "_About"
150msgstr ""150msgstr "À propos"
151151
152#: src/ui.c:161152#: src/ui.c:161
153msgid "About"153msgid "About"
154msgstr ""154msgstr "A propos"
155155
156#: src/ui.c:183 src/ui_appindicator.c:176156#: src/ui.c:183 src/ui_appindicator.c:176
157#, c-format157#, c-format
158msgid "building menus failed: %s"158msgid "building menus failed: %s"
159msgstr ""159msgstr "La construction des menus a échouée: %s"
160160
161#: src/ui.c:231161#: src/ui.c:231
162msgid "Psensor - Temperature Monitor"162msgid "Psensor - Temperature Monitor"
163msgstr "Psensor - Surveillance Des Temperatures"163msgstr "Psensor - Surveillance Des Températures"
164164
165#: src/ui.c:248165#: src/ui.c:248
166#, fuzzy, c-format166#, c-format
167msgid "ERROR: Failed to load psensor icon.\n"167msgid "ERROR: Failed to load psensor icon.\n"
168msgstr "ERREUR: Echec de l'initialisation de 'lm-sensors'\n"168msgstr "ERREUR: Échec du chargement de l’icône de Psensor\n"
169169
170#: src/ui_sensorlist.c:231170#: src/ui_sensorlist.c:231
171msgid "Select foreground color"171msgid "Select foreground color"
172msgstr "Selectionner la couleur d'avant-plan"172msgstr "Sélectionner la couleur d'avant-plan"
173173
174#: src/ui_sensorlist.c:308 src/glade/psensor-pref.glade:241174#: src/ui_sensorlist.c:308 src/glade/psensor-pref.glade:241
175msgid "Sensor"175msgid "Sensor"
@@ -209,32 +209,33 @@
209msgstr "Alerte thermique"209msgstr "Alerte thermique"
210210
211#: src/ui_sensorpref.c:397211#: src/ui_sensorpref.c:397
212#, fuzzy
213msgid "Sensor Name"212msgid "Sensor Name"
214msgstr "Sonde"213msgstr "Nom De La Sonde"
215214
216#: src/rsensor.c:107215#: src/rsensor.c:107
217#, fuzzy, c-format216#, c-format
218msgid "Fail to connect to: %s"217msgid "Fail to connect to: %s"
219msgstr "ERREUR: Echer de la connectio à: %s\n"218msgstr "Échec de la connexion à: %s"
220219
221#: src/rsensor.c:144220#: src/rsensor.c:144
222#, fuzzy, c-format221#, c-format
223msgid "Invalid content: %s"222msgid "Invalid content: %s"
224msgstr "ERREUR: Contenu invalide: %s\n"223msgstr "Contenu invalide: %s"
225224
226#: src/rsensor.c:184225#: src/rsensor.c:184
227#, fuzzy, c-format226#, c-format
228msgid "Invalid JSON: %s"227msgid "Invalid JSON: %s"
229msgstr "ERREUR: Invalide JSON: %s\n"228msgstr "JSON incorrect: %s"
230229
231#: src/server/server.c:53230#: src/server/server.c:53
232msgid ""231msgid ""
233"<html><body><p>Page not found - Go to <a href='/'>Main page</a></p></body>"232"<html><body><p>Page not found - Go to <a href='/'>Main page</a></p></body>"
234msgstr ""233msgstr ""
234"<html><body><p>Page non trouvée - Allez à <a href='/'>Main page</a></p></"
235"body>"
235236
236#: src/server/server.c:76237#: src/server/server.c:76
237#, fuzzy, c-format238#, c-format
238msgid ""239msgid ""
239"Copyright (C) %s jeanfi@gmail.com\n"240"Copyright (C) %s jeanfi@gmail.com\n"
240"License GPLv2: GNU GPL version 2 or later <http://www.gnu.org/licenses/old-"241"License GPLv2: GNU GPL version 2 or later <http://www.gnu.org/licenses/old-"
@@ -248,7 +249,7 @@
248"Ceci est un logiciel libre, vous êtes libre de le modifier et de le \n"249"Ceci est un logiciel libre, vous êtes libre de le modifier et de le \n"
249"redistribuer.\n"250"redistribuer.\n"
250"Ce logiciel n'est accompagné d'ABSOLUMENT AUCUNE GARANTIE, dans les limites\n"251"Ce logiciel n'est accompagné d'ABSOLUMENT AUCUNE GARANTIE, dans les limites\n"
251"autorisees par la loi applicable.\n"252"autorisées par la loi applicable.\n"
252253
253#: src/server/server.c:88254#: src/server/server.c:88
254msgid ""255msgid ""
@@ -258,27 +259,26 @@
258"matérielles."259"matérielles."
259260
260#: src/server/server.c:93261#: src/server/server.c:93
261#, fuzzy
262msgid ""262msgid ""
263" -h, --help\t\tdisplay this help and exit\n"263" -h, --help\t\tdisplay this help and exit\n"
264" -v, --version\t\tdisplay version information and exit"264" -v, --version\t\tdisplay version information and exit"
265msgstr ""265msgstr ""
266" -h, --help afficher cette aide et quitter\n"266" -h, --help\t\tafficher cette aide et quitter\n"
267" -v, --version afficher les informations de version et quitter"267" -v, --version\t\tafficher les informations de version et quitter"
268268
269#: src/server/server.c:98269#: src/server/server.c:98
270#, fuzzy
271msgid ""270msgid ""
272" -d,--debug\t\trun in debug mode\n"271" -d,--debug\t\trun in debug mode\n"
273" -p,--port=PORT\twebserver port\n"272" -p,--port=PORT\twebserver port\n"
274" -w,--wdir=DIR\t\tdirectory containing webserver pages"273" -w,--wdir=DIR\t\tdirectory containing webserver pages"
275msgstr ""274msgstr ""
276" -p,--port=PORT port du serveur Web\n"275" -d,--debug\t\trun in debug mode\n"
277" -w,--wdir=DIR répertoire contenant les pages du serveur Web"276" -p,--port=PORT\tport du serveur Web\n"
277" -w,--wdir=DIR\t\trépertoire contenant les pages du serveur Web"
278278
279#: src/server/server.c:175279#: src/server/server.c:175
280msgid "<html><body><p>Server stop requested</p></body></html>"280msgid "<html><body><p>Server stop requested</p></body></html>"
281msgstr ""281msgstr "<html><body><p>L’arrêt du serveur a été demandé</p></body></html>"
282282
283#: src/server/server.c:290283#: src/server/server.c:290
284#, c-format284#, c-format
@@ -296,19 +296,19 @@
296msgstr "ERREUR: Echec de la creation du serveur Web\n"296msgstr "ERREUR: Echec de la creation du serveur Web\n"
297297
298#: src/server/server.c:377298#: src/server/server.c:377
299#, fuzzy, c-format299#, c-format
300msgid "Web server started on port: %d"300msgid "Web server started on port: %d"
301msgstr "Server Web demarre sur le port: %d\n"301msgstr "Le serveur Web a été démarre sur le port: %d"
302302
303#: src/server/server.c:378303#: src/server/server.c:378
304#, fuzzy, c-format304#, c-format
305msgid "WWW directory: %s"305msgid "WWW directory: %s"
306msgstr "WWW repertoire: %s\n"306msgstr "WWW répertoire: %s"
307307
308#: src/server/server.c:379308#: src/server/server.c:379
309#, fuzzy, c-format309#, c-format
310msgid "URL: http://localhost:%d"310msgid "URL: http://localhost:%d"
311msgstr "URL: http://localhost:%d\n"311msgstr "URL: http://localhost:%d"
312312
313#: src/lib/amd.c:151313#: src/lib/amd.c:151
314#, c-format314#, c-format
@@ -321,25 +321,24 @@
321msgstr ""321msgstr ""
322322
323#: src/lib/amd.c:185323#: src/lib/amd.c:185
324#, fuzzy, c-format324#, c-format
325msgid "ERROR: ADL Initialization Error!\n"325msgid "ERROR: ADL Initialization Error!\n"
326msgstr "ERREUR: échec de l'initialisation nvidia\n"326msgstr "ERREUR: échec de l'initialisation ADL\n"
327327
328#: src/lib/amd.c:193328#: src/lib/amd.c:193
329#, fuzzy, c-format329#, c-format
330msgid "ERROR: Cannot get the number of adapters!\n"330msgid "ERROR: Cannot get the number of adapters!\n"
331msgstr ""331msgstr ""
332"ERREUR: Impossible de récuperer la valeur de la sous-fonctionnalité %s: %s\n"
333332
334#: src/lib/hdd.c:58333#: src/lib/hdd.c:58
335#, fuzzy, c-format334#, c-format
336msgid "ERROR: hdd fetch, failed to open socket\n"335msgid "ERROR: hdd fetch, failed to open socket\n"
337msgstr "ERREUR: hdd_fetch, écher d'ouverture de la socket\n"336msgstr "ERREUR: hdd_fetch, échec d'ouverture de la socket\n"
338337
339#: src/lib/hdd.c:72338#: src/lib/hdd.c:72
340#, fuzzy, c-format339#, c-format
341msgid "ERROR: hdd fetch, failed to open connection\n"340msgid "ERROR: hdd fetch, failed to open connection\n"
342msgstr "ERREUR: hdd_fetch, écher de l'ouverture de la connection\n"341msgstr "ERREUR: hdd_fetch, échec de l'ouverture de la connection\n"
343342
344#: src/lib/hdd.c:182343#: src/lib/hdd.c:182
345#, c-format344#, c-format
@@ -354,7 +353,7 @@
354#: src/lib/log.c:37353#: src/lib/log.c:37
355#, c-format354#, c-format
356msgid "Cannot open log file: %s"355msgid "Cannot open log file: %s"
357msgstr ""356msgstr "Impossible d'ouvrir le journal: %s"
358357
359#: src/lib/nvidia.c:54358#: src/lib/nvidia.c:54
360#, c-format359#, c-format
@@ -362,14 +361,14 @@
362msgstr "ERREUR: échec de la récupération des températures nvidia\n"361msgstr "ERREUR: échec de la récupération des températures nvidia\n"
363362
364#: src/lib/nvidia.c:91363#: src/lib/nvidia.c:91
365#, fuzzy, c-format364#, c-format
366msgid "ERROR: Cannot open connection to X Server\n"365msgid "ERROR: Cannot open connection to X Server\n"
367msgstr "ERREUR: Echer de la connectio à: %s\n"366msgstr "ERREUR: Echec de la connection au serveur X11\n"
368367
369#: src/lib/nvidia.c:99368#: src/lib/nvidia.c:99
370#, fuzzy, c-format369#, c-format
371msgid "ERROR: Cannot retrieve NVidia information\n"370msgid "ERROR: Cannot retrieve NVidia information\n"
372msgstr "ERREUR: échec de la récupération des températures nvidia\n"371msgstr "ERREUR: échec de la récupération des informations NVidia\n"
373372
374#: src/lib/lmsensor.c:43373#: src/lib/lmsensor.c:43
375#, c-format374#, c-format
@@ -387,21 +386,17 @@
387msgid "ERROR: lm-sensors initialization failure: %s\n"386msgid "ERROR: lm-sensors initialization failure: %s\n"
388msgstr "ERREUR: échec de l'initialisation de lm-sensors: %s\n"387msgstr "ERREUR: échec de l'initialisation de lm-sensors: %s\n"
389388
390#: src/lib/psensor.c:430
391msgid "C"
392msgstr ""
393
394#: src/lib/psensor.c:433389#: src/lib/psensor.c:433
395msgid "RPM"390msgid "RPM"
396msgstr ""391msgstr "RPM"
397392
398#: src/lib/psensor.c:436393#: src/lib/psensor.c:436
399msgid "%"394msgid "%"
400msgstr ""395msgstr "%"
401396
402#: src/glade/psensor-pref.glade:7397#: src/glade/psensor-pref.glade:7
403msgid "Edit Preferences"398msgid "Edit Preferences"
404msgstr "Editer la configuration"399msgstr "Éditer la configuration"
405400
406#: src/glade/psensor-pref.glade:70401#: src/glade/psensor-pref.glade:70
407msgid "Graph Colors"402msgid "Graph Colors"
@@ -413,7 +408,7 @@
413408
414#: src/glade/psensor-pref.glade:100409#: src/glade/psensor-pref.glade:100
415msgid "Background:"410msgid "Background:"
416msgstr "Arrière-plan :"411msgstr "Arrière-plan:"
417412
418#: src/glade/psensor-pref.glade:114413#: src/glade/psensor-pref.glade:114
419msgid "Background opacity:"414msgid "Background opacity:"
@@ -424,14 +419,12 @@
424msgstr "Graphe"419msgstr "Graphe"
425420
426#: src/glade/psensor-pref.glade:183421#: src/glade/psensor-pref.glade:183
427#, fuzzy
428msgid "Update interval:"422msgid "Update interval:"
429msgstr "Interval de mise à jour du graphe:"423msgstr "Intervalle de mise à jour:"
430424
431#: src/glade/psensor-pref.glade:197425#: src/glade/psensor-pref.glade:197
432#, fuzzy
433msgid "Monitoring duration:"426msgid "Monitoring duration:"
434msgstr "Durée de surveillance du graphe:"427msgstr "Durée de surveillance:"
435428
436#: src/glade/psensor-pref.glade:210 src/glade/psensor-pref.glade:272429#: src/glade/psensor-pref.glade:210 src/glade/psensor-pref.glade:272
437msgid "second(s)"430msgid "second(s)"
@@ -443,7 +436,7 @@
443436
444#: src/glade/psensor-pref.glade:259437#: src/glade/psensor-pref.glade:259
445msgid "Measure update interval:"438msgid "Measure update interval:"
446msgstr "Interval de mise à jour des mesures:"439msgstr "Intervalle de mise à jour des mesures:"
447440
448#: src/glade/psensor-pref.glade:288441#: src/glade/psensor-pref.glade:288
449msgid "Interface"442msgid "Interface"
@@ -470,26 +463,24 @@
470msgstr "<i>Max</i>"463msgstr "<i>Max</i>"
471464
472#: src/glade/psensor-pref.glade:483465#: src/glade/psensor-pref.glade:483
473#, fuzzy
474msgid "Enable menu"466msgid "Enable menu"
475msgstr "Activée"467msgstr "Activer le menu"
476468
477#: src/glade/psensor-pref.glade:500469#: src/glade/psensor-pref.glade:500
478msgid "Enable Unity Launcher counter"470msgid "Enable Unity Launcher counter"
479msgstr "Activer le compteur du lanceur de Unity"471msgstr "Activer le compteur du lanceur de Unity"
480472
481#: src/glade/psensor-pref.glade:518473#: src/glade/psensor-pref.glade:518
482#, fuzzy
483msgid "Hide window on startup"474msgid "Hide window on startup"
484msgstr "Cacher les décorations de la fenêtre"475msgstr "Cacher la fenêtre au lancement"
485476
486#: src/glade/psensor-pref.glade:535477#: src/glade/psensor-pref.glade:535
487msgid "Restore window position and size"478msgid "Restore window position and size"
488msgstr ""479msgstr "Restaurer la position et la taille de la fenêtre"
489480
490#: src/glade/sensor-edit.glade:8481#: src/glade/sensor-edit.glade:8
491msgid "Edit Sensor Preferences"482msgid "Edit Sensor Preferences"
492msgstr "Editer La Configuration Des Sondes"483msgstr "Éditer La Configuration Des Sondes"
493484
494#: src/glade/sensor-edit.glade:104485#: src/glade/sensor-edit.glade:104
495msgid "Name:"486msgid "Name:"
@@ -504,7 +495,6 @@
504msgstr "Id:"495msgstr "Id:"
505496
506#: src/glade/sensor-edit.glade:202497#: src/glade/sensor-edit.glade:202
507#, fuzzy
508msgid "Color:"498msgid "Color:"
509msgstr "Couleur:"499msgstr "Couleur:"
510500
@@ -522,7 +512,7 @@
522512
523#: src/glade/sensor-edit.glade:266513#: src/glade/sensor-edit.glade:266
524msgid "Sensor Information"514msgid "Sensor Information"
525msgstr "Information sonde"515msgstr "Information de la sonde"
526516
527#: src/glade/sensor-edit.glade:279517#: src/glade/sensor-edit.glade:279
528msgid "Draw sensor curve"518msgid "Draw sensor curve"
@@ -531,58 +521,3 @@
531#: src/glade/sensor-edit.glade:327521#: src/glade/sensor-edit.glade:327
532msgid "°C"522msgid "°C"
533msgstr "°C"523msgstr "°C"
534
535#~ msgid "ERROR: failed gettimeofday\n"
536#~ msgstr "ERREUR: échec gettimeofday\n"
537
538#~ msgid "Current"
539#~ msgstr "Actuelle"
540
541#~ msgid "ERROR: failed to init lm-sensors\n"
542#~ msgstr "ERREUR: Echec de l'initialisation de 'lm-sensors'\n"
543
544#, fuzzy
545#~ msgid "ERROR: lmsensor init failure: %s\n"
546#~ msgstr "ERREUR: Echec de l'initialisation de 'lm-sensors'\n"
547
548#~ msgid "LUATPL Error: failed to load Lua script: %s.\n"
549#~ msgstr "LUATPL Erreur: échec du chargement du script LUA: %s.\n"
550
551#~ msgid "LUATPL Error: failed to call init function: %s.\n"
552#~ msgstr "LUATPL Erreur: échec du lancement de la fonction init: %s.\n"
553
554#~ msgid "LUATPL Error:failed to execute Lua script (%s): %s.\n"
555#~ msgstr "LUATP Erreur: échec de l'exécution du script Lua (%s): %s.\n"
556
557#~ msgid "LUATPL Error:lua script (%s) returned a wrong type.\n"
558#~ msgstr "LUATPL Errur: le script Lua (%s) a retourné le mauvais type.\n"
559
560#~ msgid "LUATPL Error:failed to open lua state.\n"
561#~ msgstr "LUATPL Errur: écher de creation du Lua state.\n"
562
563#~ msgid "LUATPL Error: code: %d.\n"
564#~ msgstr "LUATPL Erreur: code: %d.\n"
565
566#~ msgid "ERROR: nvidia initialization failure: %d\n"
567#~ msgstr "ERREUR: échec de l'initialisation nvidia: %d\n"
568
569#~ msgid "ERROR: no nvidia chips or initialization failure\n"
570#~ msgstr "ERREUR: aucunes puces nvidia ou échec de l'initialisation\n"
571
572#~ msgid "Show"
573#~ msgstr "Montrer"
574
575#~ msgid "Right"
576#~ msgstr "Droite"
577
578#~ msgid "Left"
579#~ msgstr "Gauche"
580
581#~ msgid "Top"
582#~ msgstr "Haut"
583
584#~ msgid "Bottom"
585#~ msgstr "Bas"
586
587#~ msgid "ERROR: Lua support not enabled\n"
588#~ msgstr "ERREUR: Le support de Lua n'est pas activé\n"
589524
=== modified file 'po/psensor.pot'
--- po/psensor.pot 2012-04-09 12:15:54 +0000
+++ po/psensor.pot 2012-08-31 10:30:30 +0000
@@ -8,7 +8,7 @@
8msgstr ""8msgstr ""
9"Project-Id-Version: PACKAGE VERSION\n"9"Project-Id-Version: PACKAGE VERSION\n"
10"Report-Msgid-Bugs-To: jeanfi@gmail.com\n"10"Report-Msgid-Bugs-To: jeanfi@gmail.com\n"
11"POT-Creation-Date: 2012-03-26 10:30+0200\n"11"POT-Creation-Date: 2012-07-07 00:37+0200\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"14"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -348,10 +348,6 @@
348msgid "ERROR: lm-sensors initialization failure: %s\n"348msgid "ERROR: lm-sensors initialization failure: %s\n"
349msgstr ""349msgstr ""
350350
351#: src/lib/psensor.c:430
352msgid "C"
353msgstr ""
354
355#: src/lib/psensor.c:433351#: src/lib/psensor.c:433
356msgid "RPM"352msgid "RPM"
357msgstr ""353msgstr ""
358354
=== modified file 'po/tr.gmo'
359Binary files po/tr.gmo 2012-04-09 12:15:54 +0000 and po/tr.gmo 2012-08-31 10:30:30 +0000 differ355Binary files po/tr.gmo 2012-04-09 12:15:54 +0000 and po/tr.gmo 2012-08-31 10:30:30 +0000 differ
=== modified file 'po/tr.po'
--- po/tr.po 2012-04-09 12:15:54 +0000
+++ po/tr.po 2012-08-31 10:30:30 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: psensor\n"8"Project-Id-Version: psensor\n"
9"Report-Msgid-Bugs-To: jeanfi@gmail.com\n"9"Report-Msgid-Bugs-To: jeanfi@gmail.com\n"
10"POT-Creation-Date: 2012-03-26 10:30+0200\n"10"POT-Creation-Date: 2012-07-07 00:37+0200\n"
11"PO-Revision-Date: 2011-04-10 13:11+0000\n"11"PO-Revision-Date: 2012-03-28 11:40+0000\n"
12"Last-Translator: zeugma <Unknown>\n"12"Last-Translator: zeugma <Unknown>\n"
13"Language-Team: Turkish <tr@li.org>\n"13"Language-Team: Turkish <tr@li.org>\n"
14"Language: tr\n"14"Language: tr\n"
15"MIME-Version: 1.0\n"15"MIME-Version: 1.0\n"
16"Content-Type: text/plain; charset=UTF-8\n"16"Content-Type: text/plain; charset=UTF-8\n"
17"Content-Transfer-Encoding: 8bit\n"17"Content-Transfer-Encoding: 8bit\n"
18"X-Launchpad-Export-Date: 2011-04-11 05:41+0000\n"18"X-Launchpad-Export-Date: 2012-07-09 21:00+0000\n"
19"X-Generator: Launchpad (build 12735)\n"19"X-Generator: Launchpad (build 15558)\n"
2020
21#: src/main.c:7721#: src/main.c:77
22#, c-format22#, c-format
@@ -102,7 +102,6 @@
102msgstr ""102msgstr ""
103103
104#: src/ui.c:144104#: src/ui.c:144
105#, fuzzy
106msgid "_Preferences"105msgid "_Preferences"
107msgstr "Tercihler"106msgstr "Tercihler"
108107
@@ -111,12 +110,10 @@
111msgstr "Tercihler"110msgstr "Tercihler"
112111
113#: src/ui.c:149112#: src/ui.c:149
114#, fuzzy
115msgid "_Sensor Preferences"113msgid "_Sensor Preferences"
116msgstr "Tercihleri düzenle"114msgstr "Tercihleri düzenle"
117115
118#: src/ui.c:150116#: src/ui.c:150
119#, fuzzy
120msgid "Sensor Preferences"117msgid "Sensor Preferences"
121msgstr "Tercihleri düzenle"118msgstr "Tercihleri düzenle"
122119
@@ -192,7 +189,6 @@
192msgstr ""189msgstr ""
193190
194#: src/ui_sensorpref.c:397191#: src/ui_sensorpref.c:397
195#, fuzzy
196msgid "Sensor Name"192msgid "Sensor Name"
197msgstr "Algılayıcı"193msgstr "Algılayıcı"
198194
@@ -353,10 +349,6 @@
353msgid "ERROR: lm-sensors initialization failure: %s\n"349msgid "ERROR: lm-sensors initialization failure: %s\n"
354msgstr ""350msgstr ""
355351
356#: src/lib/psensor.c:430
357msgid "C"
358msgstr ""
359
360#: src/lib/psensor.c:433352#: src/lib/psensor.c:433
361msgid "RPM"353msgid "RPM"
362msgstr ""354msgstr ""
@@ -374,9 +366,8 @@
374msgstr "Grafik Renkleri"366msgstr "Grafik Renkleri"
375367
376#: src/glade/psensor-pref.glade:86368#: src/glade/psensor-pref.glade:86
377#, fuzzy
378msgid "Foreground:"369msgid "Foreground:"
379msgstr "Arkaplan:"370msgstr ""
380371
381#: src/glade/psensor-pref.glade:100372#: src/glade/psensor-pref.glade:100
382msgid "Background:"373msgid "Background:"
@@ -451,7 +442,6 @@
451msgstr ""442msgstr ""
452443
453#: src/glade/sensor-edit.glade:8444#: src/glade/sensor-edit.glade:8
454#, fuzzy
455msgid "Edit Sensor Preferences"445msgid "Edit Sensor Preferences"
456msgstr "Tercihleri düzenle"446msgstr "Tercihleri düzenle"
457447
@@ -494,12 +484,3 @@
494#: src/glade/sensor-edit.glade:327484#: src/glade/sensor-edit.glade:327
495msgid "°C"485msgid "°C"
496msgstr ""486msgstr ""
497
498#~ msgid "Right"
499#~ msgstr "Sağ"
500
501#~ msgid "Left"
502#~ msgstr "Sol"
503
504#~ msgid "Top"
505#~ msgstr "Üstte"
506487
=== modified file 'po/zh_CN.gmo'
507Binary files po/zh_CN.gmo 2012-04-09 12:15:54 +0000 and po/zh_CN.gmo 2012-08-31 10:30:30 +0000 differ488Binary files po/zh_CN.gmo 2012-04-09 12:15:54 +0000 and po/zh_CN.gmo 2012-08-31 10:30:30 +0000 differ
=== modified file 'po/zh_CN.po'
--- po/zh_CN.po 2012-04-09 12:15:54 +0000
+++ po/zh_CN.po 2012-08-31 10:30:30 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: psensor 0.6.0.10\n"8"Project-Id-Version: psensor 0.6.0.10\n"
9"Report-Msgid-Bugs-To: jeanfi@gmail.com\n"9"Report-Msgid-Bugs-To: jeanfi@gmail.com\n"
10"POT-Creation-Date: 2012-03-26 10:30+0200\n"10"POT-Creation-Date: 2012-07-07 00:37+0200\n"
11"PO-Revision-Date: 2011-06-06 08:57+0000\n"11"PO-Revision-Date: 2012-05-09 02:21+0000\n"
12"Last-Translator: royclark <Unknown>\n"12"Last-Translator: Wang Dianjin <Unknown>\n"
13"Language-Team: Chinese (simplified)\n"13"Language-Team: Chinese (simplified)\n"
14"Language: zh_CN\n"14"Language: zh_CN\n"
15"MIME-Version: 1.0\n"15"MIME-Version: 1.0\n"
16"Content-Type: text/plain; charset=UTF-8\n"16"Content-Type: text/plain; charset=UTF-8\n"
17"Content-Transfer-Encoding: 8bit\n"17"Content-Transfer-Encoding: 8bit\n"
18"X-Launchpad-Export-Date: 2011-06-06 09:00+0000\n"18"X-Launchpad-Export-Date: 2012-07-09 21:00+0000\n"
19"X-Generator: Launchpad (build 13144)\n"19"X-Generator: Launchpad (build 15558)\n"
2020
21#: src/main.c:7721#: src/main.c:77
22#, c-format22#, c-format
@@ -27,6 +27,11 @@
27"This is free software: you are free to change and redistribute it.\n"27"This is free software: you are free to change and redistribute it.\n"
28"There is NO WARRANTY, to the extent permitted by law.\n"28"There is NO WARRANTY, to the extent permitted by law.\n"
29msgstr ""29msgstr ""
30"版权所有(C) %s jeanfi@gmail.com\n"
31"协议 GPLv2:GNU GPL 第 2 版或以后的 <http://www.gnu.org/licenses/old-"
32"licenses/gpl-2.0.html>\n"
33"该软件为自由软件:您可以自由修改并分发。\n"
34"There is NO WARRANTY, to the extent permitted by law。\n"
3035
31#: src/main.c:88 src/server/server.c:8636#: src/main.c:88 src/server/server.c:86
32#, c-format37#, c-format
@@ -41,7 +46,7 @@
4146
42#: src/main.c:9447#: src/main.c:94
43msgid "Options:"48msgid "Options:"
44msgstr ""49msgstr "选项:"
4550
46#: src/main.c:9551#: src/main.c:95
47msgid ""52msgid ""
@@ -59,70 +64,71 @@
5964
60#: src/main.c:10565#: src/main.c:105
61msgid " -d, --debug=LEVEL set the debug level, integer between 0 and 3"66msgid " -d, --debug=LEVEL set the debug level, integer between 0 and 3"
62msgstr ""67msgstr " -d,--debug=LEVEL 设置调试等级,等级为 0 到 3 之间的整数"
6368
64#: src/main.c:110 src/server/server.c:10469#: src/main.c:110 src/server/server.c:104
65#, c-format70#, c-format
66msgid "Report bugs to: %s\n"71msgid "Report bugs to: %s\n"
67msgstr ""72msgstr "报告问题至:%s\n"
6873
69#: src/main.c:112 src/server/server.c:10674#: src/main.c:112 src/server/server.c:106
70#, c-format75#, c-format
71msgid "%s home page: <%s>\n"76msgid "%s home page: <%s>\n"
72msgstr ""77msgstr "%s 主页:<%s>\n"
7378
74#: src/main.c:42579#: src/main.c:425
75msgid "Enables debug mode."80msgid "Enables debug mode."
76msgstr ""81msgstr "启用调试模式。"
7782
78#: src/main.c:434 src/server/server.c:35283#: src/main.c:434 src/server/server.c:352
79#, c-format84#, c-format
80msgid "Try `%s --help' for more information.\n"85msgid "Try `%s --help' for more information.\n"
81msgstr ""86msgstr "试用‘%s --help’来获得更多信息。\n"
8287
83#: src/main.c:46988#: src/main.c:469
84#, c-format89#, c-format
85msgid "ERROR: Not compiled with remote sensor support.\n"90msgid "ERROR: Not compiled with remote sensor support.\n"
86msgstr ""91msgstr "错误:无法支持编译远程监测器。\n"
8792
88#: src/ui.c:8093#: src/ui.c:80
89#, fuzzy
90msgid "Psensor is a GTK+ application for monitoring hardware sensors"94msgid "Psensor is a GTK+ application for monitoring hardware sensors"
91msgstr "psensor 是一个 GTK 程序,用来监视硬件传感器,包括温度和风扇转速。"95msgstr "Psensor 是一款 GTK+ 硬件监测传感应用程序"
9296
93#: src/ui.c:8397#: src/ui.c:83
94msgid ""98msgid ""
95"Copyright(c) 2010-2012\n"99"Copyright(c) 2010-2012\n"
96"jeanfi@gmail.com"100"jeanfi@gmail.com"
97msgstr ""101msgstr ""
102"版权所有(c) 2010-2012\n"
103"jeanfi@gmail.com"
98104
99#: src/ui.c:86105#: src/ui.c:86
100msgid "About Psensor"106msgid "About Psensor"
101msgstr ""107msgstr "关于 Psensor"
102108
103#: src/ui.c:89109#: src/ui.c:89
104msgid "Psensor Homepage"110msgid "Psensor Homepage"
105msgstr ""111msgstr "Psensor 主页"
106112
107#: src/ui.c:144113#: src/ui.c:144
108msgid "_Preferences"114msgid "_Preferences"
109msgstr ""115msgstr "首选项(_P)"
110116
111#: src/ui.c:145 src/ui_sensorlist.c:200117#: src/ui.c:145 src/ui_sensorlist.c:200
112msgid "Preferences"118msgid "Preferences"
113msgstr "选项"119msgstr "首选项"
114120
115#: src/ui.c:149121#: src/ui.c:149
116msgid "_Sensor Preferences"122msgid "_Sensor Preferences"
117msgstr ""123msgstr "传感器首选项(_S)"
118124
119#: src/ui.c:150125#: src/ui.c:150
120msgid "Sensor Preferences"126msgid "Sensor Preferences"
121msgstr ""127msgstr "传感器首选项"
122128
123#: src/ui.c:154129#: src/ui.c:154
124msgid "_Quit"130msgid "_Quit"
125msgstr ""131msgstr "退出(_Q)"
126132
127#: src/ui.c:154133#: src/ui.c:154
128msgid "Quit"134msgid "Quit"
@@ -130,25 +136,25 @@
130136
131#: src/ui.c:160137#: src/ui.c:160
132msgid "_About"138msgid "_About"
133msgstr ""139msgstr "关于(_A)"
134140
135#: src/ui.c:161141#: src/ui.c:161
136msgid "About"142msgid "About"
137msgstr ""143msgstr "关于"
138144
139#: src/ui.c:183 src/ui_appindicator.c:176145#: src/ui.c:183 src/ui_appindicator.c:176
140#, c-format146#, c-format
141msgid "building menus failed: %s"147msgid "building menus failed: %s"
142msgstr ""148msgstr "创建菜单失败:%s"
143149
144#: src/ui.c:231150#: src/ui.c:231
145msgid "Psensor - Temperature Monitor"151msgid "Psensor - Temperature Monitor"
146msgstr ""152msgstr "Psensor - 温度监视器"
147153
148#: src/ui.c:248154#: src/ui.c:248
149#, c-format155#, c-format
150msgid "ERROR: Failed to load psensor icon.\n"156msgid "ERROR: Failed to load psensor icon.\n"
151msgstr ""157msgstr "错误:无法加载 psensor 图标。\n"
152158
153#: src/ui_sensorlist.c:231159#: src/ui_sensorlist.c:231
154msgid "Select foreground color"160msgid "Select foreground color"
@@ -160,7 +166,7 @@
160166
161#: src/ui_sensorlist.c:314167#: src/ui_sensorlist.c:314
162msgid "Value"168msgid "Value"
163msgstr ""169msgstr "值"
164170
165#: src/ui_sensorlist.c:320171#: src/ui_sensorlist.c:320
166msgid "Min"172msgid "Min"
@@ -181,11 +187,11 @@
181#: src/ui_sensorlist.c:374 src/ui_sensorlist.c:375 src/ui_sensorlist.c:376187#: src/ui_sensorlist.c:374 src/ui_sensorlist.c:375 src/ui_sensorlist.c:376
182#: src/glade/sensor-edit.glade:87 src/glade/sensor-edit.glade:153188#: src/glade/sensor-edit.glade:87 src/glade/sensor-edit.glade:153
183msgid "N/A"189msgid "N/A"
184msgstr ""190msgstr "不可用"
185191
186#: src/ui_notify.c:45192#: src/ui_notify.c:45
187msgid "gettimeofday failed"193msgid "gettimeofday failed"
188msgstr ""194msgstr "获取时间失败"
189195
190#: src/ui_notify.c:67 src/ui_notify.c:69196#: src/ui_notify.c:67 src/ui_notify.c:69
191msgid "Temperature alert"197msgid "Temperature alert"
@@ -193,27 +199,27 @@
193199
194#: src/ui_sensorpref.c:397200#: src/ui_sensorpref.c:397
195msgid "Sensor Name"201msgid "Sensor Name"
196msgstr ""202msgstr "传感器名称"
197203
198#: src/rsensor.c:107204#: src/rsensor.c:107
199#, c-format205#, c-format
200msgid "Fail to connect to: %s"206msgid "Fail to connect to: %s"
201msgstr ""207msgstr "无法连接到:%s"
202208
203#: src/rsensor.c:144209#: src/rsensor.c:144
204#, c-format210#, c-format
205msgid "Invalid content: %s"211msgid "Invalid content: %s"
206msgstr ""212msgstr "无效内容:%s"
207213
208#: src/rsensor.c:184214#: src/rsensor.c:184
209#, c-format215#, c-format
210msgid "Invalid JSON: %s"216msgid "Invalid JSON: %s"
211msgstr ""217msgstr "无效 JSON:%s"
212218
213#: src/server/server.c:53219#: src/server/server.c:53
214msgid ""220msgid ""
215"<html><body><p>Page not found - Go to <a href='/'>Main page</a></p></body>"221"<html><body><p>Page not found - Go to <a href='/'>Main page</a></p></body>"
216msgstr ""222msgstr "<html><body><p>未找到页面 - 请访问<a href='/'>主页</a></p></body>"
217223
218#: src/server/server.c:76224#: src/server/server.c:76
219#, c-format225#, c-format
@@ -224,6 +230,11 @@
224"This is free software: you are free to change and redistribute it.\n"230"This is free software: you are free to change and redistribute it.\n"
225"There is NO WARRANTY, to the extent permitted by law.\n"231"There is NO WARRANTY, to the extent permitted by law.\n"
226msgstr ""232msgstr ""
233"版权所有(C) %s jeanfi@gmail.com\n"
234"协议 GPLv2:GNU GPL 第 2 版或更新的<http://www.gnu.org/licenses/old-licenses/"
235"gpl-2.0.html>\n"
236"本软件为自由软件:您可以自由修改并分发。\n"
237"There is NO WARRANTY, to the extent permitted by law。\n"
227238
228#: src/server/server.c:88239#: src/server/server.c:88
229msgid ""240msgid ""
@@ -231,13 +242,12 @@
231msgstr "psensor 服务器是用来远程监视硬件的 HTTP 服务器。"242msgstr "psensor 服务器是用来远程监视硬件的 HTTP 服务器。"
232243
233#: src/server/server.c:93244#: src/server/server.c:93
234#, fuzzy
235msgid ""245msgid ""
236" -h, --help\t\tdisplay this help and exit\n"246" -h, --help\t\tdisplay this help and exit\n"
237" -v, --version\t\tdisplay version information and exit"247" -v, --version\t\tdisplay version information and exit"
238msgstr ""248msgstr ""
239" -h, --help 显示这个帮助并退出\n"249" -h, --help\t\t 显示本帮助并退出\n"
240" -v, --version 显示版本信息并退出"250" -v, --version\t\t 显示版本信息并退出"
241251
242#: src/server/server.c:98252#: src/server/server.c:98
243msgid ""253msgid ""
@@ -245,131 +255,130 @@
245" -p,--port=PORT\twebserver port\n"255" -p,--port=PORT\twebserver port\n"
246" -w,--wdir=DIR\t\tdirectory containing webserver pages"256" -w,--wdir=DIR\t\tdirectory containing webserver pages"
247msgstr ""257msgstr ""
258" -d,--debug\t\t 以调试模式运行\n"
259" -p,--port=PORT\t 网络服务器端口\n"
260" -w,--wdir=DIR\t\t 包括网络服务器页面的目录"
248261
249#: src/server/server.c:175262#: src/server/server.c:175
250msgid "<html><body><p>Server stop requested</p></body></html>"263msgid "<html><body><p>Server stop requested</p></body></html>"
251msgstr ""264msgstr "<html><body><p>服务器停止请求</p></body></html>"
252265
253#: src/server/server.c:290266#: src/server/server.c:290
254#, c-format267#, c-format
255msgid "HTTP Request: %s\n"268msgid "HTTP Request: %s\n"
256msgstr ""269msgstr "HTTP 请求:%s\n"
257270
258#: src/server/server.c:366271#: src/server/server.c:366
259#, c-format272#, c-format
260msgid "ERROR: no sensors detected\n"273msgid "ERROR: no sensors detected\n"
261msgstr ""274msgstr "错误:未检测到传感器\n"
262275
263#: src/server/server.c:373276#: src/server/server.c:373
264#, c-format277#, c-format
265msgid "ERROR: Fail to create web server\n"278msgid "ERROR: Fail to create web server\n"
266msgstr ""279msgstr "错误:无法创建网络服务器\n"
267280
268#: src/server/server.c:377281#: src/server/server.c:377
269#, c-format282#, c-format
270msgid "Web server started on port: %d"283msgid "Web server started on port: %d"
271msgstr ""284msgstr "网络服务器启动端口:%d"
272285
273#: src/server/server.c:378286#: src/server/server.c:378
274#, c-format287#, c-format
275msgid "WWW directory: %s"288msgid "WWW directory: %s"
276msgstr ""289msgstr "WWW 目录:%s"
277290
278#: src/server/server.c:379291#: src/server/server.c:379
279#, c-format292#, c-format
280msgid "URL: http://localhost:%d"293msgid "URL: http://localhost:%d"
281msgstr ""294msgstr "URL: http://localhost:%d"
282295
283#: src/lib/amd.c:151296#: src/lib/amd.c:151
284#, c-format297#, c-format
285msgid "ERROR: ADL library not found!\n"298msgid "ERROR: ADL library not found!\n"
286msgstr ""299msgstr "错误:未找到 ADL 库\n"
287300
288#: src/lib/amd.c:176301#: src/lib/amd.c:176
289#, c-format302#, c-format
290msgid "ERROR: ADL's API is missing!\n"303msgid "ERROR: ADL's API is missing!\n"
291msgstr ""304msgstr "错误:ADL 的 API 丢失!\n"
292305
293#: src/lib/amd.c:185306#: src/lib/amd.c:185
294#, c-format307#, c-format
295msgid "ERROR: ADL Initialization Error!\n"308msgid "ERROR: ADL Initialization Error!\n"
296msgstr ""309msgstr "错误:ADL 初始化出错!\n"
297310
298#: src/lib/amd.c:193311#: src/lib/amd.c:193
299#, c-format312#, c-format
300msgid "ERROR: Cannot get the number of adapters!\n"313msgid "ERROR: Cannot get the number of adapters!\n"
301msgstr ""314msgstr "错误:无法获取适配器数目!\n"
302315
303#: src/lib/hdd.c:58316#: src/lib/hdd.c:58
304#, c-format317#, c-format
305msgid "ERROR: hdd fetch, failed to open socket\n"318msgid "ERROR: hdd fetch, failed to open socket\n"
306msgstr ""319msgstr "错误:硬盘读取时,无法打开 socket\n"
307320
308#: src/lib/hdd.c:72321#: src/lib/hdd.c:72
309#, c-format322#, c-format
310msgid "ERROR: hdd fetch, failed to open connection\n"323msgid "ERROR: hdd fetch, failed to open connection\n"
311msgstr ""324msgstr "错误:硬盘读取时,无法打开连接\n"
312325
313#: src/lib/hdd.c:182326#: src/lib/hdd.c:182
314#, c-format327#, c-format
315msgid "ERROR: wrong hdd string: %s"328msgid "ERROR: wrong hdd string: %s"
316msgstr ""329msgstr "错误:不正确的硬盘字符串:%s"
317330
318#: src/lib/hdd.c:252331#: src/lib/hdd.c:252
319#, c-format332#, c-format
320msgid "ERROR: wrong hdd string: %s\n"333msgid "ERROR: wrong hdd string: %s\n"
321msgstr ""334msgstr "错误:不正确的硬盘字符串:%s\n"
322335
323#: src/lib/log.c:37336#: src/lib/log.c:37
324#, c-format337#, c-format
325msgid "Cannot open log file: %s"338msgid "Cannot open log file: %s"
326msgstr ""339msgstr "无法打开日志文件:%s"
327340
328#: src/lib/nvidia.c:54341#: src/lib/nvidia.c:54
329#, c-format342#, c-format
330msgid "ERROR: failed to retrieve nvidia temperature\n"343msgid "ERROR: failed to retrieve nvidia temperature\n"
331msgstr ""344msgstr "错误:无法获取 nvidia 温度\n"
332345
333#: src/lib/nvidia.c:91346#: src/lib/nvidia.c:91
334#, c-format347#, c-format
335msgid "ERROR: Cannot open connection to X Server\n"348msgid "ERROR: Cannot open connection to X Server\n"
336msgstr ""349msgstr "错误:无法打开到 X Server 的连接\n"
337350
338#: src/lib/nvidia.c:99351#: src/lib/nvidia.c:99
339#, c-format352#, c-format
340msgid "ERROR: Cannot retrieve NVidia information\n"353msgid "ERROR: Cannot retrieve NVidia information\n"
341msgstr ""354msgstr "错误:无法获取 NVidia 信息\n"
342355
343#: src/lib/lmsensor.c:43356#: src/lib/lmsensor.c:43
344#, c-format357#, c-format
345msgid "ERROR: Can't get value of subfeature %s: %s\n"358msgid "ERROR: Can't get value of subfeature %s: %s\n"
346msgstr ""359msgstr "错误:无法获取子功能的值:%s: %s\n"
347360
348#: src/lib/lmsensor.c:125361#: src/lib/lmsensor.c:125
349#, c-format362#, c-format
350msgid "ERROR: create_sensor, wrong feature type\n"363msgid "ERROR: create_sensor, wrong feature type\n"
351msgstr ""364msgstr "错误:创建传感器时,不正确的特征类型\n"
352365
353#: src/lib/lmsensor.c:208366#: src/lib/lmsensor.c:208
354#, c-format367#, c-format
355msgid "ERROR: lm-sensors initialization failure: %s\n"368msgid "ERROR: lm-sensors initialization failure: %s\n"
356msgstr ""369msgstr "错误:lm-sensors 初始化失败:%s\n"
357
358#: src/lib/psensor.c:430
359msgid "C"
360msgstr ""
361370
362#: src/lib/psensor.c:433371#: src/lib/psensor.c:433
363msgid "RPM"372msgid "RPM"
364msgstr ""373msgstr "转速"
365374
366#: src/lib/psensor.c:436375#: src/lib/psensor.c:436
367msgid "%"376msgid "%"
368msgstr ""377msgstr "%"
369378
370#: src/glade/psensor-pref.glade:7379#: src/glade/psensor-pref.glade:7
371msgid "Edit Preferences"380msgid "Edit Preferences"
372msgstr ""381msgstr "编辑首选项"
373382
374#: src/glade/psensor-pref.glade:70383#: src/glade/psensor-pref.glade:70
375msgid "Graph Colors"384msgid "Graph Colors"
@@ -377,7 +386,7 @@
377386
378#: src/glade/psensor-pref.glade:86387#: src/glade/psensor-pref.glade:86
379msgid "Foreground:"388msgid "Foreground:"
380msgstr "坐标栏:"389msgstr "前景:"
381390
382#: src/glade/psensor-pref.glade:100391#: src/glade/psensor-pref.glade:100
383msgid "Background:"392msgid "Background:"
@@ -385,7 +394,7 @@
385394
386#: src/glade/psensor-pref.glade:114395#: src/glade/psensor-pref.glade:114
387msgid "Background opacity:"396msgid "Background opacity:"
388msgstr "背景亮度:"397msgstr "背景透明:"
389398
390#: src/glade/psensor-pref.glade:165 src/glade/sensor-edit.glade:184399#: src/glade/psensor-pref.glade:165 src/glade/sensor-edit.glade:184
391msgid "Graph"400msgid "Graph"
@@ -393,23 +402,23 @@
393402
394#: src/glade/psensor-pref.glade:183403#: src/glade/psensor-pref.glade:183
395msgid "Update interval:"404msgid "Update interval:"
396msgstr ""405msgstr "更新间隔:"
397406
398#: src/glade/psensor-pref.glade:197407#: src/glade/psensor-pref.glade:197
399msgid "Monitoring duration:"408msgid "Monitoring duration:"
400msgstr ""409msgstr "监视持续时长:"
401410
402#: src/glade/psensor-pref.glade:210 src/glade/psensor-pref.glade:272411#: src/glade/psensor-pref.glade:210 src/glade/psensor-pref.glade:272
403msgid "second(s)"412msgid "second(s)"
404msgstr ""413msgstr "秒"
405414
406#: src/glade/psensor-pref.glade:225415#: src/glade/psensor-pref.glade:225
407msgid "minute(s)"416msgid "minute(s)"
408msgstr ""417msgstr "分钟"
409418
410#: src/glade/psensor-pref.glade:259419#: src/glade/psensor-pref.glade:259
411msgid "Measure update interval:"420msgid "Measure update interval:"
412msgstr ""421msgstr "测量更新间隔:"
413422
414#: src/glade/psensor-pref.glade:288423#: src/glade/psensor-pref.glade:288
415msgid "Interface"424msgid "Interface"
@@ -437,24 +446,23 @@
437446
438#: src/glade/psensor-pref.glade:483447#: src/glade/psensor-pref.glade:483
439msgid "Enable menu"448msgid "Enable menu"
440msgstr ""449msgstr "启用菜单"
441450
442#: src/glade/psensor-pref.glade:500451#: src/glade/psensor-pref.glade:500
443msgid "Enable Unity Launcher counter"452msgid "Enable Unity Launcher counter"
444msgstr ""453msgstr "启用 Unity 启动器计数器"
445454
446#: src/glade/psensor-pref.glade:518455#: src/glade/psensor-pref.glade:518
447#, fuzzy
448msgid "Hide window on startup"456msgid "Hide window on startup"
449msgstr "隐藏窗口标题栏"457msgstr "启动时隐藏窗口"
450458
451#: src/glade/psensor-pref.glade:535459#: src/glade/psensor-pref.glade:535
452msgid "Restore window position and size"460msgid "Restore window position and size"
453msgstr ""461msgstr "恢复窗口位置和大小"
454462
455#: src/glade/sensor-edit.glade:8463#: src/glade/sensor-edit.glade:8
456msgid "Edit Sensor Preferences"464msgid "Edit Sensor Preferences"
457msgstr "监视设备选项"465msgstr "编辑传感器首选项"
458466
459#: src/glade/sensor-edit.glade:104467#: src/glade/sensor-edit.glade:104
460msgid "Name:"468msgid "Name:"
@@ -470,11 +478,11 @@
470478
471#: src/glade/sensor-edit.glade:202479#: src/glade/sensor-edit.glade:202
472msgid "Color:"480msgid "Color:"
473msgstr ""481msgstr "颜色:"
474482
475#: src/glade/sensor-edit.glade:216483#: src/glade/sensor-edit.glade:216
476msgid "Alarm"484msgid "Alarm"
477msgstr "警告信息"485msgstr "警告"
478486
479#: src/glade/sensor-edit.glade:231487#: src/glade/sensor-edit.glade:231
480msgid "Activate desktop notifications"488msgid "Activate desktop notifications"
@@ -486,7 +494,7 @@
486494
487#: src/glade/sensor-edit.glade:266495#: src/glade/sensor-edit.glade:266
488msgid "Sensor Information"496msgid "Sensor Information"
489msgstr "设备信息"497msgstr "传感器信息"
490498
491#: src/glade/sensor-edit.glade:279499#: src/glade/sensor-edit.glade:279
492msgid "Draw sensor curve"500msgid "Draw sensor curve"
@@ -494,28 +502,4 @@
494502
495#: src/glade/sensor-edit.glade:327503#: src/glade/sensor-edit.glade:327
496msgid "°C"504msgid "°C"
497msgstr ""505msgstr "°C"
498
499#~ msgid "Current"
500#~ msgstr "当前"
501
502#~ msgid "Right"
503#~ msgstr "右侧"
504
505#~ msgid "Left"
506#~ msgstr "左侧"
507
508#~ msgid "Top"
509#~ msgstr "顶部"
510
511#~ msgid "Bottom"
512#~ msgstr "底部"
513
514#~ msgid "Show"
515#~ msgstr "显示主窗口"
516
517#~ msgid "Graph update interval:"
518#~ msgstr "图表更新间隔:"
519
520#~ msgid "Graph monitoring duration:"
521#~ msgstr "图表监视持续时间:"
522506
=== modified file 'src/Makefile.in'
--- src/Makefile.in 2011-12-22 21:11:44 +0000
+++ src/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -122,6 +122,12 @@
122am__base_list = \122am__base_list = \
123 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \123 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
124 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'124 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
125am__uninstall_files_from_dir = { \
126 test -z "$$files" \
127 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
128 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
129 $(am__cd) "$$dir" && rm -f $$files; }; \
130 }
125man1dir = $(mandir)/man1131man1dir = $(mandir)/man1
126NROFF = nroff132NROFF = nroff
127MANS = $(dist_man_MANS)133MANS = $(dist_man_MANS)
@@ -394,7 +400,7 @@
394400
395clean-binPROGRAMS:401clean-binPROGRAMS:
396 -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)402 -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
397psensor$(EXEEXT): $(psensor_OBJECTS) $(psensor_DEPENDENCIES) 403psensor$(EXEEXT): $(psensor_OBJECTS) $(psensor_DEPENDENCIES) $(EXTRA_psensor_DEPENDENCIES)
398 @rm -f psensor$(EXEEXT)404 @rm -f psensor$(EXEEXT)
399 $(LINK) $(psensor_OBJECTS) $(psensor_LDADD) $(LIBS)405 $(LINK) $(psensor_OBJECTS) $(psensor_LDADD) $(LIBS)
400406
@@ -467,9 +473,7 @@
467 sed -n '/\.1[a-z]*$$/p'; \473 sed -n '/\.1[a-z]*$$/p'; \
468 } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \474 } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
469 -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \475 -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
470 test -z "$$files" || { \476 dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
471 echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
472 cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
473477
474# This directory's subdirectories are mostly independent; you can cd478# This directory's subdirectories are mostly independent; you can cd
475# into them and run `make' without going through this Makefile.479# into them and run `make' without going through this Makefile.
@@ -695,10 +699,15 @@
695699
696installcheck: installcheck-recursive700installcheck: installcheck-recursive
697install-strip:701install-strip:
698 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \702 if test -z '$(STRIP)'; then \
699 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \703 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
700 `test -z '$(STRIP)' || \704 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
701 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install705 install; \
706 else \
707 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
708 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
709 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
710 fi
702mostlyclean-generic:711mostlyclean-generic:
703712
704clean-generic:713clean-generic:
705714
=== modified file 'src/glade/Makefile.in'
--- src/glade/Makefile.in 2011-11-25 02:56:22 +0000
+++ src/glade/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(gladedir)"76am__installdirs = "$(DESTDIR)$(gladedir)"
71DATA = $(glade_DATA)77DATA = $(glade_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -270,9 +276,7 @@
270 @$(NORMAL_UNINSTALL)276 @$(NORMAL_UNINSTALL)
271 @list='$(glade_DATA)'; test -n "$(gladedir)" || list=; \277 @list='$(glade_DATA)'; test -n "$(gladedir)" || list=; \
272 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273 test -n "$$files" || exit 0; \279 dir='$(DESTDIR)$(gladedir)'; $(am__uninstall_files_from_dir)
274 echo " ( cd '$(DESTDIR)$(gladedir)' && rm -f" $$files ")"; \
275 cd "$(DESTDIR)$(gladedir)" && rm -f $$files
276tags: TAGS280tags: TAGS
277TAGS:281TAGS:
278282
@@ -327,10 +331,15 @@
327331
328installcheck: installcheck-am332installcheck: installcheck-am
329install-strip:333install-strip:
330 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \334 if test -z '$(STRIP)'; then \
331 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \335 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
332 `test -z '$(STRIP)' || \336 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
333 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install337 install; \
338 else \
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
341 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
342 fi
334mostlyclean-generic:343mostlyclean-generic:
335344
336clean-generic:345clean-generic:
337346
=== modified file 'src/lib/Makefile.in'
--- src/lib/Makefile.in 2011-12-22 21:11:44 +0000
+++ src/lib/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -280,7 +280,7 @@
280280
281clean-noinstLIBRARIES:281clean-noinstLIBRARIES:
282 -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)282 -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
283libpsensor.a: $(libpsensor_a_OBJECTS) $(libpsensor_a_DEPENDENCIES) 283libpsensor.a: $(libpsensor_a_OBJECTS) $(libpsensor_a_DEPENDENCIES) $(EXTRA_libpsensor_a_DEPENDENCIES)
284 -rm -f libpsensor.a284 -rm -f libpsensor.a
285 $(libpsensor_a_AR) libpsensor.a $(libpsensor_a_OBJECTS) $(libpsensor_a_LIBADD)285 $(libpsensor_a_AR) libpsensor.a $(libpsensor_a_OBJECTS) $(libpsensor_a_LIBADD)
286 $(RANLIB) libpsensor.a286 $(RANLIB) libpsensor.a
@@ -414,10 +414,15 @@
414414
415installcheck: installcheck-am415installcheck: installcheck-am
416install-strip:416install-strip:
417 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \417 if test -z '$(STRIP)'; then \
418 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \418 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
419 `test -z '$(STRIP)' || \419 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
420 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install420 install; \
421 else \
422 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
423 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
424 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
425 fi
421mostlyclean-generic:426mostlyclean-generic:
422427
423clean-generic:428clean-generic:
424429
=== modified file 'src/lib/psensor.c'
--- src/lib/psensor.c 2012-07-13 02:22:18 +0000
+++ src/lib/psensor.c 2012-08-31 10:30:30 +0000
@@ -207,7 +207,7 @@
207 char *unit;207 char *unit;
208208
209 if (is_temp_type(type))209 if (is_temp_type(type))
210 unit = "°C";210 unit = "C";
211 else if (type & SENSOR_TYPE_CPU_USAGE)211 else if (type & SENSOR_TYPE_CPU_USAGE)
212 unit = "%";212 unit = "%";
213 else213 else
@@ -427,7 +427,7 @@
427const char *psensor_type_to_unit_str(unsigned int type)427const char *psensor_type_to_unit_str(unsigned int type)
428{428{
429 if (type & SENSOR_TYPE_TEMP)429 if (type & SENSOR_TYPE_TEMP)
430 return "\302\260C";430 return _("C");
431431
432 if (type & SENSOR_TYPE_FAN)432 if (type & SENSOR_TYPE_FAN)
433 return _("RPM");433 return _("RPM");
434434
=== modified file 'src/main.c'
--- src/main.c 2012-07-13 02:22:18 +0000
+++ src/main.c 2012-08-31 10:30:30 +0000
@@ -514,16 +514,16 @@
514 ui_appindicator_init(&ui);514 ui_appindicator_init(&ui);
515#endif515#endif
516516
517 /*
518 * show the window as soon as all gtk events have been processed
519 * in order to ensure that the status icon is attempted to be
520 * drawn before. If not, there is no way to detect that it is
521 * visible.
522 */
523 g_idle_add((GSourceFunc)initial_window_show, &ui);
524
525 gdk_notify_startup_complete();517 gdk_notify_startup_complete();
526518
519 /*
520 * hack, did not find a cleaner solution.
521 * wait 2s to ensure that the status icon is attempted to be
522 * drawn before determining whether the main window must be
523 * show.
524 */
525 g_timeout_add(2000, (GSourceFunc)initial_window_show, &ui);
526
527 /* main loop */527 /* main loop */
528 gtk_main();528 gtk_main();
529529
530530
=== modified file 'src/psensor.1'
--- src/psensor.1 2012-04-09 12:15:54 +0000
+++ src/psensor.1 2012-08-31 10:30:30 +0000
@@ -1,5 +1,5 @@
1.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.40.4.1.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.40.4.
2.TH PSENSOR "1" "March 2012" "psensor 0.6.2.17" "User Commands"2.TH PSENSOR "1" "August 2012" "psensor 0.6.2.19" "User Commands"
3.SH NAME3.SH NAME
4psensor \- Temperature monitoring application4psensor \- Temperature monitoring application
5.SH SYNOPSIS5.SH SYNOPSIS
66
=== modified file 'src/server/Makefile.in'
--- src/server/Makefile.in 2011-12-22 21:11:44 +0000
+++ src/server/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -88,6 +88,12 @@
88am__base_list = \88am__base_list = \
89 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \89 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
90 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'90 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
91am__uninstall_files_from_dir = { \
92 test -z "$$files" \
93 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
94 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
95 $(am__cd) "$$dir" && rm -f $$files; }; \
96 }
91man1dir = $(mandir)/man197man1dir = $(mandir)/man1
92NROFF = nroff98NROFF = nroff
93MANS = $(dist_man_MANS)99MANS = $(dist_man_MANS)
@@ -317,7 +323,7 @@
317323
318clean-binPROGRAMS:324clean-binPROGRAMS:
319 -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)325 -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
320psensor-server$(EXEEXT): $(psensor_server_OBJECTS) $(psensor_server_DEPENDENCIES) 326psensor-server$(EXEEXT): $(psensor_server_OBJECTS) $(psensor_server_DEPENDENCIES) $(EXTRA_psensor_server_DEPENDENCIES)
321 @rm -f psensor-server$(EXEEXT)327 @rm -f psensor-server$(EXEEXT)
322 $(LINK) $(psensor_server_OBJECTS) $(psensor_server_LDADD) $(LIBS)328 $(LINK) $(psensor_server_OBJECTS) $(psensor_server_LDADD) $(LIBS)
323329
@@ -378,9 +384,7 @@
378 sed -n '/\.1[a-z]*$$/p'; \384 sed -n '/\.1[a-z]*$$/p'; \
379 } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \385 } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
380 -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \386 -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
381 test -z "$$files" || { \387 dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
382 echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
383 cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
384388
385ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)389ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
386 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \390 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
@@ -494,10 +498,15 @@
494498
495installcheck: installcheck-am499installcheck: installcheck-am
496install-strip:500install-strip:
497 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \501 if test -z '$(STRIP)'; then \
498 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \502 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
499 `test -z '$(STRIP)' || \503 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
500 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install504 install; \
505 else \
506 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
507 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
508 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
509 fi
501mostlyclean-generic:510mostlyclean-generic:
502511
503clean-generic:512clean-generic:
504513
=== modified file 'src/server/psensor-server.1'
--- src/server/psensor-server.1 2012-04-09 12:15:54 +0000
+++ src/server/psensor-server.1 2012-08-31 10:30:30 +0000
@@ -1,5 +1,5 @@
1.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.40.4.1.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.40.4.
2.TH PSENSOR-SERVER "1" "March 2012" "psensor-server 0.6.2.17" "User Commands"2.TH PSENSOR-SERVER "1" "August 2012" "psensor-server 0.6.2.19" "User Commands"
3.SH NAME3.SH NAME
4psensor-server \- Temperature and system monitoring Web server4psensor-server \- Temperature and system monitoring Web server
5.SH SYNOPSIS5.SH SYNOPSIS
66
=== modified file 'tests/Makefile.in'
--- tests/Makefile.in 2011-11-25 02:56:22 +0000
+++ tests/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -276,10 +276,15 @@
276276
277installcheck: installcheck-am277installcheck: installcheck-am
278install-strip:278install-strip:
279 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \279 if test -z '$(STRIP)'; then \
280 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \280 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
281 `test -z '$(STRIP)' || \281 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
282 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install282 install; \
283 else \
284 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
285 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
286 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
287 fi
283mostlyclean-generic:288mostlyclean-generic:
284289
285clean-generic:290clean-generic:
286291
=== modified file 'www/Makefile.in'
--- www/Makefile.in 2011-11-25 02:56:22 +0000
+++ www/Makefile.in 2012-08-31 10:30:30 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -67,6 +67,12 @@
67am__base_list = \67am__base_list = \
68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \68 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'69 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
70am__uninstall_files_from_dir = { \
71 test -z "$$files" \
72 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
73 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
74 $(am__cd) "$$dir" && rm -f $$files; }; \
75 }
70am__installdirs = "$(DESTDIR)$(defaultwwwdir)"76am__installdirs = "$(DESTDIR)$(defaultwwwdir)"
71DATA = $(defaultwww_DATA)77DATA = $(defaultwww_DATA)
72DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)78DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -279,9 +285,7 @@
279 @$(NORMAL_UNINSTALL)285 @$(NORMAL_UNINSTALL)
280 @list='$(defaultwww_DATA)'; test -n "$(defaultwwwdir)" || list=; \286 @list='$(defaultwww_DATA)'; test -n "$(defaultwwwdir)" || list=; \
281 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \287 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
282 test -n "$$files" || exit 0; \288 dir='$(DESTDIR)$(defaultwwwdir)'; $(am__uninstall_files_from_dir)
283 echo " ( cd '$(DESTDIR)$(defaultwwwdir)' && rm -f" $$files ")"; \
284 cd "$(DESTDIR)$(defaultwwwdir)" && rm -f $$files
285tags: TAGS289tags: TAGS
286TAGS:290TAGS:
287291
@@ -336,10 +340,15 @@
336340
337installcheck: installcheck-am341installcheck: installcheck-am
338install-strip:342install-strip:
339 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \343 if test -z '$(STRIP)'; then \
340 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \344 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
341 `test -z '$(STRIP)' || \345 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
342 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install346 install; \
347 else \
348 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
349 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
350 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
351 fi
343mostlyclean-generic:352mostlyclean-generic:
344353
345clean-generic:354clean-generic:

Subscribers

People subscribed via source and target branches