diff -pruN 2.30.2-1/aclocal.m4 2.30.4-1/aclocal.m4
--- 2.30.2-1/aclocal.m4	2010-06-22 03:20:09.000000000 +0100
+++ 2.30.4-1/aclocal.m4	2010-11-17 11:15:11.000000000 +0000
@@ -13,8 +13,8 @@
 
 m4_ifndef([AC_AUTOCONF_VERSION],
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
-[m4_warning([this file was generated for autoconf 2.65.
+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],,
+[m4_warning([this file was generated for autoconf 2.67.
 You have another version of autoconf.  It may work, but is not guaranteed to.
 If you have problems, you may need to regenerate the build system entirely.
 To do so, use the procedure documented by the package, typically `autoreconf'.])])
@@ -1221,6 +1221,196 @@ AC_SUBST([am__tar])
 AC_SUBST([am__untar])
 ]) # _AM_PROG_TAR
 
+# nls.m4 serial 3 (gettext-0.15)
+dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+dnl
+dnl This file can can be used in projects which are not available under
+dnl the GNU General Public License or the GNU Library General Public
+dnl License but which still want to provide support for the GNU gettext
+dnl functionality.
+dnl Please note that the actual code of the GNU gettext library is covered
+dnl by the GNU Library General Public License, and the rest of the GNU
+dnl gettext package package is covered by the GNU General Public License.
+dnl They are *not* in the public domain.
+
+dnl Authors:
+dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
+dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.
+
+AC_PREREQ(2.50)
+
+AC_DEFUN([AM_NLS],
+[
+  AC_MSG_CHECKING([whether NLS is requested])
+  dnl Default is enabled NLS
+  AC_ARG_ENABLE(nls,
+    [  --disable-nls           do not use Native Language Support],
+    USE_NLS=$enableval, USE_NLS=yes)
+  AC_MSG_RESULT($USE_NLS)
+  AC_SUBST(USE_NLS)
+])
+
+# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
+# serial 1 (pkg-config-0.24)
+# 
+# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+# PKG_PROG_PKG_CONFIG([MIN-VERSION])
+# ----------------------------------
+AC_DEFUN([PKG_PROG_PKG_CONFIG],
+[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
+m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
+AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
+AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
+AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
+
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
+	AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
+fi
+if test -n "$PKG_CONFIG"; then
+	_pkg_min_version=m4_default([$1], [0.9.0])
+	AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
+	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+		AC_MSG_RESULT([yes])
+	else
+		AC_MSG_RESULT([no])
+		PKG_CONFIG=""
+	fi
+fi[]dnl
+])# PKG_PROG_PKG_CONFIG
+
+# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+#
+# Check to see whether a particular set of modules exists.  Similar
+# to PKG_CHECK_MODULES(), but does not set variables or print errors.
+#
+# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+# only at the first occurence in configure.ac, so if the first place
+# it's called might be skipped (such as if it is within an "if", you
+# have to call PKG_CHECK_EXISTS manually
+# --------------------------------------------------------------
+AC_DEFUN([PKG_CHECK_EXISTS],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+if test -n "$PKG_CONFIG" && \
+    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
+  m4_default([$2], [:])
+m4_ifvaln([$3], [else
+  $3])dnl
+fi])
+
+# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
+# ---------------------------------------------
+m4_define([_PKG_CONFIG],
+[if test -n "$$1"; then
+    pkg_cv_[]$1="$$1"
+ elif test -n "$PKG_CONFIG"; then
+    PKG_CHECK_EXISTS([$3],
+                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
+		     [pkg_failed=yes])
+ else
+    pkg_failed=untried
+fi[]dnl
+])# _PKG_CONFIG
+
+# _PKG_SHORT_ERRORS_SUPPORTED
+# -----------------------------
+AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+        _pkg_short_errors_supported=yes
+else
+        _pkg_short_errors_supported=no
+fi[]dnl
+])# _PKG_SHORT_ERRORS_SUPPORTED
+
+
+# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
+# [ACTION-IF-NOT-FOUND])
+#
+#
+# Note that if there is a possibility the first call to
+# PKG_CHECK_MODULES might not happen, you should be sure to include an
+# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
+#
+#
+# --------------------------------------------------------------
+AC_DEFUN([PKG_CHECK_MODULES],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
+AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
+
+pkg_failed=no
+AC_MSG_CHECKING([for $1])
+
+_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
+_PKG_CONFIG([$1][_LIBS], [libs], [$2])
+
+m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
+and $1[]_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details.])
+
+if test $pkg_failed = yes; then
+   	AC_MSG_RESULT([no])
+        _PKG_SHORT_ERRORS_SUPPORTED
+        if test $_pkg_short_errors_supported = yes; then
+	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
+        else 
+	        $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
+        fi
+	# Put the nasty error message in config.log where it belongs
+	echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
+
+	m4_default([$4], [AC_MSG_ERROR(
+[Package requirements ($2) were not met:
+
+$$1_PKG_ERRORS
+
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
+installed software in a non-standard prefix.
+
+_PKG_TEXT])[]dnl
+        ])
+elif test $pkg_failed = untried; then
+     	AC_MSG_RESULT([no])
+	m4_default([$4], [AC_MSG_FAILURE(
+[The pkg-config script could not be found or is too old.  Make sure it
+is in your PATH or set the PKG_CONFIG environment variable to the full
+path to pkg-config.
+
+_PKG_TEXT
+
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
+        ])
+else
+	$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
+	$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
+        AC_MSG_RESULT([yes])
+	$3
+fi[]dnl
+])# PKG_CHECK_MODULES
+
 # Copyright (C) 1995-2002 Free Software Foundation, Inc.
 # Copyright (C) 2001-2003,2004 Red Hat, Inc.
 #
@@ -1503,7 +1693,7 @@ msgstr ""
 
     dnl These rules are solely for the distribution goal.  While doing this
     dnl we only have to keep exactly one list of the available catalogs
-    dnl in configure.in.
+    dnl in configure.ac.
     for lang in $ALL_LINGUAS; do
       GMOFILES="$GMOFILES $lang.gmo"
       POFILES="$POFILES $lang.po"
@@ -1632,7 +1822,7 @@ AC_DEFINE_UNQUOTED($1, "$localedir",
 dnl
 dnl Now the definitions that aclocal will find
 dnl
-ifdef(glib_configure_in,[],[
+ifdef(glib_configure_ac,[],[
 AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)])
 AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)])
 ])dnl
@@ -1654,192 +1844,4 @@ sed 's/^/| /' conftest.foo >&AS_MESSAGE_
 fi])
 
 
-# nls.m4 serial 3 (gettext-0.15)
-dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc.
-dnl This file is free software; the Free Software Foundation
-dnl gives unlimited permission to copy and/or distribute it,
-dnl with or without modifications, as long as this notice is preserved.
-dnl
-dnl This file can can be used in projects which are not available under
-dnl the GNU General Public License or the GNU Library General Public
-dnl License but which still want to provide support for the GNU gettext
-dnl functionality.
-dnl Please note that the actual code of the GNU gettext library is covered
-dnl by the GNU Library General Public License, and the rest of the GNU
-dnl gettext package package is covered by the GNU General Public License.
-dnl They are *not* in the public domain.
-
-dnl Authors:
-dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
-dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.
-
-AC_PREREQ(2.50)
-
-AC_DEFUN([AM_NLS],
-[
-  AC_MSG_CHECKING([whether NLS is requested])
-  dnl Default is enabled NLS
-  AC_ARG_ENABLE(nls,
-    [  --disable-nls           do not use Native Language Support],
-    USE_NLS=$enableval, USE_NLS=yes)
-  AC_MSG_RESULT($USE_NLS)
-  AC_SUBST(USE_NLS)
-])
-
-# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
-# 
-# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-#
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
-
-# PKG_PROG_PKG_CONFIG([MIN-VERSION])
-# ----------------------------------
-AC_DEFUN([PKG_PROG_PKG_CONFIG],
-[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
-m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
-AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
-if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
-	AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
-fi
-if test -n "$PKG_CONFIG"; then
-	_pkg_min_version=m4_default([$1], [0.9.0])
-	AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
-	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
-		AC_MSG_RESULT([yes])
-	else
-		AC_MSG_RESULT([no])
-		PKG_CONFIG=""
-	fi
-		
-fi[]dnl
-])# PKG_PROG_PKG_CONFIG
-
-# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
-#
-# Check to see whether a particular set of modules exists.  Similar
-# to PKG_CHECK_MODULES(), but does not set variables or print errors.
-#
-#
-# Similar to PKG_CHECK_MODULES, make sure that the first instance of
-# this or PKG_CHECK_MODULES is called, or make sure to call
-# PKG_CHECK_EXISTS manually
-# --------------------------------------------------------------
-AC_DEFUN([PKG_CHECK_EXISTS],
-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
-if test -n "$PKG_CONFIG" && \
-    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
-  m4_ifval([$2], [$2], [:])
-m4_ifvaln([$3], [else
-  $3])dnl
-fi])
-
-
-# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
-# ---------------------------------------------
-m4_define([_PKG_CONFIG],
-[if test -n "$$1"; then
-    pkg_cv_[]$1="$$1"
- elif test -n "$PKG_CONFIG"; then
-    PKG_CHECK_EXISTS([$3],
-                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
-		     [pkg_failed=yes])
- else
-    pkg_failed=untried
-fi[]dnl
-])# _PKG_CONFIG
-
-# _PKG_SHORT_ERRORS_SUPPORTED
-# -----------------------------
-AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
-        _pkg_short_errors_supported=yes
-else
-        _pkg_short_errors_supported=no
-fi[]dnl
-])# _PKG_SHORT_ERRORS_SUPPORTED
-
-
-# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
-# [ACTION-IF-NOT-FOUND])
-#
-#
-# Note that if there is a possibility the first call to
-# PKG_CHECK_MODULES might not happen, you should be sure to include an
-# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
-#
-#
-# --------------------------------------------------------------
-AC_DEFUN([PKG_CHECK_MODULES],
-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
-AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
-AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
-
-pkg_failed=no
-AC_MSG_CHECKING([for $1])
-
-_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
-_PKG_CONFIG([$1][_LIBS], [libs], [$2])
-
-m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
-and $1[]_LIBS to avoid the need to call pkg-config.
-See the pkg-config man page for more details.])
-
-if test $pkg_failed = yes; then
-        _PKG_SHORT_ERRORS_SUPPORTED
-        if test $_pkg_short_errors_supported = yes; then
-	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
-        else 
-	        $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
-        fi
-	# Put the nasty error message in config.log where it belongs
-	echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
-
-	ifelse([$4], , [AC_MSG_ERROR(dnl
-[Package requirements ($2) were not met:
-
-$$1_PKG_ERRORS
-
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
-installed software in a non-standard prefix.
-
-_PKG_TEXT
-])],
-		[AC_MSG_RESULT([no])
-                $4])
-elif test $pkg_failed = untried; then
-	ifelse([$4], , [AC_MSG_FAILURE(dnl
-[The pkg-config script could not be found or is too old.  Make sure it
-is in your PATH or set the PKG_CONFIG environment variable to the full
-path to pkg-config.
-
-_PKG_TEXT
-
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],
-		[$4])
-else
-	$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
-	$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
-        AC_MSG_RESULT([yes])
-	ifelse([$3], , :, [$3])
-fi[]dnl
-])# PKG_CHECK_MODULES
-
 m4_include([m4/intltool.m4])
diff -pruN 2.30.2-1/ChangeLog 2.30.4-1/ChangeLog
--- 2.30.2-1/ChangeLog	2010-06-22 03:18:41.000000000 +0100
+++ 2.30.4-1/ChangeLog	2010-11-17 11:07:51.000000000 +0000
@@ -1,6 +1,204 @@
+commit 20007ad2324df8f050da6b614521d2e9e96f0e71
+Author: Gheyret T.Kenji <gheyret@gmail.com>
+Date:   2010-11-13
+
+    Added UG translation
+
+M	po/ug.po
+
+commit 5f9b6fbc21420d5b28339c35b0879ac4406bbb9e
+Author: Xandru Armesto <xandru@softastur.org>
+Date:	2010-11-02
+
+    Updated asturian translation
+
+M	po/ast.po
+
+commit 1c00bb3fc81bbe17db7462d35b5cd7133aeb6f06
+Author: Mahyar Moghimi <mahyar.moqimi@gmail.com>
+Date:	2010-10-30
+
+    added fa language
+
+M	po/LINGUAS
+
+commit 236969d72e43ee3dd20f901cf04d6d61380e47ab
+Author: Mahyar Moghimi <mahyar.moqimi@gmail.com>
+Date:	2010-10-30
+
+    Update persian translation-minor change
+
+A	po/fa.po
+
+commit bb5dec37731a3b5959a55d73e8a7f04368f4f1a8
+Author: Carles Ferrando <carles.ferrando@gmail.com>
+Date:	2010-10-29
+
+    Updated Catalan (Valencian) translation
+
+M	po/ca@valencia.po
+
+commit 1fc01935495c4322846d6a30b2fd585d380a3ff5
+Author: Erdal Ronahi <erdal.ronahi@gmail.com>
+Date:	2010-10-26
+
+    Updated Kurdish translations, translations by Omer Ensari
+
+M	po/ku.po
+
+commit de03351f6a12bdcb7405aaba03319bfc803e4fd6
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-10-09
+
+    build: Update git.mk from pango
+
+M	git.mk
+
+commit d4145ebb10bca342ce29d3b50cff03988fd90baf
+Author: Gheyret Kenji <gheyret@hotmail.com>
+Date:	2010-10-01
+
+    Added UG translation
+
+M	po/ug.po
+
+commit d5a549165a0e9a7989e465b77702255a18e194b2
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-09-20
+
+    build: Update all Makefile.am to more recent standards
+
+M	Makefile.am
+M	Pessulus/Makefile.am
+M	data/Makefile.am
+
+commit 7c13e5a11a512259421b8ba401989d5923853fb1
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-09-20
+
+    misc: Update instructions for commit messages
+
+    We're switching to "tag:" instead of "[tag]".
+
+M	ChangeLog
+
+commit 03479dcbcd4bcffc91345a0cf252391007afd773
+Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
+Date:	2010-09-20
+
+    Updated Japanese translation
+
+M	po/ja.po
+
+commit f00105f9881a59444bef8a2f41bb3602ed081eb1
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-09-14
+
+    release: post-release bump to 2.30.4
+
+M	configure.ac
+
+commit f163575c115cd21c6a2bc028a56f9ea47b0998bb
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-09-14
+
+    release: 2.30.3
+
+M	NEWS
+
+commit 65cc8e33a3261b19d14fc3635f0961a6f5845c84
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-09-08
+
+    [misc] Update HACKING, MAINTAINERS, README
+
+    Nothing new, but make sure this is up-to-date.
+
+    Also tweak a bit autogen.sh and Makefile.am to make them look
+    similar in
+    all my modules.
+
+M	HACKING
+M	MAINTAINERS
+M	Makefile.am
+M	README
+M	autogen.sh
+
+commit 577f1bfc782cfda16110bfda2f5052ed66431947
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-09-08
+
+    [misc] Update license files to latest text
+
+    Note that this doesn't change the license. The license text was
+    updated
+    for the latest FSF address, for example.
+
+M	COPYING
+
+commit ca4c27997edcbc9a7582c97bd709b626b4839e5e
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-09-08
+
+    [build] Require intltool 0.40.0 and do not dist intltool files
+
+M	Makefile.am
+M	configure.ac
+
+commit 52289655c1ef70e2bc62501432e6434925a406d0
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-09-08
+
+    [build] Update git.mk from pango
+
+M	git.mk
+
+commit e7c9ef6b98ce21b8f4e6f7eadd4ed4cf07ae7ffa
+Author: Dirgita <dirgitadevina@yahoo.co.id>
+Date:	2010-08-31
+
+    Updated Indonesian translation
+
+M	po/id.po
+
+commit 2e887380c0022ca909bd51dc39dc281e28c2c34f
+Author: Fran Diéguez <fran.dieguez@mabishu.com>
+Date:	2010-07-21
+
+    Updated Galician translations
+
+M	po/gl.po
+
+commit ab785e5930a87552f264675c082c60be1989bd43
+Author: Umarzuki Bin Mochlis Moktar <umarzuki@gmail.com>
+Date:	2010-07-08
+
+    Added Malay translation for pessulus
+
+M	po/LINGUAS
+A	po/ms.po
+
+commit 346b5ad001e3b12cfe0eb5dd3a81f636c5d1a3c8
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-06-22
+
+    [release] post-release bump to 2.30.3
+
+M	configure.ac
+
+commit 7e6cfe4a1d411662547180cfba316c2feda626fe
+Author: Vincent Untz <vuntz@gnome.org>
+Date:	2010-06-22
+
+    [release] 2.30.2
+
+M	NEWS
+M	README
+M	configure.ac
+
 commit 0cb036921671fa72881955ff3cfc447841629d29
 Author: Vincent Untz <vuntz@gnome.org>
-Date:   2010-06-22
+Date:	2010-06-22
 
     [pessulus] Mostly revert 72b2dbcd and do it the right way
 
diff -pruN 2.30.2-1/configure 2.30.4-1/configure
--- 2.30.2-1/configure	2011-02-09 12:31:45.000000000 +0000
+++ 2.30.4-1/configure	2011-02-09 12:25:41.000000000 +0000
@@ -1,13 +1,13 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.65 for pessulus 2.30.2.
+# Generated by GNU Autoconf 2.67 for pessulus 2.30.4.
 #
 # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus>.
 #
 #
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
-# Inc.
+# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
+# Foundation, Inc.
 #
 #
 # This configure script is free software; the Free Software Foundation
@@ -320,7 +320,7 @@ $as_echo X"$as_dir" |
       test -d "$as_dir" && break
     done
     test -z "$as_dirs" || eval "mkdir $as_dirs"
-  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 
 
 } # as_fn_mkdir_p
@@ -360,19 +360,19 @@ else
 fi # as_fn_arith
 
 
-# as_fn_error ERROR [LINENO LOG_FD]
-# ---------------------------------
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with status $?, using 1 if that was 0.
+# script with STATUS, using 1 if that was 0.
 as_fn_error ()
 {
-  as_status=$?; test $as_status -eq 0 && as_status=1
-  if test "$3"; then
-    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
+  as_status=$1; test $as_status -eq 0 && as_status=1
+  if test "$4"; then
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
   fi
-  $as_echo "$as_me: error: $1" >&2
+  $as_echo "$as_me: error: $2" >&2
   as_fn_exit $as_status
 } # as_fn_error
 
@@ -534,7 +534,7 @@ test -n "$DJDIR" || exec 7<&0 </dev/null
 exec 6>&1
 
 # Name of the host.
-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
 # so uname gets run too.
 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
 
@@ -553,8 +553,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='pessulus'
 PACKAGE_TARNAME='pessulus'
-PACKAGE_VERSION='2.30.2'
-PACKAGE_STRING='pessulus 2.30.2'
+PACKAGE_VERSION='2.30.4'
+PACKAGE_STRING='pessulus 2.30.4'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus'
 PACKAGE_URL=''
 
@@ -818,8 +818,9 @@ do
   fi
 
   case $ac_option in
-  *=*)	ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
-  *)	ac_optarg=yes ;;
+  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
+  *=)   ac_optarg= ;;
+  *)    ac_optarg=yes ;;
   esac
 
   # Accept the important Cygnus configure options, so we can diagnose typos.
@@ -864,7 +865,7 @@ do
     ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-      as_fn_error "invalid feature name: $ac_useropt"
+      as_fn_error $? "invalid feature name: $ac_useropt"
     ac_useropt_orig=$ac_useropt
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
     case $ac_user_opts in
@@ -890,7 +891,7 @@ do
     ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-      as_fn_error "invalid feature name: $ac_useropt"
+      as_fn_error $? "invalid feature name: $ac_useropt"
     ac_useropt_orig=$ac_useropt
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
     case $ac_user_opts in
@@ -1094,7 +1095,7 @@ do
     ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-      as_fn_error "invalid package name: $ac_useropt"
+      as_fn_error $? "invalid package name: $ac_useropt"
     ac_useropt_orig=$ac_useropt
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
     case $ac_user_opts in
@@ -1110,7 +1111,7 @@ do
     ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-      as_fn_error "invalid package name: $ac_useropt"
+      as_fn_error $? "invalid package name: $ac_useropt"
     ac_useropt_orig=$ac_useropt
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
     case $ac_user_opts in
@@ -1140,8 +1141,8 @@ do
   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
     x_libraries=$ac_optarg ;;
 
-  -*) as_fn_error "unrecognized option: \`$ac_option'
-Try \`$0 --help' for more information."
+  -*) as_fn_error $? "unrecognized option: \`$ac_option'
+Try \`$0 --help' for more information"
     ;;
 
   *=*)
@@ -1149,7 +1150,7 @@ Try \`$0 --help' for more information."
     # Reject names that are not valid shell variable names.
     case $ac_envvar in #(
       '' | [0-9]* | *[!_$as_cr_alnum]* )
-      as_fn_error "invalid variable name: \`$ac_envvar'" ;;
+      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
     esac
     eval $ac_envvar=\$ac_optarg
     export $ac_envvar ;;
@@ -1167,13 +1168,13 @@ done
 
 if test -n "$ac_prev"; then
   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
-  as_fn_error "missing argument to $ac_option"
+  as_fn_error $? "missing argument to $ac_option"
 fi
 
 if test -n "$ac_unrecognized_opts"; then
   case $enable_option_checking in
     no) ;;
-    fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
+    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
     *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
   esac
 fi
@@ -1196,7 +1197,7 @@ do
     [\\/$]* | ?:[\\/]* )  continue;;
     NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
   esac
-  as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
+  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
 done
 
 # There might be people who depend on the old broken behavior: `$host'
@@ -1210,8 +1211,8 @@ target=$target_alias
 if test "x$host_alias" != x; then
   if test "x$build_alias" = x; then
     cross_compiling=maybe
-    $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
-    If a cross compiler is detected then cross compile mode will be used." >&2
+    $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
+    If a cross compiler is detected then cross compile mode will be used" >&2
   elif test "x$build_alias" != "x$host_alias"; then
     cross_compiling=yes
   fi
@@ -1226,9 +1227,9 @@ test "$silent" = yes && exec 6>/dev/null
 ac_pwd=`pwd` && test -n "$ac_pwd" &&
 ac_ls_di=`ls -di .` &&
 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
-  as_fn_error "working directory cannot be determined"
+  as_fn_error $? "working directory cannot be determined"
 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
-  as_fn_error "pwd does not report name of working directory"
+  as_fn_error $? "pwd does not report name of working directory"
 
 
 # Find the source files, if location was not specified.
@@ -1267,11 +1268,11 @@ else
 fi
 if test ! -r "$srcdir/$ac_unique_file"; then
   test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
-  as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
+  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
 fi
 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 ac_abs_confdir=`(
-	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
+	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
 	pwd)`
 # When building in place, set srcdir=.
 if test "$ac_abs_confdir" = "$ac_pwd"; then
@@ -1297,7 +1298,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures pessulus 2.30.2 to adapt to many kinds of systems.
+\`configure' configures pessulus 2.30.4 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1311,7 +1312,7 @@ Configuration:
       --help=short        display options specific to this package
       --help=recursive    display the short help of all the included packages
   -V, --version           display version information and exit
-  -q, --quiet, --silent   do not print \`checking...' messages
+  -q, --quiet, --silent   do not print \`checking ...' messages
       --cache-file=FILE   cache test results in FILE [disabled]
   -C, --config-cache      alias for \`--cache-file=config.cache'
   -n, --no-create         do not create output files
@@ -1363,7 +1364,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of pessulus 2.30.2:";;
+     short | recursive ) echo "Configuration of pessulus 2.30.4:";;
    esac
   cat <<\_ACEOF
 
@@ -1461,10 +1462,10 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-pessulus configure 2.30.2
-generated by GNU Autoconf 2.65
+pessulus configure 2.30.4
+generated by GNU Autoconf 2.67
 
-Copyright (C) 2009 Free Software Foundation, Inc.
+Copyright (C) 2010 Free Software Foundation, Inc.
 This configure script is free software; the Free Software Foundation
 gives unlimited permission to copy, distribute and modify it.
 _ACEOF
@@ -1534,7 +1535,7 @@ $as_echo "$ac_try_echo"; } >&5
     mv -f conftest.er1 conftest.err
   fi
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; } >/dev/null && {
+  test $ac_status = 0; } > conftest.i && {
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 	 test ! -s conftest.err
        }; then :
@@ -1600,10 +1601,10 @@ fi
 ac_fn_c_check_header_mongrel ()
 {
   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-  if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+  if eval "test \"\${$3+set}\"" = set; then :
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval "test \"\${$3+set}\"" = set; then :
   $as_echo_n "(cached) " >&6
 fi
 eval ac_res=\$$3
@@ -1639,7 +1640,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
 else
   ac_header_preproc=no
 fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
 $as_echo "$ac_header_preproc" >&6; }
 
@@ -1662,17 +1663,15 @@ $as_echo "$as_me: WARNING: $2: see the A
 $as_echo "$as_me: WARNING: $2:     section \"Present But Cannot Be Compiled\"" >&2;}
     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
-( cat <<\_ASBOX
-## ----------------------------------------------------------------------- ##
+( $as_echo "## ----------------------------------------------------------------------- ##
 ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus ##
-## ----------------------------------------------------------------------- ##
-_ASBOX
+## ----------------------------------------------------------------------- ##"
      ) | sed "s/^/$as_me: WARNING:     /" >&2
     ;;
 esac
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval "test \"\${$3+set}\"" = set; then :
   $as_echo_n "(cached) " >&6
 else
   eval "$3=\$ac_header_compiler"
@@ -1694,7 +1693,7 @@ ac_fn_c_check_header_compile ()
   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval "test \"\${$3+set}\"" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1770,7 +1769,7 @@ ac_fn_c_check_func ()
   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval "test \"\${$3+set}\"" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1832,8 +1831,8 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by pessulus $as_me 2.30.2, which was
-generated by GNU Autoconf 2.65.  Invocation command line was
+It was created by pessulus $as_me 2.30.4, which was
+generated by GNU Autoconf 2.67.  Invocation command line was
 
   $ $0 $@
 
@@ -1943,11 +1942,9 @@ trap 'exit_status=$?
   {
     echo
 
-    cat <<\_ASBOX
-## ---------------- ##
+    $as_echo "## ---------------- ##
 ## Cache variables. ##
-## ---------------- ##
-_ASBOX
+## ---------------- ##"
     echo
     # The following way of writing the cache mishandles newlines in values,
 (
@@ -1981,11 +1978,9 @@ $as_echo "$as_me: WARNING: cache variabl
 )
     echo
 
-    cat <<\_ASBOX
-## ----------------- ##
+    $as_echo "## ----------------- ##
 ## Output variables. ##
-## ----------------- ##
-_ASBOX
+## ----------------- ##"
     echo
     for ac_var in $ac_subst_vars
     do
@@ -1998,11 +1993,9 @@ _ASBOX
     echo
 
     if test -n "$ac_subst_files"; then
-      cat <<\_ASBOX
-## ------------------- ##
+      $as_echo "## ------------------- ##
 ## File substitutions. ##
-## ------------------- ##
-_ASBOX
+## ------------------- ##"
       echo
       for ac_var in $ac_subst_files
       do
@@ -2016,11 +2009,9 @@ _ASBOX
     fi
 
     if test -s confdefs.h; then
-      cat <<\_ASBOX
-## ----------- ##
+      $as_echo "## ----------- ##
 ## confdefs.h. ##
-## ----------- ##
-_ASBOX
+## ----------- ##"
       echo
       cat confdefs.h
       echo
@@ -2075,7 +2066,12 @@ _ACEOF
 ac_site_file1=NONE
 ac_site_file2=NONE
 if test -n "$CONFIG_SITE"; then
-  ac_site_file1=$CONFIG_SITE
+  # We do not want a PATH search for config.site.
+  case $CONFIG_SITE in #((
+    -*)  ac_site_file1=./$CONFIG_SITE;;
+    */*) ac_site_file1=$CONFIG_SITE;;
+    *)   ac_site_file1=./$CONFIG_SITE;;
+  esac
 elif test "x$prefix" != xNONE; then
   ac_site_file1=$prefix/share/config.site
   ac_site_file2=$prefix/etc/config.site
@@ -2090,7 +2086,11 @@ do
     { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
     sed 's/^/| /' "$ac_site_file" >&5
-    . "$ac_site_file"
+    . "$ac_site_file" \
+      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "failed to load site script $ac_site_file
+See \`config.log' for more details" "$LINENO" 5 ; }
   fi
 done
 
@@ -2166,7 +2166,7 @@ if $ac_cache_corrupted; then
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
   { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
-  as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
+  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
 fi
 ## -------------------- ##
 ## Main body of script. ##
@@ -2184,16 +2184,22 @@ am__api_version='1.11'
 
 ac_aux_dir=
 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
-  for ac_t in install-sh install.sh shtool; do
-    if test -f "$ac_dir/$ac_t"; then
-      ac_aux_dir=$ac_dir
-      ac_install_sh="$ac_aux_dir/$ac_t -c"
-      break 2
-    fi
-  done
+  if test -f "$ac_dir/install-sh"; then
+    ac_aux_dir=$ac_dir
+    ac_install_sh="$ac_aux_dir/install-sh -c"
+    break
+  elif test -f "$ac_dir/install.sh"; then
+    ac_aux_dir=$ac_dir
+    ac_install_sh="$ac_aux_dir/install.sh -c"
+    break
+  elif test -f "$ac_dir/shtool"; then
+    ac_aux_dir=$ac_dir
+    ac_install_sh="$ac_aux_dir/shtool install -c"
+    break
+  fi
 done
 if test -z "$ac_aux_dir"; then
-  as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
+  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
 fi
 
 # These three variables are undocumented and unsupported,
@@ -2309,11 +2315,11 @@ am_lf='
 '
 case `pwd` in
   *[\\\"\#\$\&\'\`$am_lf]*)
-    as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
+    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;;
 esac
 case $srcdir in
   *[\\\"\#\$\&\'\`$am_lf\ \	]*)
-    as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
+    as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;;
 esac
 
 # Do `set' in a subshell so we don't clobber the current shell's
@@ -2335,7 +2341,7 @@ if (
       # if, for instance, CONFIG_SHELL is bash and it inherits a
       # broken ls alias from the environment.  This has actually
       # happened.  Such a system could not be considered "sane".
-      as_fn_error "ls -t appears to fail.  Make sure there is not a broken
+      as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
 alias in your environment" "$LINENO" 5
    fi
 
@@ -2345,7 +2351,7 @@ then
    # Ok.
    :
 else
-   as_fn_error "newly created file is older than distributed files!
+   as_fn_error $? "newly created file is older than distributed files!
 Check your system clock" "$LINENO" 5
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
@@ -2583,7 +2589,7 @@ done
 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
 set x ${MAKE-make}
 ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat >conftest.make <<\_ACEOF
@@ -2591,7 +2597,7 @@ SHELL = /bin/sh
 all:
 	@echo '@@@%%%=$(MAKE)=@@@%%%'
 _ACEOF
-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
 case `${MAKE-make} -f conftest.make 2>/dev/null` in
   *@@@%%%=?*=@@@%%%*)
     eval ac_cv_prog_make_${ac_make}_set=yes;;
@@ -2625,7 +2631,7 @@ if test "`cd $srcdir && pwd`" != "`pwd`"
   am__isrc=' -I$(srcdir)'
   # test to see if srcdir already configured
   if test -f $srcdir/config.status; then
-    as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
+    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
   fi
 fi
 
@@ -2641,7 +2647,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='pessulus'
- VERSION='2.30.2'
+ VERSION='2.30.4'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3091,8 +3097,8 @@ fi
 
 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "no acceptable C compiler found in \$PATH
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "no acceptable C compiler found in \$PATH
+See \`config.log' for more details" "$LINENO" 5 ; }
 
 # Provide some information about the compiler.
 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
@@ -3206,9 +3212,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-{ as_fn_set_status 77
-as_fn_error "C compiler cannot create executables
-See \`config.log' for more details." "$LINENO" 5; }; }
+as_fn_error 77 "C compiler cannot create executables
+See \`config.log' for more details" "$LINENO" 5 ; }
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 $as_echo "yes" >&6; }
@@ -3250,8 +3255,8 @@ done
 else
   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot compute suffix of executables: cannot compile and link
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot compute suffix of executables: cannot compile and link
+See \`config.log' for more details" "$LINENO" 5 ; }
 fi
 rm -f conftest conftest$ac_cv_exeext
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
@@ -3308,9 +3313,9 @@ $as_echo "$ac_try_echo"; } >&5
     else
 	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot run C compiled programs.
+as_fn_error $? "cannot run C compiled programs.
 If you meant to cross compile, use \`--host'.
-See \`config.log' for more details." "$LINENO" 5; }
+See \`config.log' for more details" "$LINENO" 5 ; }
     fi
   fi
 fi
@@ -3361,8 +3366,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot compute suffix of object files: cannot compile
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot compute suffix of object files: cannot compile
+See \`config.log' for more details" "$LINENO" 5 ; }
 fi
 rm -f conftest.$ac_cv_objext conftest.$ac_ext
 fi
@@ -3752,7 +3757,7 @@ else
   # Broken: fails on valid input.
 continue
 fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
 
   # OK, works on sane cases.  Now check whether nonexistent headers
   # can be detected and how.
@@ -3768,11 +3773,11 @@ else
 ac_preproc_ok=:
 break
 fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
 
 done
 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.i conftest.err conftest.$ac_ext
 if $ac_preproc_ok; then :
   break
 fi
@@ -3811,7 +3816,7 @@ else
   # Broken: fails on valid input.
 continue
 fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
 
   # OK, works on sane cases.  Now check whether nonexistent headers
   # can be detected and how.
@@ -3827,18 +3832,18 @@ else
 ac_preproc_ok=:
 break
 fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
 
 done
 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.i conftest.err conftest.$ac_ext
 if $ac_preproc_ok; then :
 
 else
   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "C preprocessor \"$CPP\" fails sanity check
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
+See \`config.log' for more details" "$LINENO" 5 ; }
 fi
 
 ac_ext=c
@@ -3899,7 +3904,7 @@ esac
   done
 IFS=$as_save_IFS
   if test -z "$ac_cv_path_GREP"; then
-    as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+    as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
   fi
 else
   ac_cv_path_GREP=$GREP
@@ -3965,7 +3970,7 @@ esac
   done
 IFS=$as_save_IFS
   if test -z "$ac_cv_path_EGREP"; then
-    as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+    as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
   fi
 else
   ac_cv_path_EGREP=$EGREP
@@ -4097,8 +4102,7 @@ do :
   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
 "
-eval as_val=\$$as_ac_Header
-   if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
   cat >>confdefs.h <<_ACEOF
 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 _ACEOF
@@ -4830,24 +4834,24 @@ $as_echo "$USE_NLS" >&6; }
 
 case "$am__api_version" in
     1.01234)
-	as_fn_error "Automake 1.5 or newer is required to use intltool" "$LINENO" 5
+	as_fn_error $? "Automake 1.5 or newer is required to use intltool" "$LINENO" 5
     ;;
     *)
     ;;
 esac
 
-if test -n "0.35.0"; then
-    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.35.0" >&5
-$as_echo_n "checking for intltool >= 0.35.0... " >&6; }
+if test -n "0.40.0"; then
+    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.40.0" >&5
+$as_echo_n "checking for intltool >= 0.40.0... " >&6; }
 
-    INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
+    INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.40.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
     INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
     INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
 
     { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5
 $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; }
     test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
-	as_fn_error "Your intltool is too old.  You need intltool 0.35.0 or later." "$LINENO" 5
+	as_fn_error $? "Your intltool is too old.  You need intltool 0.40.0 or later." "$LINENO" 5
 fi
 
 # Extract the first word of "intltool-update", so it can be a program name with args.
@@ -4971,7 +4975,7 @@ fi
 
 
 if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
-    as_fn_error "The intltool scripts were not found. Please install intltool." "$LINENO" 5
+    as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5
 fi
 
   INTLTOOL_DESKTOP_RULE='%.desktop:   %.desktop.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
@@ -5253,13 +5257,13 @@ fi
 
 
 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
-    as_fn_error "GNU gettext tools not found; required for intltool" "$LINENO" 5
+    as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5
 fi
 xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
 mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
 mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
 if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
-    as_fn_error "GNU gettext tools not found; required for intltool" "$LINENO" 5
+    as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5
 fi
 
 # Extract the first word of "perl", so it can be a program name with args.
@@ -5303,13 +5307,13 @@ fi
 
 
 if test -z "$INTLTOOL_PERL"; then
-   as_fn_error "perl not found" "$LINENO" 5
+   as_fn_error $? "perl not found" "$LINENO" 5
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5
 $as_echo_n "checking for perl >= 5.8.1... " >&6; }
 $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
 if test $? -ne 0; then
-   as_fn_error "perl 5.8.1 is required for intltool" "$LINENO" 5
+   as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5
 else
    IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`"
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5
@@ -5322,7 +5326,7 @@ $as_echo_n "checking for XML::Parser... 
        { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
 $as_echo "ok" >&6; }
    else
-       as_fn_error "XML::Parser perl module is required for intltool" "$LINENO" 5
+       as_fn_error $? "XML::Parser perl module is required for intltool" "$LINENO" 5
    fi
 fi
 
@@ -5427,7 +5431,7 @@ test -n "$PYTHON" || PYTHON=":"
 
 
   if test "$PYTHON" = :; then
-      as_fn_error "no suitable Python interpreter found" "$LINENO" 5
+      as_fn_error $? "no suitable Python interpreter found" "$LINENO" 5
   else
 
 
@@ -5726,6 +5730,7 @@ DEFS=`sed -n "$ac_script" confdefs.h`
 
 ac_libobjs=
 ac_ltlibobjs=
+U=
 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
   # 1. Remove the extension, and $U if already installed.
   ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
@@ -5749,15 +5754,15 @@ else
 fi
 
 if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
-  as_fn_error "conditional \"MAINTAINER_MODE\" was never defined.
+  as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
-  as_fn_error "conditional \"AMDEP\" was never defined.
+  as_fn_error $? "conditional \"AMDEP\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
-  as_fn_error "conditional \"am__fastdepCC\" was never defined.
+  as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 
@@ -5911,19 +5916,19 @@ export LANGUAGE
 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
 
-# as_fn_error ERROR [LINENO LOG_FD]
-# ---------------------------------
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with status $?, using 1 if that was 0.
+# script with STATUS, using 1 if that was 0.
 as_fn_error ()
 {
-  as_status=$?; test $as_status -eq 0 && as_status=1
-  if test "$3"; then
-    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
+  as_status=$1; test $as_status -eq 0 && as_status=1
+  if test "$4"; then
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
   fi
-  $as_echo "$as_me: error: $1" >&2
+  $as_echo "$as_me: error: $2" >&2
   as_fn_exit $as_status
 } # as_fn_error
 
@@ -6119,7 +6124,7 @@ $as_echo X"$as_dir" |
       test -d "$as_dir" && break
     done
     test -z "$as_dirs" || eval "mkdir $as_dirs"
-  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 
 
 } # as_fn_mkdir_p
@@ -6172,8 +6177,8 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_wri
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by pessulus $as_me 2.30.2, which was
-generated by GNU Autoconf 2.65.  Invocation command line was
+This file was extended by pessulus $as_me 2.30.4, which was
+generated by GNU Autoconf 2.67.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
   CONFIG_HEADERS  = $CONFIG_HEADERS
@@ -6229,11 +6234,11 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-pessulus config.status 2.30.2
-configured by $0, generated by GNU Autoconf 2.65,
+pessulus config.status 2.30.4
+configured by $0, generated by GNU Autoconf 2.67,
   with options \\"\$ac_cs_config\\"
 
-Copyright (C) 2009 Free Software Foundation, Inc.
+Copyright (C) 2010 Free Software Foundation, Inc.
 This config.status script is free software; the Free Software Foundation
 gives unlimited permission to copy, distribute and modify it."
 
@@ -6251,11 +6256,16 @@ ac_need_defaults=:
 while test $# != 0
 do
   case $1 in
-  --*=*)
+  --*=?*)
     ac_option=`expr "X$1" : 'X\([^=]*\)='`
     ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
     ac_shift=:
     ;;
+  --*=)
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
+    ac_optarg=
+    ac_shift=:
+    ;;
   *)
     ac_option=$1
     ac_optarg=$2
@@ -6277,6 +6287,7 @@ do
     $ac_shift
     case $ac_optarg in
     *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+    '') as_fn_error $? "missing file argument" ;;
     esac
     as_fn_append CONFIG_FILES " '$ac_optarg'"
     ac_need_defaults=false;;
@@ -6287,7 +6298,7 @@ do
     ac_cs_silent=: ;;
 
   # This is an error.
-  -*) as_fn_error "unrecognized option: \`$1'
+  -*) as_fn_error $? "unrecognized option: \`$1'
 Try \`$0 --help' for more information." ;;
 
   *) as_fn_append ac_config_targets " $1"
@@ -6351,7 +6362,7 @@ do
     "data/pessulus.desktop.in") CONFIG_FILES="$CONFIG_FILES data/pessulus.desktop.in" ;;
     "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
 
-  *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
   esac
 done
 
@@ -6388,7 +6399,7 @@ $debug ||
 {
   tmp=./conf$$-$RANDOM
   (umask 077 && mkdir "$tmp")
-} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
 
 # Set up the scripts for CONFIG_FILES section.
 # No need to generate them if there are no CONFIG_FILES.
@@ -6405,7 +6416,7 @@ if test "x$ac_cr" = x; then
 fi
 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
-  ac_cs_awk_cr='\r'
+  ac_cs_awk_cr='\\r'
 else
   ac_cs_awk_cr=$ac_cr
 fi
@@ -6419,18 +6430,18 @@ _ACEOF
   echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
   echo "_ACEOF"
 } >conf$$subs.sh ||
-  as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
-ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
+  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
 ac_delim='%!_!# '
 for ac_last_try in false false false false false :; do
   . ./conf$$subs.sh ||
-    as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
   ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
   if test $ac_delim_n = $ac_delim_num; then
     break
   elif $ac_last_try; then
-    as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
   else
     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
   fi
@@ -6519,20 +6530,28 @@ if sed "s/$ac_cr//" < /dev/null > /dev/n
 else
   cat
 fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
-  || as_fn_error "could not setup config files machinery" "$LINENO" 5
+  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
 _ACEOF
 
-# VPATH may cause trouble with some makes, so we remove $(srcdir),
-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
 # trailing colons and then remove the whole line if VPATH becomes empty
 # (actually we leave an empty line to preserve line numbers).
 if test "x$srcdir" = x.; then
-  ac_vpsub='/^[	 ]*VPATH[	 ]*=/{
-s/:*\$(srcdir):*/:/
-s/:*\${srcdir}:*/:/
-s/:*@srcdir@:*/:/
-s/^\([^=]*=[	 ]*\):*/\1/
+  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
+h
+s///
+s/^/:/
+s/[	 ]*$/:/
+s/:\$(srcdir):/:/g
+s/:\${srcdir}:/:/g
+s/:@srcdir@:/:/g
+s/^:*//
 s/:*$//
+x
+s/\(=[	 ]*\).*/\1/
+G
+s/\n//
 s/^[^=]*=[	 ]*$//
 }'
 fi
@@ -6550,7 +6569,7 @@ do
   esac
   case $ac_mode$ac_tag in
   :[FHL]*:*);;
-  :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
+  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;;
   :[FH]-) ac_tag=-:-;;
   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
   esac
@@ -6578,7 +6597,7 @@ do
 	   [\\/$]*) false;;
 	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 	   esac ||
-	   as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;;
       esac
       case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
       as_fn_append ac_file_inputs " '$ac_f'"
@@ -6605,7 +6624,7 @@ $as_echo "$as_me: creating $ac_file" >&6
 
     case $ac_tag in
     *:-:* | *:-) cat >"$tmp/stdin" \
-      || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5  ;;
     esac
     ;;
   esac
@@ -6742,22 +6761,22 @@ s&@MKDIR_P@&$ac_MKDIR_P&;t t
 $ac_datarootdir_hack
 "
 eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
-  || as_fn_error "could not create $ac_file" "$LINENO" 5
+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 
 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
   { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
   { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined.  Please make sure it is defined." >&5
+which seems to be undefined.  Please make sure it is defined" >&5
 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined.  Please make sure it is defined." >&2;}
+which seems to be undefined.  Please make sure it is defined" >&2;}
 
   rm -f "$tmp/stdin"
   case $ac_file in
   -) cat "$tmp/out" && rm -f "$tmp/out";;
   *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
   esac \
-  || as_fn_error "could not create $ac_file" "$LINENO" 5
+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  ;;
 
 
@@ -6868,7 +6887,7 @@ $as_echo X"$file" |
       esac ;;
     "po/stamp-it":C)
     if  ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then
-       as_fn_error "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5
+       as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5
     fi
     rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp"
     >"po/stamp-it.tmp"
@@ -6896,7 +6915,7 @@ _ACEOF
 ac_clean_files=$ac_clean_files_save
 
 test $ac_write_fail = 0 ||
-  as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
+  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
 
 
 # configure is writing to config.log, and then calls config.status.
@@ -6917,7 +6936,7 @@ if test "$no_create" != yes; then
   exec 5>>config.log
   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
   # would make configure fail if this is the last instruction.
-  $ac_cs_success || as_fn_exit $?
+  $ac_cs_success || as_fn_exit 1
 fi
 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
diff -pruN 2.30.2-1/configure.ac 2.30.4-1/configure.ac
--- 2.30.2-1/configure.ac	2011-02-09 12:31:45.000000000 +0000
+++ 2.30.4-1/configure.ac	2011-02-09 12:25:41.000000000 +0000
@@ -1,5 +1,5 @@
 AC_PREREQ(2.53)
-AC_INIT([pessulus], [2.30.2],
+AC_INIT([pessulus], [2.30.4],
         [http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus])
 AC_CONFIG_SRCDIR(pessulus.in)
 AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2])
@@ -15,7 +15,7 @@ GETTEXT_PACKAGE=pessulus
 AC_SUBST(GETTEXT_PACKAGE)
 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext package])
 AM_GLIB_GNU_GETTEXT
-IT_PROG_INTLTOOL([0.35.0])
+IT_PROG_INTLTOOL([0.40.0])
 AM_PATH_PYTHON
 AC_PATH_PROG(GCONFTOOL, gconftool-2)
 
diff -pruN 2.30.2-1/COPYING 2.30.4-1/COPYING
--- 2.30.2-1/COPYING	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/COPYING	2010-09-08 18:24:49.000000000 +0100
@@ -1,12 +1,12 @@
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 2, June 1991
 
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-                 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 
-			    Preamble
+                            Preamble
 
   The licenses for most software are designed to take away your
 freedom to share and change it.  By contrast, the GNU General Public
@@ -15,7 +15,7 @@ software--to make sure the software is f
 General Public License applies to most of the Free Software
 Foundation's software and to any other program whose authors commit to
 using it.  (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.)  You can apply it to
+the GNU Lesser General Public License instead.)  You can apply it to
 your programs, too.
 
   When we speak of free software, we are referring to freedom, not
@@ -55,8 +55,8 @@ patent must be licensed for everyone's f
 
   The precise terms and conditions for copying, distribution and
 modification follow.
-
-		    GNU GENERAL PUBLIC LICENSE
+
+                    GNU GENERAL PUBLIC LICENSE
    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
 
   0. This License applies to any program or other work which contains
@@ -110,7 +110,7 @@ above, provided that you also meet all o
     License.  (Exception: if the Program itself is interactive but
     does not normally print such an announcement, your work based on
     the Program is not required to print an announcement.)
-
+
 These requirements apply to the modified work as a whole.  If
 identifiable sections of that work are not derived from the Program,
 and can be reasonably considered independent and separate works in
@@ -168,7 +168,7 @@ access to copy from a designated place, 
 access to copy the source code from the same place counts as
 distribution of the source code, even though third parties are not
 compelled to copy the source along with the object code.
-
+
   4. You may not copy, modify, sublicense, or distribute the Program
 except as expressly provided under this License.  Any attempt
 otherwise to copy, modify, sublicense or distribute the Program is
@@ -225,7 +225,7 @@ impose that choice.
 
 This section is intended to make thoroughly clear what is believed to
 be a consequence of the rest of this License.
-
+
   8. If the distribution and/or use of the Program is restricted in
 certain countries either by patents or by copyrighted interfaces, the
 original copyright holder who places the Program under this License
@@ -255,7 +255,7 @@ make exceptions for this.  Our decision 
 of preserving the free status of all derivatives of our free software and
 of promoting the sharing and reuse of software generally.
 
-			    NO WARRANTY
+                            NO WARRANTY
 
   11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
 FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
@@ -277,9 +277,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE
 PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGES.
 
-		     END OF TERMS AND CONDITIONS
-
-	    How to Apply These Terms to Your New Programs
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
 
   If you develop a new program, and you want it to be of the greatest
 possible use to the public, the best way to achieve this is to make it
@@ -303,10 +303,9 @@ the "copyright" line and a pointer to wh
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.
 
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
-
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 Also add information on how to contact you by electronic and paper mail.
 
@@ -336,5 +335,5 @@ necessary.  Here is a sample; alter the 
 This General Public License does not permit incorporating your program into
 proprietary programs.  If your program is a subroutine library, you may
 consider it more useful to permit linking proprietary applications with the
-library.  If this is what you want to do, use the GNU Library General
+library.  If this is what you want to do, use the GNU Lesser General
 Public License instead of this License.
diff -pruN 2.30.2-1/data/Makefile.am 2.30.4-1/data/Makefile.am
--- 2.30.2-1/data/Makefile.am	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/data/Makefile.am	2010-09-20 16:42:17.000000000 +0100
@@ -1,43 +1,29 @@
-uidir   = $(pkgdatadir)/ui
+uidir = $(pkgdatadir)/ui
 ui_DATA = pessulus.ui
 
 desktopdir = $(datadir)/applications
-desktop_in_files = pessulus.desktop.in 
+desktop_in_files = pessulus.desktop.in
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 
 @INTLTOOL_DESKTOP_RULE@
 
-EXTRA_DIST =			\
-	$(desktop_in_files)	\
-	$(ui_DATA) \
-	pessulus-16.png pessulus-22.png \
-	pessulus-24.png pessulus-32.png \
-	pessulus-48.png pessulus.svg
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
 
-DISTCLEANFILES = $(applications_DATA)
+install-data-local: install-icons
+uninstall-local: uninstall-icons
 
-gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
+install-data-hook: update-icon-cache
+uninstall-hook: update-icon-cache
 
 install-icons:			
 	for size in 16x16 22x22 24x24 32x32 48x48 scalable; do mkdir --parents $(DESTDIR)/$(datadir)/icons/hicolor/$$size/apps; done
 
-	install -m 644 $(srcdir)/pessulus-16.png $(DESTDIR)/$(datadir)/icons/hicolor/16x16/apps/pessulus.png 
-	install -m 644 $(srcdir)/pessulus-22.png $(DESTDIR)/$(datadir)/icons/hicolor/22x22/apps/pessulus.png 
-	install -m 644 $(srcdir)/pessulus-24.png $(DESTDIR)/$(datadir)/icons/hicolor/24x24/apps/pessulus.png 
-	install -m 644 $(srcdir)/pessulus-32.png $(DESTDIR)/$(datadir)/icons/hicolor/32x32/apps/pessulus.png 
-	install -m 644 $(srcdir)/pessulus-48.png $(DESTDIR)/$(datadir)/icons/hicolor/48x48/apps/pessulus.png 
-	install -m 644 $(srcdir)/pessulus.svg $(DESTDIR)/$(datadir)/icons/hicolor/scalable/apps/pessulus.svg 
-
-install-data-hook:
-	@-if test -z "$(DESTDIR)"; then \
-	        echo "Updating Gtk icon cache."; \
-	        $(gtk_update_icon_cache); \
-	else \
-	        echo "*** Icon cache not updated.  After install, run this:"; \
-	        echo "***   $(gtk_update_icon_cache)"; \
-	fi
-
-install-data-local: install-icons
+	$(INSTALL_DATA) $(srcdir)/pessulus-16.png $(DESTDIR)/$(datadir)/icons/hicolor/16x16/apps/pessulus.png
+	$(INSTALL_DATA) $(srcdir)/pessulus-22.png $(DESTDIR)/$(datadir)/icons/hicolor/22x22/apps/pessulus.png
+	$(INSTALL_DATA) $(srcdir)/pessulus-24.png $(DESTDIR)/$(datadir)/icons/hicolor/24x24/apps/pessulus.png
+	$(INSTALL_DATA) $(srcdir)/pessulus-32.png $(DESTDIR)/$(datadir)/icons/hicolor/32x32/apps/pessulus.png
+	$(INSTALL_DATA) $(srcdir)/pessulus-48.png $(DESTDIR)/$(datadir)/icons/hicolor/48x48/apps/pessulus.png
+	$(INSTALL_DATA) $(srcdir)/pessulus.svg $(DESTDIR)/$(datadir)/icons/hicolor/scalable/apps/pessulus.svg
 
 uninstall-icons:
 	rm -f $(DESTDIR)/$(datadir)/icons/hicolor/16x16/apps/pessulus.png
@@ -47,7 +33,21 @@ uninstall-icons:
 	rm -f $(DESTDIR)/$(datadir)/icons/hicolor/48x48/apps/pessulus.png
 	rm -f $(DESTDIR)/$(datadir)/icons/hicolor/scalable/apps/pessulus.svg
 
-uninstall-local: uninstall-icons
+update-icon-cache:
+	@-if test -z "$(DESTDIR)"; then \
+		echo "Updating Gtk icon cache."; \
+		$(gtk_update_icon_cache); \
+	else \
+		echo "*** Icon cache not updated. After (un)install, run this:"; \
+		echo "***   $(gtk_update_icon_cache)"; \
+	fi
+
+EXTRA_DIST =				\
+	$(desktop_in_files)		\
+	$(ui_DATA)			\
+	pessulus-16.png pessulus-22.png \
+	pessulus-24.png pessulus-32.png \
+	pessulus-48.png pessulus.svg
 
 CLEANFILES =			\
 	$(desktop_DATA)
diff -pruN 2.30.2-1/data/Makefile.in 2.30.4-1/data/Makefile.in
--- 2.30.2-1/data/Makefile.in	2010-06-22 03:20:10.000000000 +0100
+++ 2.30.4-1/data/Makefile.in	2010-11-17 11:15:12.000000000 +0000
@@ -140,6 +140,8 @@ PATH_SEPARATOR = @PATH_SEPARATOR@
 PESSULUS_CFLAGS = @PESSULUS_CFLAGS@
 PESSULUS_LIBS = @PESSULUS_LIBS@
 PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 POFILES = @POFILES@
 POSUB = @POSUB@
 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
@@ -204,17 +206,16 @@ top_srcdir = @top_srcdir@
 uidir = $(pkgdatadir)/ui
 ui_DATA = pessulus.ui
 desktopdir = $(datadir)/applications
-desktop_in_files = pessulus.desktop.in 
+desktop_in_files = pessulus.desktop.in
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
 EXTRA_DIST = \
-	$(desktop_in_files)	\
-	$(ui_DATA) \
+	$(desktop_in_files)		\
+	$(ui_DATA)			\
 	pessulus-16.png pessulus-22.png \
 	pessulus-24.png pessulus-32.png \
 	pessulus-48.png pessulus.svg
 
-DISTCLEANFILES = $(applications_DATA)
-gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
 CLEANFILES = \
 	$(desktop_DATA)
 
@@ -359,7 +360,6 @@ clean-generic:
 distclean-generic:
 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
 
 maintainer-clean-generic:
 	@echo "This command is intended for maintainers to use"
@@ -430,8 +430,9 @@ ps: ps-am
 ps-am:
 
 uninstall-am: uninstall-desktopDATA uninstall-local uninstall-uiDATA
-
-.MAKE: install-am install-data-am install-strip
+	@$(NORMAL_INSTALL)
+	$(MAKE) $(AM_MAKEFLAGS) uninstall-hook
+.MAKE: install-am install-data-am install-strip uninstall-am
 
 .PHONY: all all-am check check-am clean clean-generic distclean \
 	distclean-generic distdir dvi dvi-am html html-am info info-am \
@@ -444,31 +445,26 @@ uninstall-am: uninstall-desktopDATA unin
 	installcheck-am installdirs maintainer-clean \
 	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
 	pdf-am ps ps-am uninstall uninstall-am uninstall-desktopDATA \
-	uninstall-local uninstall-uiDATA
+	uninstall-hook uninstall-local uninstall-uiDATA
 
 
 @INTLTOOL_DESKTOP_RULE@
 
-install-icons:			
-	for size in 16x16 22x22 24x24 32x32 48x48 scalable; do mkdir --parents $(DESTDIR)/$(datadir)/icons/hicolor/$$size/apps; done
+install-data-local: install-icons
+uninstall-local: uninstall-icons
 
-	install -m 644 $(srcdir)/pessulus-16.png $(DESTDIR)/$(datadir)/icons/hicolor/16x16/apps/pessulus.png 
-	install -m 644 $(srcdir)/pessulus-22.png $(DESTDIR)/$(datadir)/icons/hicolor/22x22/apps/pessulus.png 
-	install -m 644 $(srcdir)/pessulus-24.png $(DESTDIR)/$(datadir)/icons/hicolor/24x24/apps/pessulus.png 
-	install -m 644 $(srcdir)/pessulus-32.png $(DESTDIR)/$(datadir)/icons/hicolor/32x32/apps/pessulus.png 
-	install -m 644 $(srcdir)/pessulus-48.png $(DESTDIR)/$(datadir)/icons/hicolor/48x48/apps/pessulus.png 
-	install -m 644 $(srcdir)/pessulus.svg $(DESTDIR)/$(datadir)/icons/hicolor/scalable/apps/pessulus.svg 
+install-data-hook: update-icon-cache
+uninstall-hook: update-icon-cache
 
-install-data-hook:
-	@-if test -z "$(DESTDIR)"; then \
-	        echo "Updating Gtk icon cache."; \
-	        $(gtk_update_icon_cache); \
-	else \
-	        echo "*** Icon cache not updated.  After install, run this:"; \
-	        echo "***   $(gtk_update_icon_cache)"; \
-	fi
+install-icons:			
+	for size in 16x16 22x22 24x24 32x32 48x48 scalable; do mkdir --parents $(DESTDIR)/$(datadir)/icons/hicolor/$$size/apps; done
 
-install-data-local: install-icons
+	$(INSTALL_DATA) $(srcdir)/pessulus-16.png $(DESTDIR)/$(datadir)/icons/hicolor/16x16/apps/pessulus.png
+	$(INSTALL_DATA) $(srcdir)/pessulus-22.png $(DESTDIR)/$(datadir)/icons/hicolor/22x22/apps/pessulus.png
+	$(INSTALL_DATA) $(srcdir)/pessulus-24.png $(DESTDIR)/$(datadir)/icons/hicolor/24x24/apps/pessulus.png
+	$(INSTALL_DATA) $(srcdir)/pessulus-32.png $(DESTDIR)/$(datadir)/icons/hicolor/32x32/apps/pessulus.png
+	$(INSTALL_DATA) $(srcdir)/pessulus-48.png $(DESTDIR)/$(datadir)/icons/hicolor/48x48/apps/pessulus.png
+	$(INSTALL_DATA) $(srcdir)/pessulus.svg $(DESTDIR)/$(datadir)/icons/hicolor/scalable/apps/pessulus.svg
 
 uninstall-icons:
 	rm -f $(DESTDIR)/$(datadir)/icons/hicolor/16x16/apps/pessulus.png
@@ -478,7 +474,14 @@ uninstall-icons:
 	rm -f $(DESTDIR)/$(datadir)/icons/hicolor/48x48/apps/pessulus.png
 	rm -f $(DESTDIR)/$(datadir)/icons/hicolor/scalable/apps/pessulus.svg
 
-uninstall-local: uninstall-icons
+update-icon-cache:
+	@-if test -z "$(DESTDIR)"; then \
+		echo "Updating Gtk icon cache."; \
+		$(gtk_update_icon_cache); \
+	else \
+		echo "*** Icon cache not updated. After (un)install, run this:"; \
+		echo "***   $(gtk_update_icon_cache)"; \
+	fi
 
 -include $(top_srcdir)/git.mk
 
diff -pruN 2.30.2-1/data/pessulus.desktop.in 2.30.4-1/data/pessulus.desktop.in
--- 2.30.2-1/data/pessulus.desktop.in	2010-06-22 03:20:13.000000000 +0100
+++ 2.30.4-1/data/pessulus.desktop.in	2010-11-17 11:15:15.000000000 +0000
@@ -9,6 +9,6 @@ Terminal=false
 X-GNOME-Bugzilla-Bugzilla=GNOME
 X-GNOME-Bugzilla-Product=pessulus
 X-GNOME-Bugzilla-Component=general
-X-GNOME-Bugzilla-Version=2.30.2
+X-GNOME-Bugzilla-Version=2.30.4
 Categories=GNOME;GTK;System;Settings;
 OnlyShowIn=GNOME;
diff -pruN 2.30.2-1/debian/changelog 2.30.4-1/debian/changelog
--- 2.30.2-1/debian/changelog	2010-06-22 19:16:19.000000000 +0100
+++ 2.30.4-1/debian/changelog	2011-02-08 22:17:54.000000000 +0000
@@ -1,3 +1,20 @@
+pessulus (2.30.4-1) unstable; urgency=low
+
+  [ Sebastien Bacher ]
+  * debian/control.in: don't depend on python-glade2 since it uses gtkbuilder.
+    Closes: #599295.
+
+  [ Luca Falavigna ]
+  * New upstream bugfix release.
+  * Refresh patches for new upstream release:
+    - debian/patches/01_scp-integration.patch
+    - debian/patches/70_mandatory-autoconf.patch
+  * debian/control.in:
+    - Build-depend on intltool (>= 0.40.0).
+    - Bump Standards-Version to 3.9.1.
+
+ -- Luca Falavigna <dktrkranz@debian.org>  Tue, 08 Feb 2011 23:17:07 +0100
+
 pessulus (2.30.2-1) unstable; urgency=low
 
   [ Emilio Pozuelo Monfort ]
diff -pruN 2.30.2-1/debian/control 2.30.4-1/debian/control
--- 2.30.2-1/debian/control	2010-06-22 19:18:23.000000000 +0100
+++ 2.30.4-1/debian/control	2011-02-08 22:19:01.000000000 +0000
@@ -13,10 +13,10 @@ Build-Depends: cdbs (>= 0.4.49),
                gnome-pkg-tools (>= 0.10)
 Build-Depends-Indep: python,
                      gconf2,
-                     intltool,
+                     intltool (>= 0.40.0),
                      python-support
 Homepage: http://live.gnome.org/Pessulus
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 XS-Python-Version: >= 2.4
 
 Package: pessulus
@@ -24,7 +24,6 @@ Architecture: all
 Depends: ${misc:Depends},
          ${python:Depends},
          python-gtk2 (>= 2.13.0),
-         python-glade2 (>= 2.13.0),
          python-gnome2 (>= 2.13.0),
          python-bugbuddy (>= 2.13.0),
          python-gobject
diff -pruN 2.30.2-1/debian/control.in 2.30.4-1/debian/control.in
--- 2.30.2-1/debian/control.in	2010-04-24 22:49:38.000000000 +0100
+++ 2.30.4-1/debian/control.in	2011-02-08 22:17:54.000000000 +0000
@@ -8,10 +8,10 @@ Build-Depends: cdbs (>= 0.4.49),
                gnome-pkg-tools (>= 0.10)
 Build-Depends-Indep: python,
                      gconf2,
-                     intltool,
+                     intltool (>= 0.40.0),
                      python-support
 Homepage: http://live.gnome.org/Pessulus
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 XS-Python-Version: >= 2.4
 
 Package: pessulus
@@ -19,7 +19,6 @@ Architecture: all
 Depends: ${misc:Depends},
          ${python:Depends},
          python-gtk2 (>= 2.13.0),
-         python-glade2 (>= 2.13.0),
          python-gnome2 (>= 2.13.0),
          python-bugbuddy (>= 2.13.0),
          python-gobject
diff -pruN 2.30.2-1/debian/patches/01_scp-integration.patch 2.30.4-1/debian/patches/01_scp-integration.patch
--- 2.30.2-1/debian/patches/01_scp-integration.patch	2010-06-22 19:16:04.000000000 +0100
+++ 2.30.4-1/debian/patches/01_scp-integration.patch	2011-02-08 22:14:08.000000000 +0000
@@ -4,7 +4,7 @@ Index: pessulus-2.30.2/Pessulus/Makefile
 ===================================================================
 --- pessulus-2.30.2.orig/Pessulus/Makefile.in	2010-06-22 20:10:09.391412340 +0200
 +++ pessulus-2.30.2/Pessulus/Makefile.in	2010-06-22 20:09:53.287410877 +0200
-@@ -207,6 +207,7 @@
+@@ -209,6 +209,7 @@
  	icons.py		\
  	globalvar.py		\
  	lockdownappliergconf.py	\
diff -pruN 2.30.2-1/debian/patches/70_mandatory-autoconf.patch 2.30.4-1/debian/patches/70_mandatory-autoconf.patch
--- 2.30.2-1/debian/patches/70_mandatory-autoconf.patch	2010-06-22 19:16:04.000000000 +0100
+++ 2.30.4-1/debian/patches/70_mandatory-autoconf.patch	2011-02-08 22:14:08.000000000 +0000
@@ -1,34 +1,42 @@
 Generated with autoconf && rm -rf autom4te.cache
 
-Index: pessulus-2.30.2/configure
+Index: pessulus-2.30.4/configure
 ===================================================================
---- pessulus-2.30.2.orig/configure	2010-06-22 20:11:15.907408125 +0200
-+++ pessulus-2.30.2/configure	2010-06-22 20:11:12.115408462 +0200
-@@ -671,9 +671,6 @@
+--- pessulus-2.30.4.orig/configure	2011-02-08 23:12:45.745877213 +0100
++++ pessulus-2.30.4/configure	2011-02-08 23:12:43.154673769 +0100
+@@ -671,11 +671,6 @@
  CFLAGS
  CC
  GETTEXT_PACKAGE
 -PESSULUS_LIBS
 -PESSULUS_CFLAGS
+-PKG_CONFIG_LIBDIR
+-PKG_CONFIG_PATH
 -PKG_CONFIG
  ACLOCAL_AMFLAGS
  MAINT
  MAINTAINER_MODE_FALSE
-@@ -753,9 +750,6 @@
+@@ -755,11 +750,6 @@
        ac_precious_vars='build_alias
  host_alias
  target_alias
 -PKG_CONFIG
+-PKG_CONFIG_PATH
+-PKG_CONFIG_LIBDIR
 -PESSULUS_CFLAGS
 -PESSULUS_LIBS
  CC
  CFLAGS
  LDFLAGS
-@@ -1392,11 +1386,6 @@
+@@ -1397,15 +1387,6 @@
                            The GConf source of the mandatory values
  
  Some influential environment variables:
 -  PKG_CONFIG  path to pkg-config utility
+-  PKG_CONFIG_PATH
+-              directories to add to pkg-config's search path
+-  PKG_CONFIG_LIBDIR
+-              path overriding pkg-config's built-in search path
 -  PESSULUS_CFLAGS
 -              C compiler flags for PESSULUS, overriding pkg-config
 -  PESSULUS_LIBS
@@ -36,12 +44,84 @@ Index: pessulus-2.30.2/configure
    CC          C compiler command
    CFLAGS      C compiler flags
    LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
-@@ -2733,209 +2722,6 @@
+@@ -1684,7 +1665,7 @@
+ $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
+ ( $as_echo "## ----------------------------------------------------------------------- ##
+ ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus ##
+-## ----------------------------------------------------------------------- ##"[]
++## ----------------------------------------------------------------------- ##"
+      ) | sed "s/^/$as_me: WARNING:     /" >&2
+     ;;
+ esac
+@@ -1963,7 +1944,7 @@
+ 
+     $as_echo "## ---------------- ##
+ ## Cache variables. ##
+-## ---------------- ##"[]
++## ---------------- ##"
+     echo
+     # The following way of writing the cache mishandles newlines in values,
+ (
+@@ -1999,7 +1980,7 @@
+ 
+     $as_echo "## ----------------- ##
+ ## Output variables. ##
+-## ----------------- ##"[]
++## ----------------- ##"
+     echo
+     for ac_var in $ac_subst_vars
+     do
+@@ -2014,7 +1995,7 @@
+     if test -n "$ac_subst_files"; then
+       $as_echo "## ------------------- ##
+ ## File substitutions. ##
+-## ------------------- ##"[]
++## ------------------- ##"
+       echo
+       for ac_var in $ac_subst_files
+       do
+@@ -2030,7 +2011,7 @@
+     if test -s confdefs.h; then
+       $as_echo "## ----------- ##
+ ## confdefs.h. ##
+-## ----------- ##"[]
++## ----------- ##"
+       echo
+       cat confdefs.h
+       echo
+@@ -2109,7 +2090,7 @@
+       || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ as_fn_error $? "failed to load site script $ac_site_file
+-See \`config.log' for more details" "$LINENO" 5; }
++See \`config.log' for more details" "$LINENO" 5 ; }
+   fi
+ done
+ 
+@@ -2334,11 +2315,11 @@
+ '
+ case `pwd` in
+   *[\\\"\#\$\&\'\`$am_lf]*)
+-    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
++    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;;
+ esac
+ case $srcdir in
+   *[\\\"\#\$\&\'\`$am_lf\ \	]*)
+-    as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
++    as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;;
+ esac
+ 
+ # Do `set' in a subshell so we don't clobber the current shell's
+@@ -2747,215 +2728,6 @@
  ACLOCAL_AMFLAGS="$ACLOCAL_FLAGS"
  
  
 -
 -
+-
+-
+-
+-
 -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
 -	if test -n "$ac_tool_prefix"; then
 -  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
@@ -154,7 +234,6 @@ Index: pessulus-2.30.2/configure
 -$as_echo "no" >&6; }
 -		PKG_CONFIG=""
 -	fi
--
 -fi
 -
 -pkg_failed=no
@@ -197,6 +276,8 @@ Index: pessulus-2.30.2/configure
 -
 -
 -if test $pkg_failed = yes; then
+-   	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+-$as_echo "no" >&6; }
 -
 -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 -        _pkg_short_errors_supported=yes
@@ -211,7 +292,7 @@ Index: pessulus-2.30.2/configure
 -	# Put the nasty error message in config.log where it belongs
 -	echo "$PESSULUS_PKG_ERRORS" >&5
 -
--	as_fn_error "Package requirements (pygtk-2.0 >= 2.13.0) were not met:
+-	as_fn_error $? "Package requirements (pygtk-2.0 >= 2.13.0) were not met:
 -
 -$PESSULUS_PKG_ERRORS
 -
@@ -220,12 +301,13 @@ Index: pessulus-2.30.2/configure
 -
 -Alternatively, you may set the environment variables PESSULUS_CFLAGS
 -and PESSULUS_LIBS to avoid the need to call pkg-config.
--See the pkg-config man page for more details.
--" "$LINENO" 5
+-See the pkg-config man page for more details." "$LINENO" 5
 -elif test $pkg_failed = untried; then
+-     	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+-$as_echo "no" >&6; }
 -	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
--as_fn_error "The pkg-config script could not be found or is too old.  Make sure it
+-as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
 -is in your PATH or set the PKG_CONFIG environment variable to the full
 -path to pkg-config.
 -
@@ -234,15 +316,105 @@ Index: pessulus-2.30.2/configure
 -See the pkg-config man page for more details.
 -
 -To get pkg-config, see <http://pkg-config.freedesktop.org/>.
--See \`config.log' for more details." "$LINENO" 5; }
+-See \`config.log' for more details" "$LINENO" 5; }
 -else
 -	PESSULUS_CFLAGS=$pkg_cv_PESSULUS_CFLAGS
 -	PESSULUS_LIBS=$pkg_cv_PESSULUS_LIBS
 -        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 -$as_echo "yes" >&6; }
--	:
+-
 -fi
 -
  GETTEXT_PACKAGE=pessulus
  
  
+@@ -3326,7 +3098,7 @@
+ test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ as_fn_error $? "no acceptable C compiler found in \$PATH
+-See \`config.log' for more details" "$LINENO" 5; }
++See \`config.log' for more details" "$LINENO" 5 ; }
+ 
+ # Provide some information about the compiler.
+ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
+@@ -3441,7 +3213,7 @@
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ as_fn_error 77 "C compiler cannot create executables
+-See \`config.log' for more details" "$LINENO" 5; }
++See \`config.log' for more details" "$LINENO" 5 ; }
+ else
+   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+ $as_echo "yes" >&6; }
+@@ -3484,7 +3256,7 @@
+   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ as_fn_error $? "cannot compute suffix of executables: cannot compile and link
+-See \`config.log' for more details" "$LINENO" 5; }
++See \`config.log' for more details" "$LINENO" 5 ; }
+ fi
+ rm -f conftest conftest$ac_cv_exeext
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
+@@ -3543,7 +3315,7 @@
+ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ as_fn_error $? "cannot run C compiled programs.
+ If you meant to cross compile, use \`--host'.
+-See \`config.log' for more details" "$LINENO" 5; }
++See \`config.log' for more details" "$LINENO" 5 ; }
+     fi
+   fi
+ fi
+@@ -3595,7 +3367,7 @@
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ as_fn_error $? "cannot compute suffix of object files: cannot compile
+-See \`config.log' for more details" "$LINENO" 5; }
++See \`config.log' for more details" "$LINENO" 5 ; }
+ fi
+ rm -f conftest.$ac_cv_objext conftest.$ac_ext
+ fi
+@@ -4071,7 +3843,7 @@
+   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
+-See \`config.log' for more details" "$LINENO" 5; }
++See \`config.log' for more details" "$LINENO" 5 ; }
+ fi
+ 
+ ac_ext=c
+@@ -6590,7 +6362,7 @@
+     "data/pessulus.desktop.in") CONFIG_FILES="$CONFIG_FILES data/pessulus.desktop.in" ;;
+     "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
+ 
+-  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
++  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
+   esac
+ done
+ 
+@@ -6797,7 +6569,7 @@
+   esac
+   case $ac_mode$ac_tag in
+   :[FHL]*:*);;
+-  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
++  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;;
+   :[FH]-) ac_tag=-:-;;
+   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
+   esac
+@@ -6825,7 +6597,7 @@
+ 	   [\\/$]*) false;;
+ 	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
+ 	   esac ||
+-	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
++	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;;
+       esac
+       case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
+       as_fn_append ac_file_inputs " '$ac_f'"
+@@ -6852,7 +6624,7 @@
+ 
+     case $ac_tag in
+     *:-:* | *:-) cat >"$tmp/stdin" \
+-      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
++      || as_fn_error $? "could not create $ac_file" "$LINENO" 5  ;;
+     esac
+     ;;
+   esac
diff -pruN 2.30.2-1/HACKING 2.30.4-1/HACKING
--- 2.30.2-1/HACKING	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/HACKING	2010-09-08 18:24:49.000000000 +0100
@@ -1,22 +1,31 @@
 Hacking on pessulus
 ===================
 
-	* Please send patches to desktop-devel-list@gnome.org or to
-	  the people listed in the MAINTAINERS file. Your patch should
-	  be in unified diff form. (The -u option to GNU diff.) See also:
+ + The development occurs in git:
 
-	  	http://live.gnome.org/GnomeLove/SubmittingPatches
+     http://git.gnome.org/browse/pessulus
 
-	* Please try and send a patch against a recent version of this
-	  package. Patches against CVS HEAD are most preferable. For
-	  information on how to access GNOME CVS please read:
+   For information on how to access GNOME git please read:
 
-		http://developer.gnome.org/tools/cvs.html
+     http://live.gnome.org/Git
 
-	* Don't commit any but the most trivial patches without approval.
+ + Please send patches as bug reports in GNOME Bugzilla:
 
-	* Exceptions to this are:
-		+ Translators may commit basic i18n related patches to
-		  the build setup.
-		+ Build sheriff are welcome - in accordance with the
-		  relevant build sheriff constraints. 
+     https://bugzilla.gnome.org/ (product pessulus)
+
+   Your patch should be in unified diff form (the -u option to GNU
+   diff). See also:
+
+     http://live.gnome.org/GnomeLove/SubmittingPatches
+
+ + Please try and send a patch against a recent version of this package.
+   Patches against git master are most preferable.
+
+ + Don't commit any but the most trivial patches without approval.
+
+ + Exceptions to this are:
+
+   - Translators may commit basic i18n related patches to the build
+     setup.
+   - Build sheriff are welcome - in accordance with the relevant build
+     sheriff constraints.
diff -pruN 2.30.2-1/MAINTAINERS 2.30.4-1/MAINTAINERS
--- 2.30.2-1/MAINTAINERS	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/MAINTAINERS	2010-09-08 18:24:49.000000000 +0100
@@ -1,7 +1,10 @@
+Currently active maintainers
+----------------------------
+
 Vincent Untz
-Email: vuntz@gnome.org
+E-mail: vuntz@gnome.org
 Userid: vuntz
 
 Rob Bradford
-Email: rob@robster.org.uk
+E-mail: rob@robster.org.uk
 Userid: rbradford
diff -pruN 2.30.2-1/Makefile.am 2.30.4-1/Makefile.am
--- 2.30.2-1/Makefile.am	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/Makefile.am	2010-09-20 16:42:17.000000000 +0100
@@ -1,6 +1,4 @@
-NULL =
-
-SUBDIRS = data po Pessulus
+SUBDIRS = Pessulus data po
 
 ACLOCAL_AMFLAGS = -I m4
 
@@ -13,21 +11,11 @@ pessulus: pessulus.in Makefile
 EXTRA_DIST =			\
 	HACKING			\
 	MAINTAINERS		\
-	pessulus.in		\
-	intltool-extract.in	\
-	intltool-merge.in	\
-	intltool-update.in	\
-	$(NULL)
+	pessulus.in
 
 CLEANFILES =		\
 	pessulus
 
-DISTCLEANFILES =		\
-        intltool-extract	\
-        intltool-merge		\
-        intltool-update		\
-	$(NULL)
-
 MAINTAINERCLEANFILES = \
 	$(srcdir)/INSTALL \
 	$(srcdir)/aclocal.m4 \
diff -pruN 2.30.2-1/Makefile.in 2.30.4-1/Makefile.in
--- 2.30.2-1/Makefile.in	2010-06-22 03:20:10.000000000 +0100
+++ 2.30.4-1/Makefile.in	2010-11-17 11:15:12.000000000 +0000
@@ -194,6 +194,8 @@ PATH_SEPARATOR = @PATH_SEPARATOR@
 PESSULUS_CFLAGS = @PESSULUS_CFLAGS@
 PESSULUS_LIBS = @PESSULUS_LIBS@
 PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 POFILES = @POFILES@
 POSUB = @POSUB@
 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
@@ -255,27 +257,16 @@ target_alias = @target_alias@
 top_build_prefix = @top_build_prefix@
 top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
-NULL = 
-SUBDIRS = data po Pessulus
+SUBDIRS = Pessulus data po
 bin_SCRIPTS = pessulus
 EXTRA_DIST = \
 	HACKING			\
 	MAINTAINERS		\
-	pessulus.in		\
-	intltool-extract.in	\
-	intltool-merge.in	\
-	intltool-update.in	\
-	$(NULL)
+	pessulus.in
 
 CLEANFILES = \
 	pessulus
 
-DISTCLEANFILES = \
-        intltool-extract	\
-        intltool-merge		\
-        intltool-update		\
-	$(NULL)
-
 MAINTAINERCLEANFILES = \
 	$(srcdir)/INSTALL \
 	$(srcdir)/aclocal.m4 \
@@ -699,7 +690,6 @@ clean-generic:
 distclean-generic:
 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
 
 maintainer-clean-generic:
 	@echo "This command is intended for maintainers to use"
diff -pruN 2.30.2-1/NEWS 2.30.4-1/NEWS
--- 2.30.2-1/NEWS	2010-06-22 03:19:41.000000000 +0100
+++ 2.30.4-1/NEWS	2010-11-17 11:09:13.000000000 +0000
@@ -1,4 +1,36 @@
 ==============
+Version 2.30.4
+==============
+
+  Misc
+
+	* Update build system (Vincent)
+
+  Translators
+
+	* Iñigo Varela (ast)
+	* josep (ca@valencia)
+	* Mahyar Moghimi (fa)
+	* Takeshi AIHANA (ja)
+	* Erdal Ronahî (ku)
+	* Sahran (ug)
+
+==============
+Version 2.30.3
+==============
+
+  Misc
+
+	* Require intltool 0.40.0 (Vincent)
+	* Update information in README and other files (Vincent)
+
+  Translators
+
+	* Fran Diéguez (gl)
+	* Dirgita (id)
+	* Umarzuki Bin Mochlis Moktar (ms)
+
+==============
 Version 2.30.2
 ==============
 
diff -pruN 2.30.2-1/.pc/00_disable_pkg_check.patch/configure.ac 2.30.4-1/.pc/00_disable_pkg_check.patch/configure.ac
--- 2.30.2-1/.pc/00_disable_pkg_check.patch/configure.ac	2010-06-22 03:19:46.000000000 +0100
+++ 2.30.4-1/.pc/00_disable_pkg_check.patch/configure.ac	2010-09-23 07:19:32.000000000 +0100
@@ -1,5 +1,5 @@
 AC_PREREQ(2.53)
-AC_INIT([pessulus], [2.30.2],
+AC_INIT([pessulus], [2.30.4],
         [http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus])
 AC_CONFIG_SRCDIR(pessulus.in)
 AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2])
@@ -17,7 +17,7 @@ GETTEXT_PACKAGE=pessulus
 AC_SUBST(GETTEXT_PACKAGE)
 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext package])
 AM_GLIB_GNU_GETTEXT
-IT_PROG_INTLTOOL([0.35.0])
+IT_PROG_INTLTOOL([0.40.0])
 AM_PATH_PYTHON
 AC_PATH_PROG(GCONFTOOL, gconftool-2)
 
diff -pruN 2.30.2-1/.pc/01_scp-integration.patch/Pessulus/Makefile.in 2.30.4-1/.pc/01_scp-integration.patch/Pessulus/Makefile.in
--- 2.30.2-1/.pc/01_scp-integration.patch/Pessulus/Makefile.in	2010-06-22 03:20:10.000000000 +0100
+++ 2.30.4-1/.pc/01_scp-integration.patch/Pessulus/Makefile.in	2010-11-17 11:15:12.000000000 +0000
@@ -139,6 +139,8 @@ PATH_SEPARATOR = @PATH_SEPARATOR@
 PESSULUS_CFLAGS = @PESSULUS_CFLAGS@
 PESSULUS_LIBS = @PESSULUS_LIBS@
 PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 POFILES = @POFILES@
 POSUB = @POSUB@
 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
@@ -216,8 +218,8 @@ app_PYTHON = \
 	simpleeditabletreeview.py
 
 nodist_app_PYTHON = config.py
-CLEANFILES = config.py
 EXTRA_DIST = config.py.in
+CLEANFILES = config.py
 all: all-am
 
 .SUFFIXES:
@@ -366,7 +368,7 @@ distdir: $(DISTFILES)
 	done
 check-am: all-am
 check: check-am
-all-am: Makefile all-local
+all-am: Makefile
 installdirs:
 	for dir in "$(DESTDIR)$(appdir)" "$(DESTDIR)$(appdir)"; do \
 	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
@@ -465,9 +467,9 @@ uninstall-am: uninstall-appPYTHON uninst
 
 .MAKE: install-am install-strip
 
-.PHONY: all all-am all-local check check-am clean clean-generic \
-	distclean distclean-generic distdir dvi dvi-am html html-am \
-	info info-am install install-am install-appPYTHON install-data \
+.PHONY: all all-am check check-am clean clean-generic distclean \
+	distclean-generic distdir dvi dvi-am html html-am info info-am \
+	install install-am install-appPYTHON install-data \
 	install-data-am install-dvi install-dvi-am install-exec \
 	install-exec-am install-html install-html-am install-info \
 	install-info-am install-man install-nodist_appPYTHON \
@@ -478,8 +480,6 @@ uninstall-am: uninstall-appPYTHON uninst
 	uninstall-appPYTHON uninstall-nodist_appPYTHON
 
 
-all-local: config.py
-
 config.py: config.py.in Makefile
 	$(AM_V_GEN)sed								\
 		-e s!\@LOCALEDIR\@!$(datadir)/locale!			\
diff -pruN 2.30.2-1/.pc/70_mandatory-autoconf.patch/configure 2.30.4-1/.pc/70_mandatory-autoconf.patch/configure
--- 2.30.2-1/.pc/70_mandatory-autoconf.patch/configure	2010-06-22 03:20:09.000000000 +0100
+++ 2.30.4-1/.pc/70_mandatory-autoconf.patch/configure	2010-11-17 11:15:11.000000000 +0000
@@ -1,13 +1,13 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.65 for pessulus 2.30.2.
+# Generated by GNU Autoconf 2.67 for pessulus 2.30.4.
 #
 # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus>.
 #
 #
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
-# Inc.
+# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
+# Foundation, Inc.
 #
 #
 # This configure script is free software; the Free Software Foundation
@@ -320,7 +320,7 @@ $as_echo X"$as_dir" |
       test -d "$as_dir" && break
     done
     test -z "$as_dirs" || eval "mkdir $as_dirs"
-  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 
 
 } # as_fn_mkdir_p
@@ -360,19 +360,19 @@ else
 fi # as_fn_arith
 
 
-# as_fn_error ERROR [LINENO LOG_FD]
-# ---------------------------------
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with status $?, using 1 if that was 0.
+# script with STATUS, using 1 if that was 0.
 as_fn_error ()
 {
-  as_status=$?; test $as_status -eq 0 && as_status=1
-  if test "$3"; then
-    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
+  as_status=$1; test $as_status -eq 0 && as_status=1
+  if test "$4"; then
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
   fi
-  $as_echo "$as_me: error: $1" >&2
+  $as_echo "$as_me: error: $2" >&2
   as_fn_exit $as_status
 } # as_fn_error
 
@@ -534,7 +534,7 @@ test -n "$DJDIR" || exec 7<&0 </dev/null
 exec 6>&1
 
 # Name of the host.
-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
 # so uname gets run too.
 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
 
@@ -553,8 +553,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='pessulus'
 PACKAGE_TARNAME='pessulus'
-PACKAGE_VERSION='2.30.2'
-PACKAGE_STRING='pessulus 2.30.2'
+PACKAGE_VERSION='2.30.4'
+PACKAGE_STRING='pessulus 2.30.4'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus'
 PACKAGE_URL=''
 
@@ -673,6 +673,8 @@ CC
 GETTEXT_PACKAGE
 PESSULUS_LIBS
 PESSULUS_CFLAGS
+PKG_CONFIG_LIBDIR
+PKG_CONFIG_PATH
 PKG_CONFIG
 ACLOCAL_AMFLAGS
 MAINT
@@ -754,6 +756,8 @@ with_gconf_mandatory_source
 host_alias
 target_alias
 PKG_CONFIG
+PKG_CONFIG_PATH
+PKG_CONFIG_LIBDIR
 PESSULUS_CFLAGS
 PESSULUS_LIBS
 CC
@@ -824,8 +828,9 @@ do
   fi
 
   case $ac_option in
-  *=*)	ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
-  *)	ac_optarg=yes ;;
+  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
+  *=)   ac_optarg= ;;
+  *)    ac_optarg=yes ;;
   esac
 
   # Accept the important Cygnus configure options, so we can diagnose typos.
@@ -870,7 +875,7 @@ do
     ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-      as_fn_error "invalid feature name: $ac_useropt"
+      as_fn_error $? "invalid feature name: $ac_useropt"
     ac_useropt_orig=$ac_useropt
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
     case $ac_user_opts in
@@ -896,7 +901,7 @@ do
     ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-      as_fn_error "invalid feature name: $ac_useropt"
+      as_fn_error $? "invalid feature name: $ac_useropt"
     ac_useropt_orig=$ac_useropt
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
     case $ac_user_opts in
@@ -1100,7 +1105,7 @@ do
     ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-      as_fn_error "invalid package name: $ac_useropt"
+      as_fn_error $? "invalid package name: $ac_useropt"
     ac_useropt_orig=$ac_useropt
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
     case $ac_user_opts in
@@ -1116,7 +1121,7 @@ do
     ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-      as_fn_error "invalid package name: $ac_useropt"
+      as_fn_error $? "invalid package name: $ac_useropt"
     ac_useropt_orig=$ac_useropt
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
     case $ac_user_opts in
@@ -1146,8 +1151,8 @@ do
   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
     x_libraries=$ac_optarg ;;
 
-  -*) as_fn_error "unrecognized option: \`$ac_option'
-Try \`$0 --help' for more information."
+  -*) as_fn_error $? "unrecognized option: \`$ac_option'
+Try \`$0 --help' for more information"
     ;;
 
   *=*)
@@ -1155,7 +1160,7 @@ Try \`$0 --help' for more information."
     # Reject names that are not valid shell variable names.
     case $ac_envvar in #(
       '' | [0-9]* | *[!_$as_cr_alnum]* )
-      as_fn_error "invalid variable name: \`$ac_envvar'" ;;
+      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
     esac
     eval $ac_envvar=\$ac_optarg
     export $ac_envvar ;;
@@ -1173,13 +1178,13 @@ done
 
 if test -n "$ac_prev"; then
   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
-  as_fn_error "missing argument to $ac_option"
+  as_fn_error $? "missing argument to $ac_option"
 fi
 
 if test -n "$ac_unrecognized_opts"; then
   case $enable_option_checking in
     no) ;;
-    fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
+    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
     *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
   esac
 fi
@@ -1202,7 +1207,7 @@ do
     [\\/$]* | ?:[\\/]* )  continue;;
     NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
   esac
-  as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
+  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
 done
 
 # There might be people who depend on the old broken behavior: `$host'
@@ -1216,8 +1221,8 @@ target=$target_alias
 if test "x$host_alias" != x; then
   if test "x$build_alias" = x; then
     cross_compiling=maybe
-    $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
-    If a cross compiler is detected then cross compile mode will be used." >&2
+    $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
+    If a cross compiler is detected then cross compile mode will be used" >&2
   elif test "x$build_alias" != "x$host_alias"; then
     cross_compiling=yes
   fi
@@ -1232,9 +1237,9 @@ test "$silent" = yes && exec 6>/dev/null
 ac_pwd=`pwd` && test -n "$ac_pwd" &&
 ac_ls_di=`ls -di .` &&
 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
-  as_fn_error "working directory cannot be determined"
+  as_fn_error $? "working directory cannot be determined"
 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
-  as_fn_error "pwd does not report name of working directory"
+  as_fn_error $? "pwd does not report name of working directory"
 
 
 # Find the source files, if location was not specified.
@@ -1273,11 +1278,11 @@ else
 fi
 if test ! -r "$srcdir/$ac_unique_file"; then
   test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
-  as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
+  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
 fi
 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 ac_abs_confdir=`(
-	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
+	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
 	pwd)`
 # When building in place, set srcdir=.
 if test "$ac_abs_confdir" = "$ac_pwd"; then
@@ -1303,7 +1308,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures pessulus 2.30.2 to adapt to many kinds of systems.
+\`configure' configures pessulus 2.30.4 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1317,7 +1322,7 @@ Configuration:
       --help=short        display options specific to this package
       --help=recursive    display the short help of all the included packages
   -V, --version           display version information and exit
-  -q, --quiet, --silent   do not print \`checking...' messages
+  -q, --quiet, --silent   do not print \`checking ...' messages
       --cache-file=FILE   cache test results in FILE [disabled]
   -C, --config-cache      alias for \`--cache-file=config.cache'
   -n, --no-create         do not create output files
@@ -1369,7 +1374,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of pessulus 2.30.2:";;
+     short | recursive ) echo "Configuration of pessulus 2.30.4:";;
    esac
   cat <<\_ACEOF
 
@@ -1393,6 +1398,10 @@ Optional Packages:
 
 Some influential environment variables:
   PKG_CONFIG  path to pkg-config utility
+  PKG_CONFIG_PATH
+              directories to add to pkg-config's search path
+  PKG_CONFIG_LIBDIR
+              path overriding pkg-config's built-in search path
   PESSULUS_CFLAGS
               C compiler flags for PESSULUS, overriding pkg-config
   PESSULUS_LIBS
@@ -1472,10 +1481,10 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-pessulus configure 2.30.2
-generated by GNU Autoconf 2.65
+pessulus configure 2.30.4
+generated by GNU Autoconf 2.67
 
-Copyright (C) 2009 Free Software Foundation, Inc.
+Copyright (C) 2010 Free Software Foundation, Inc.
 This configure script is free software; the Free Software Foundation
 gives unlimited permission to copy, distribute and modify it.
 _ACEOF
@@ -1545,7 +1554,7 @@ $as_echo "$ac_try_echo"; } >&5
     mv -f conftest.er1 conftest.err
   fi
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; } >/dev/null && {
+  test $ac_status = 0; } > conftest.i && {
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 	 test ! -s conftest.err
        }; then :
@@ -1611,10 +1620,10 @@ fi
 ac_fn_c_check_header_mongrel ()
 {
   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-  if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+  if eval "test \"\${$3+set}\"" = set; then :
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval "test \"\${$3+set}\"" = set; then :
   $as_echo_n "(cached) " >&6
 fi
 eval ac_res=\$$3
@@ -1650,7 +1659,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
 else
   ac_header_preproc=no
 fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
 $as_echo "$ac_header_preproc" >&6; }
 
@@ -1673,17 +1682,15 @@ $as_echo "$as_me: WARNING: $2: see the A
 $as_echo "$as_me: WARNING: $2:     section \"Present But Cannot Be Compiled\"" >&2;}
     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
-( cat <<\_ASBOX
-## ----------------------------------------------------------------------- ##
+( $as_echo "## ----------------------------------------------------------------------- ##
 ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus ##
-## ----------------------------------------------------------------------- ##
-_ASBOX
+## ----------------------------------------------------------------------- ##"[]
      ) | sed "s/^/$as_me: WARNING:     /" >&2
     ;;
 esac
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval "test \"\${$3+set}\"" = set; then :
   $as_echo_n "(cached) " >&6
 else
   eval "$3=\$ac_header_compiler"
@@ -1705,7 +1712,7 @@ ac_fn_c_check_header_compile ()
   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval "test \"\${$3+set}\"" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1781,7 +1788,7 @@ ac_fn_c_check_func ()
   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval "test \"\${$3+set}\"" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1843,8 +1850,8 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by pessulus $as_me 2.30.2, which was
-generated by GNU Autoconf 2.65.  Invocation command line was
+It was created by pessulus $as_me 2.30.4, which was
+generated by GNU Autoconf 2.67.  Invocation command line was
 
   $ $0 $@
 
@@ -1954,11 +1961,9 @@ trap 'exit_status=$?
   {
     echo
 
-    cat <<\_ASBOX
-## ---------------- ##
+    $as_echo "## ---------------- ##
 ## Cache variables. ##
-## ---------------- ##
-_ASBOX
+## ---------------- ##"[]
     echo
     # The following way of writing the cache mishandles newlines in values,
 (
@@ -1992,11 +1997,9 @@ $as_echo "$as_me: WARNING: cache variabl
 )
     echo
 
-    cat <<\_ASBOX
-## ----------------- ##
+    $as_echo "## ----------------- ##
 ## Output variables. ##
-## ----------------- ##
-_ASBOX
+## ----------------- ##"[]
     echo
     for ac_var in $ac_subst_vars
     do
@@ -2009,11 +2012,9 @@ _ASBOX
     echo
 
     if test -n "$ac_subst_files"; then
-      cat <<\_ASBOX
-## ------------------- ##
+      $as_echo "## ------------------- ##
 ## File substitutions. ##
-## ------------------- ##
-_ASBOX
+## ------------------- ##"[]
       echo
       for ac_var in $ac_subst_files
       do
@@ -2027,11 +2028,9 @@ _ASBOX
     fi
 
     if test -s confdefs.h; then
-      cat <<\_ASBOX
-## ----------- ##
+      $as_echo "## ----------- ##
 ## confdefs.h. ##
-## ----------- ##
-_ASBOX
+## ----------- ##"[]
       echo
       cat confdefs.h
       echo
@@ -2086,7 +2085,12 @@ _ACEOF
 ac_site_file1=NONE
 ac_site_file2=NONE
 if test -n "$CONFIG_SITE"; then
-  ac_site_file1=$CONFIG_SITE
+  # We do not want a PATH search for config.site.
+  case $CONFIG_SITE in #((
+    -*)  ac_site_file1=./$CONFIG_SITE;;
+    */*) ac_site_file1=$CONFIG_SITE;;
+    *)   ac_site_file1=./$CONFIG_SITE;;
+  esac
 elif test "x$prefix" != xNONE; then
   ac_site_file1=$prefix/share/config.site
   ac_site_file2=$prefix/etc/config.site
@@ -2101,7 +2105,11 @@ do
     { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
     sed 's/^/| /' "$ac_site_file" >&5
-    . "$ac_site_file"
+    . "$ac_site_file" \
+      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "failed to load site script $ac_site_file
+See \`config.log' for more details" "$LINENO" 5; }
   fi
 done
 
@@ -2177,7 +2185,7 @@ if $ac_cache_corrupted; then
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
   { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
-  as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
+  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
 fi
 ## -------------------- ##
 ## Main body of script. ##
@@ -2195,16 +2203,22 @@ am__api_version='1.11'
 
 ac_aux_dir=
 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
-  for ac_t in install-sh install.sh shtool; do
-    if test -f "$ac_dir/$ac_t"; then
-      ac_aux_dir=$ac_dir
-      ac_install_sh="$ac_aux_dir/$ac_t -c"
-      break 2
-    fi
-  done
+  if test -f "$ac_dir/install-sh"; then
+    ac_aux_dir=$ac_dir
+    ac_install_sh="$ac_aux_dir/install-sh -c"
+    break
+  elif test -f "$ac_dir/install.sh"; then
+    ac_aux_dir=$ac_dir
+    ac_install_sh="$ac_aux_dir/install.sh -c"
+    break
+  elif test -f "$ac_dir/shtool"; then
+    ac_aux_dir=$ac_dir
+    ac_install_sh="$ac_aux_dir/shtool install -c"
+    break
+  fi
 done
 if test -z "$ac_aux_dir"; then
-  as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
+  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
 fi
 
 # These three variables are undocumented and unsupported,
@@ -2320,11 +2334,11 @@ am_lf='
 '
 case `pwd` in
   *[\\\"\#\$\&\'\`$am_lf]*)
-    as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
+    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
 esac
 case $srcdir in
   *[\\\"\#\$\&\'\`$am_lf\ \	]*)
-    as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
+    as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
 esac
 
 # Do `set' in a subshell so we don't clobber the current shell's
@@ -2346,7 +2360,7 @@ if (
       # if, for instance, CONFIG_SHELL is bash and it inherits a
       # broken ls alias from the environment.  This has actually
       # happened.  Such a system could not be considered "sane".
-      as_fn_error "ls -t appears to fail.  Make sure there is not a broken
+      as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
 alias in your environment" "$LINENO" 5
    fi
 
@@ -2356,7 +2370,7 @@ then
    # Ok.
    :
 else
-   as_fn_error "newly created file is older than distributed files!
+   as_fn_error $? "newly created file is older than distributed files!
 Check your system clock" "$LINENO" 5
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
@@ -2594,7 +2608,7 @@ done
 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
 set x ${MAKE-make}
 ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat >conftest.make <<\_ACEOF
@@ -2602,7 +2616,7 @@ SHELL = /bin/sh
 all:
 	@echo '@@@%%%=$(MAKE)=@@@%%%'
 _ACEOF
-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
 case `${MAKE-make} -f conftest.make 2>/dev/null` in
   *@@@%%%=?*=@@@%%%*)
     eval ac_cv_prog_make_${ac_make}_set=yes;;
@@ -2636,7 +2650,7 @@ if test "`cd $srcdir && pwd`" != "`pwd`"
   am__isrc=' -I$(srcdir)'
   # test to see if srcdir already configured
   if test -f $srcdir/config.status; then
-    as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
+    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
   fi
 fi
 
@@ -2652,7 +2666,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='pessulus'
- VERSION='2.30.2'
+ VERSION='2.30.4'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2735,6 +2749,10 @@ ACLOCAL_AMFLAGS="$ACLOCAL_FLAGS"
 
 
 
+
+
+
+
 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
 	if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
@@ -2847,7 +2865,6 @@ $as_echo "yes" >&6; }
 $as_echo "no" >&6; }
 		PKG_CONFIG=""
 	fi
-
 fi
 
 pkg_failed=no
@@ -2890,6 +2907,8 @@ fi
 
 
 if test $pkg_failed = yes; then
+   	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
 
 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
         _pkg_short_errors_supported=yes
@@ -2904,7 +2923,7 @@ fi
 	# Put the nasty error message in config.log where it belongs
 	echo "$PESSULUS_PKG_ERRORS" >&5
 
-	as_fn_error "Package requirements (pygtk-2.0 >= 2.13.0) were not met:
+	as_fn_error $? "Package requirements (pygtk-2.0 >= 2.13.0) were not met:
 
 $PESSULUS_PKG_ERRORS
 
@@ -2913,12 +2932,13 @@ installed software in a non-standard pre
 
 Alternatively, you may set the environment variables PESSULUS_CFLAGS
 and PESSULUS_LIBS to avoid the need to call pkg-config.
-See the pkg-config man page for more details.
-" "$LINENO" 5
+See the pkg-config man page for more details." "$LINENO" 5
 elif test $pkg_failed = untried; then
+     	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
 	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "The pkg-config script could not be found or is too old.  Make sure it
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
 is in your PATH or set the PKG_CONFIG environment variable to the full
 path to pkg-config.
 
@@ -2927,13 +2947,13 @@ and PESSULUS_LIBS to avoid the need to c
 See the pkg-config man page for more details.
 
 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
-See \`config.log' for more details." "$LINENO" 5; }
+See \`config.log' for more details" "$LINENO" 5; }
 else
 	PESSULUS_CFLAGS=$pkg_cv_PESSULUS_CFLAGS
 	PESSULUS_LIBS=$pkg_cv_PESSULUS_LIBS
         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 $as_echo "yes" >&6; }
-	:
+
 fi
 
 GETTEXT_PACKAGE=pessulus
@@ -3305,8 +3325,8 @@ fi
 
 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "no acceptable C compiler found in \$PATH
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "no acceptable C compiler found in \$PATH
+See \`config.log' for more details" "$LINENO" 5; }
 
 # Provide some information about the compiler.
 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
@@ -3420,9 +3440,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-{ as_fn_set_status 77
-as_fn_error "C compiler cannot create executables
-See \`config.log' for more details." "$LINENO" 5; }; }
+as_fn_error 77 "C compiler cannot create executables
+See \`config.log' for more details" "$LINENO" 5; }
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 $as_echo "yes" >&6; }
@@ -3464,8 +3483,8 @@ done
 else
   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot compute suffix of executables: cannot compile and link
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot compute suffix of executables: cannot compile and link
+See \`config.log' for more details" "$LINENO" 5; }
 fi
 rm -f conftest conftest$ac_cv_exeext
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
@@ -3522,9 +3541,9 @@ $as_echo "$ac_try_echo"; } >&5
     else
 	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot run C compiled programs.
+as_fn_error $? "cannot run C compiled programs.
 If you meant to cross compile, use \`--host'.
-See \`config.log' for more details." "$LINENO" 5; }
+See \`config.log' for more details" "$LINENO" 5; }
     fi
   fi
 fi
@@ -3575,8 +3594,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot compute suffix of object files: cannot compile
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot compute suffix of object files: cannot compile
+See \`config.log' for more details" "$LINENO" 5; }
 fi
 rm -f conftest.$ac_cv_objext conftest.$ac_ext
 fi
@@ -3966,7 +3985,7 @@ else
   # Broken: fails on valid input.
 continue
 fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
 
   # OK, works on sane cases.  Now check whether nonexistent headers
   # can be detected and how.
@@ -3982,11 +4001,11 @@ else
 ac_preproc_ok=:
 break
 fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
 
 done
 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.i conftest.err conftest.$ac_ext
 if $ac_preproc_ok; then :
   break
 fi
@@ -4025,7 +4044,7 @@ else
   # Broken: fails on valid input.
 continue
 fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
 
   # OK, works on sane cases.  Now check whether nonexistent headers
   # can be detected and how.
@@ -4041,18 +4060,18 @@ else
 ac_preproc_ok=:
 break
 fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
 
 done
 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.i conftest.err conftest.$ac_ext
 if $ac_preproc_ok; then :
 
 else
   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "C preprocessor \"$CPP\" fails sanity check
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
+See \`config.log' for more details" "$LINENO" 5; }
 fi
 
 ac_ext=c
@@ -4113,7 +4132,7 @@ esac
   done
 IFS=$as_save_IFS
   if test -z "$ac_cv_path_GREP"; then
-    as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+    as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
   fi
 else
   ac_cv_path_GREP=$GREP
@@ -4179,7 +4198,7 @@ esac
   done
 IFS=$as_save_IFS
   if test -z "$ac_cv_path_EGREP"; then
-    as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+    as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
   fi
 else
   ac_cv_path_EGREP=$EGREP
@@ -4311,8 +4330,7 @@ do :
   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
 "
-eval as_val=\$$as_ac_Header
-   if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
   cat >>confdefs.h <<_ACEOF
 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 _ACEOF
@@ -5044,24 +5062,24 @@ $as_echo "$USE_NLS" >&6; }
 
 case "$am__api_version" in
     1.01234)
-	as_fn_error "Automake 1.5 or newer is required to use intltool" "$LINENO" 5
+	as_fn_error $? "Automake 1.5 or newer is required to use intltool" "$LINENO" 5
     ;;
     *)
     ;;
 esac
 
-if test -n "0.35.0"; then
-    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.35.0" >&5
-$as_echo_n "checking for intltool >= 0.35.0... " >&6; }
+if test -n "0.40.0"; then
+    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.40.0" >&5
+$as_echo_n "checking for intltool >= 0.40.0... " >&6; }
 
-    INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
+    INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.40.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
     INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
     INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
 
     { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5
 $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; }
     test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
-	as_fn_error "Your intltool is too old.  You need intltool 0.35.0 or later." "$LINENO" 5
+	as_fn_error $? "Your intltool is too old.  You need intltool 0.40.0 or later." "$LINENO" 5
 fi
 
 # Extract the first word of "intltool-update", so it can be a program name with args.
@@ -5185,7 +5203,7 @@ fi
 
 
 if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
-    as_fn_error "The intltool scripts were not found. Please install intltool." "$LINENO" 5
+    as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5
 fi
 
   INTLTOOL_DESKTOP_RULE='%.desktop:   %.desktop.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
@@ -5467,13 +5485,13 @@ fi
 
 
 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
-    as_fn_error "GNU gettext tools not found; required for intltool" "$LINENO" 5
+    as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5
 fi
 xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
 mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
 mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
 if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
-    as_fn_error "GNU gettext tools not found; required for intltool" "$LINENO" 5
+    as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5
 fi
 
 # Extract the first word of "perl", so it can be a program name with args.
@@ -5517,13 +5535,13 @@ fi
 
 
 if test -z "$INTLTOOL_PERL"; then
-   as_fn_error "perl not found" "$LINENO" 5
+   as_fn_error $? "perl not found" "$LINENO" 5
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5
 $as_echo_n "checking for perl >= 5.8.1... " >&6; }
 $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
 if test $? -ne 0; then
-   as_fn_error "perl 5.8.1 is required for intltool" "$LINENO" 5
+   as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5
 else
    IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`"
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5
@@ -5536,7 +5554,7 @@ $as_echo_n "checking for XML::Parser... 
        { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
 $as_echo "ok" >&6; }
    else
-       as_fn_error "XML::Parser perl module is required for intltool" "$LINENO" 5
+       as_fn_error $? "XML::Parser perl module is required for intltool" "$LINENO" 5
    fi
 fi
 
@@ -5641,7 +5659,7 @@ test -n "$PYTHON" || PYTHON=":"
 
 
   if test "$PYTHON" = :; then
-      as_fn_error "no suitable Python interpreter found" "$LINENO" 5
+      as_fn_error $? "no suitable Python interpreter found" "$LINENO" 5
   else
 
 
@@ -5940,6 +5958,7 @@ DEFS=`sed -n "$ac_script" confdefs.h`
 
 ac_libobjs=
 ac_ltlibobjs=
+U=
 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
   # 1. Remove the extension, and $U if already installed.
   ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
@@ -5963,15 +5982,15 @@ else
 fi
 
 if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
-  as_fn_error "conditional \"MAINTAINER_MODE\" was never defined.
+  as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
-  as_fn_error "conditional \"AMDEP\" was never defined.
+  as_fn_error $? "conditional \"AMDEP\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
-  as_fn_error "conditional \"am__fastdepCC\" was never defined.
+  as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 
@@ -6125,19 +6144,19 @@ export LANGUAGE
 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
 
-# as_fn_error ERROR [LINENO LOG_FD]
-# ---------------------------------
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with status $?, using 1 if that was 0.
+# script with STATUS, using 1 if that was 0.
 as_fn_error ()
 {
-  as_status=$?; test $as_status -eq 0 && as_status=1
-  if test "$3"; then
-    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
+  as_status=$1; test $as_status -eq 0 && as_status=1
+  if test "$4"; then
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
   fi
-  $as_echo "$as_me: error: $1" >&2
+  $as_echo "$as_me: error: $2" >&2
   as_fn_exit $as_status
 } # as_fn_error
 
@@ -6333,7 +6352,7 @@ $as_echo X"$as_dir" |
       test -d "$as_dir" && break
     done
     test -z "$as_dirs" || eval "mkdir $as_dirs"
-  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 
 
 } # as_fn_mkdir_p
@@ -6386,8 +6405,8 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_wri
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by pessulus $as_me 2.30.2, which was
-generated by GNU Autoconf 2.65.  Invocation command line was
+This file was extended by pessulus $as_me 2.30.4, which was
+generated by GNU Autoconf 2.67.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
   CONFIG_HEADERS  = $CONFIG_HEADERS
@@ -6443,11 +6462,11 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-pessulus config.status 2.30.2
-configured by $0, generated by GNU Autoconf 2.65,
+pessulus config.status 2.30.4
+configured by $0, generated by GNU Autoconf 2.67,
   with options \\"\$ac_cs_config\\"
 
-Copyright (C) 2009 Free Software Foundation, Inc.
+Copyright (C) 2010 Free Software Foundation, Inc.
 This config.status script is free software; the Free Software Foundation
 gives unlimited permission to copy, distribute and modify it."
 
@@ -6465,11 +6484,16 @@ ac_need_defaults=:
 while test $# != 0
 do
   case $1 in
-  --*=*)
+  --*=?*)
     ac_option=`expr "X$1" : 'X\([^=]*\)='`
     ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
     ac_shift=:
     ;;
+  --*=)
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
+    ac_optarg=
+    ac_shift=:
+    ;;
   *)
     ac_option=$1
     ac_optarg=$2
@@ -6491,6 +6515,7 @@ do
     $ac_shift
     case $ac_optarg in
     *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+    '') as_fn_error $? "missing file argument" ;;
     esac
     as_fn_append CONFIG_FILES " '$ac_optarg'"
     ac_need_defaults=false;;
@@ -6501,7 +6526,7 @@ do
     ac_cs_silent=: ;;
 
   # This is an error.
-  -*) as_fn_error "unrecognized option: \`$1'
+  -*) as_fn_error $? "unrecognized option: \`$1'
 Try \`$0 --help' for more information." ;;
 
   *) as_fn_append ac_config_targets " $1"
@@ -6565,7 +6590,7 @@ do
     "data/pessulus.desktop.in") CONFIG_FILES="$CONFIG_FILES data/pessulus.desktop.in" ;;
     "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
 
-  *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
   esac
 done
 
@@ -6602,7 +6627,7 @@ $debug ||
 {
   tmp=./conf$$-$RANDOM
   (umask 077 && mkdir "$tmp")
-} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
 
 # Set up the scripts for CONFIG_FILES section.
 # No need to generate them if there are no CONFIG_FILES.
@@ -6619,7 +6644,7 @@ if test "x$ac_cr" = x; then
 fi
 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
-  ac_cs_awk_cr='\r'
+  ac_cs_awk_cr='\\r'
 else
   ac_cs_awk_cr=$ac_cr
 fi
@@ -6633,18 +6658,18 @@ _ACEOF
   echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
   echo "_ACEOF"
 } >conf$$subs.sh ||
-  as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
-ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
+  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
 ac_delim='%!_!# '
 for ac_last_try in false false false false false :; do
   . ./conf$$subs.sh ||
-    as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
   ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
   if test $ac_delim_n = $ac_delim_num; then
     break
   elif $ac_last_try; then
-    as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
   else
     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
   fi
@@ -6733,20 +6758,28 @@ if sed "s/$ac_cr//" < /dev/null > /dev/n
 else
   cat
 fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
-  || as_fn_error "could not setup config files machinery" "$LINENO" 5
+  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
 _ACEOF
 
-# VPATH may cause trouble with some makes, so we remove $(srcdir),
-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
 # trailing colons and then remove the whole line if VPATH becomes empty
 # (actually we leave an empty line to preserve line numbers).
 if test "x$srcdir" = x.; then
-  ac_vpsub='/^[	 ]*VPATH[	 ]*=/{
-s/:*\$(srcdir):*/:/
-s/:*\${srcdir}:*/:/
-s/:*@srcdir@:*/:/
-s/^\([^=]*=[	 ]*\):*/\1/
+  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
+h
+s///
+s/^/:/
+s/[	 ]*$/:/
+s/:\$(srcdir):/:/g
+s/:\${srcdir}:/:/g
+s/:@srcdir@:/:/g
+s/^:*//
 s/:*$//
+x
+s/\(=[	 ]*\).*/\1/
+G
+s/\n//
 s/^[^=]*=[	 ]*$//
 }'
 fi
@@ -6764,7 +6797,7 @@ do
   esac
   case $ac_mode$ac_tag in
   :[FHL]*:*);;
-  :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
+  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
   :[FH]-) ac_tag=-:-;;
   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
   esac
@@ -6792,7 +6825,7 @@ do
 	   [\\/$]*) false;;
 	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 	   esac ||
-	   as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
       esac
       case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
       as_fn_append ac_file_inputs " '$ac_f'"
@@ -6819,7 +6852,7 @@ $as_echo "$as_me: creating $ac_file" >&6
 
     case $ac_tag in
     *:-:* | *:-) cat >"$tmp/stdin" \
-      || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
     esac
     ;;
   esac
@@ -6956,22 +6989,22 @@ s&@MKDIR_P@&$ac_MKDIR_P&;t t
 $ac_datarootdir_hack
 "
 eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
-  || as_fn_error "could not create $ac_file" "$LINENO" 5
+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 
 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
   { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
   { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined.  Please make sure it is defined." >&5
+which seems to be undefined.  Please make sure it is defined" >&5
 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined.  Please make sure it is defined." >&2;}
+which seems to be undefined.  Please make sure it is defined" >&2;}
 
   rm -f "$tmp/stdin"
   case $ac_file in
   -) cat "$tmp/out" && rm -f "$tmp/out";;
   *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
   esac \
-  || as_fn_error "could not create $ac_file" "$LINENO" 5
+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  ;;
 
 
@@ -7082,7 +7115,7 @@ $as_echo X"$file" |
       esac ;;
     "po/stamp-it":C)
     if  ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then
-       as_fn_error "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5
+       as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5
     fi
     rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp"
     >"po/stamp-it.tmp"
@@ -7110,7 +7143,7 @@ _ACEOF
 ac_clean_files=$ac_clean_files_save
 
 test $ac_write_fail = 0 ||
-  as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
+  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
 
 
 # configure is writing to config.log, and then calls config.status.
@@ -7131,7 +7164,7 @@ if test "$no_create" != yes; then
   exec 5>>config.log
   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
   # would make configure fail if this is the last instruction.
-  $ac_cs_success || as_fn_exit $?
+  $ac_cs_success || as_fn_exit 1
 fi
 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
diff -pruN 2.30.2-1/Pessulus/Makefile.am 2.30.4-1/Pessulus/Makefile.am
--- 2.30.2-1/Pessulus/Makefile.am	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/Pessulus/Makefile.am	2010-09-20 16:42:17.000000000 +0100
@@ -16,11 +16,6 @@ app_PYTHON = 			\
 
 nodist_app_PYTHON = config.py
 
-CLEANFILES = config.py
-EXTRA_DIST = config.py.in
-
-all-local: config.py
-
 config.py: config.py.in Makefile
 	$(AM_V_GEN)sed								\
 		-e s!\@LOCALEDIR\@!$(datadir)/locale!			\
@@ -31,4 +26,8 @@ config.py: config.py.in Makefile
 		-e s!\@PACKAGE_VERSION\@!$(PACKAGE_VERSION)!		\
 		< $< > $@
 
+EXTRA_DIST = config.py.in
+
+CLEANFILES = config.py
+
 -include $(top_srcdir)/git.mk
diff -pruN 2.30.2-1/Pessulus/Makefile.in 2.30.4-1/Pessulus/Makefile.in
--- 2.30.2-1/Pessulus/Makefile.in	2011-02-09 12:31:45.000000000 +0000
+++ 2.30.4-1/Pessulus/Makefile.in	2011-02-09 12:25:41.000000000 +0000
@@ -139,6 +139,8 @@ PATH_SEPARATOR = @PATH_SEPARATOR@
 PESSULUS_CFLAGS = @PESSULUS_CFLAGS@
 PESSULUS_LIBS = @PESSULUS_LIBS@
 PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 POFILES = @POFILES@
 POSUB = @POSUB@
 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
@@ -217,8 +219,8 @@ app_PYTHON = \
 	simpleeditabletreeview.py
 
 nodist_app_PYTHON = config.py
-CLEANFILES = config.py
 EXTRA_DIST = config.py.in
+CLEANFILES = config.py
 all: all-am
 
 .SUFFIXES:
@@ -367,7 +369,7 @@ distdir: $(DISTFILES)
 	done
 check-am: all-am
 check: check-am
-all-am: Makefile all-local
+all-am: Makefile
 installdirs:
 	for dir in "$(DESTDIR)$(appdir)" "$(DESTDIR)$(appdir)"; do \
 	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
@@ -466,9 +468,9 @@ uninstall-am: uninstall-appPYTHON uninst
 
 .MAKE: install-am install-strip
 
-.PHONY: all all-am all-local check check-am clean clean-generic \
-	distclean distclean-generic distdir dvi dvi-am html html-am \
-	info info-am install install-am install-appPYTHON install-data \
+.PHONY: all all-am check check-am clean clean-generic distclean \
+	distclean-generic distdir dvi dvi-am html html-am info info-am \
+	install install-am install-appPYTHON install-data \
 	install-data-am install-dvi install-dvi-am install-exec \
 	install-exec-am install-html install-html-am install-info \
 	install-info-am install-man install-nodist_appPYTHON \
@@ -479,8 +481,6 @@ uninstall-am: uninstall-appPYTHON uninst
 	uninstall-appPYTHON uninstall-nodist_appPYTHON
 
 
-all-local: config.py
-
 config.py: config.py.in Makefile
 	$(AM_V_GEN)sed								\
 		-e s!\@LOCALEDIR\@!$(datadir)/locale!			\
diff -pruN 2.30.2-1/po/ast.po 2.30.4-1/po/ast.po
--- 2.30.2-1/po/ast.po	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/po/ast.po	2010-11-17 10:47:15.000000000 +0000
@@ -7,9 +7,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: pessulus\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus&component=general\n"
-"POT-Creation-Date: 2009-08-11 15:18+0000\n"
-"PO-Revision-Date: 2010-01-04 18:39+0100\n"
-"Last-Translator: astur <malditoastur@gmail.com>\n"
+"POT-Creation-Date: 2010-06-22 02:21+0000\n"
+"PO-Revision-Date: 2010-10-14 19:30+0100\n"
+"Last-Translator: Iñigo Varela <ivarela@softastur.org>\n"
 "Language-Team: ASTURIAN <gnome@softastur.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -30,12 +30,10 @@ msgid "Disable _unsafe protocols"
 msgstr "Desactivar protocolos non seguros"
 
 #: ../data/pessulus.ui.h:2
-#| msgid "<b>Disabled Applets</b>"
 msgid "Disabled Applets"
 msgstr "Desactivar Applets"
 
 #: ../data/pessulus.ui.h:4
-#| msgid "<b>Safe Protocols</b>"
 msgid "Safe Protocols"
 msgstr "Protocolos seguros"
 
@@ -65,81 +63,81 @@ msgstr "Curiapantalles GNOME"
 
 #: ../Pessulus/maindialog.py:53
 msgid "Disable _command line"
-msgstr "Desactivar llinia de comandos"
+msgstr "Desactivar llinia de _comandos"
 
 #: ../Pessulus/maindialog.py:54
 msgid "Disable _printing"
-msgstr "Desactivar imprentación"
+msgstr "Desactivar i_mprentación"
 
 #: ../Pessulus/maindialog.py:55
 msgid "Disable print _setup"
-msgstr "Desactivar la configuración de la imprentadora"
+msgstr "De_sactivar la configuración de la imprentadora"
 
 #: ../Pessulus/maindialog.py:56
 msgid "Disable save to _disk"
-msgstr "Desactivar guardar al discu"
+msgstr "Desactivar guardar al _discu"
 
 #: ../Pessulus/maindialog.py:58
 msgid "_Lock down the panels"
-msgstr "Torgar los paneles"
+msgstr "T_orgar los paneles"
 
 #: ../Pessulus/maindialog.py:59
 msgid "Disable force _quit"
-msgstr "Desactivar forciar colar"
+msgstr "Desactivar forciar _colar"
 
 #: ../Pessulus/maindialog.py:60
-msgid "Disable lock _screen"
-msgstr "Desactivar bloquiar pantalla"
-
-#: ../Pessulus/maindialog.py:61
 msgid "Disable log _out"
-msgstr "Desacivar el zarrar la sesión"
+msgstr "Desactivar el _zarrar la sesión"
 
-#: ../Pessulus/maindialog.py:63
+#: ../Pessulus/maindialog.py:62
 msgid "Disable _quit"
-msgstr "Forciar colar"
+msgstr "Forciar _colar"
 
-#: ../Pessulus/maindialog.py:64
+#: ../Pessulus/maindialog.py:63
 msgid "Disable _arbitrary URL"
-msgstr "Desactivar URLs arbitraries"
+msgstr "Desactivar URLs _arbitraries"
 
-#: ../Pessulus/maindialog.py:65
+#: ../Pessulus/maindialog.py:64
 msgid "Disable _bookmark editing"
-msgstr "Desactivar edición de marcadores"
+msgstr "Desactivar edición de _marcadores"
 
-#: ../Pessulus/maindialog.py:66
+#: ../Pessulus/maindialog.py:65
 msgid "Disable _history"
 msgstr "Desactivar la _historia"
 
-#: ../Pessulus/maindialog.py:67
+#: ../Pessulus/maindialog.py:66
 msgid "Disable _javascript chrome"
 msgstr "Desactivar _javascript chrome"
 
-#: ../Pessulus/maindialog.py:68
+#: ../Pessulus/maindialog.py:67
 msgid "Disable _toolbar editing"
-msgstr "Desactivar edición de barres de ferramientes"
+msgstr "Desactivar e_dición de barres de ferramientes"
 
-#: ../Pessulus/maindialog.py:69
+#: ../Pessulus/maindialog.py:68
 msgid "Force _fullscreen mode"
-msgstr "Forciar el modu de pantalla completa"
+msgstr "Forciar el _mou de pantalla completa"
 
-#: ../Pessulus/maindialog.py:70
+#: ../Pessulus/maindialog.py:69
 msgid "Hide _menubar"
-msgstr "Esconder la barra de menús"
+msgstr "Anubrir la _barra de menús"
 
 #: ../Pessulus/maindialog.py:71
-msgid "_Lock on activation"
-msgstr "Bloquiar al activase"
+msgid "Disable lock _screen"
+msgstr "Desactivar b_loquiar pantalla"
 
 #: ../Pessulus/maindialog.py:72
-msgid "Allow log _out"
-msgstr "Dexar que se zarre la sesión"
+msgid "_Lock on activation"
+msgstr "Bl_oquiar al activase"
 
 #: ../Pessulus/maindialog.py:73
+msgid "Allow log _out"
+msgstr "Permitir que se _zarre la sesión"
+
+#: ../Pessulus/maindialog.py:74
 msgid "Allow user _switching"
-msgstr "Permitir cambéu d'usuariu"
+msgstr "Permitir ca_mbéu d'usuariu"
 
-#: ../Pessulus/maindialog.py:232
+#: ../Pessulus/maindialog.py:233
 #, python-format
 msgid "Could not display help document '%s'"
 msgstr "Nun pudo amosase'l documentu d'aida «%s»"
@@ -154,5 +152,5 @@ msgid ""
 "If this is not the case, you can look at the output of the application to get more details."
 msgstr ""
 "Esto suel pasar cuando tas executando esti programa con 'su' en cuenta de 'su -'.\n"
-"Si nun ye esti casu, puede revisar la salida del programa pa tener más detalles."
+"Si nun ye esti casu, puedes revisar la salida del programa pa tener más detalles."
 
diff -pruN 2.30.2-1/po/ca@valencia.po 2.30.4-1/po/ca@valencia.po
--- 2.30.2-1/po/ca@valencia.po	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/po/ca@valencia.po	2010-11-17 10:47:15.000000000 +0000
@@ -6,15 +6,15 @@
 #
 # Use sabayon/po/ca.po as a compendium for updating this file.
 #
-# Carles Ferrando Garcia <carles.ferrando@gmail.com>, 2009.
 msgid ""
 msgstr ""
 "Project-Id-Version: pessulus\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-17 11:18+0200\n"
-"PO-Revision-Date: 2009-10-11 15:27+0200\n"
-"Last-Translator: Carles Ferrando Garcia <carles.ferrando@gmail.com>\n"
-"Language-Team: Catalan (Valencià) <tradgnome@softcatala.org>\n"
+"POT-Creation-Date: 2010-10-29 21:40+0100\n"
+"PO-Revision-Date: 2010-06-19 23:54+0200\n"
+"Last-Translator: josep <josep.puigdemont@gmail.com>\n"
+"Language-Team: Catalan <tradgnome@softcatala.org>\n"
+"Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -78,7 +78,7 @@ msgstr "Inhabilita la _configuració de 
 
 #: ../Pessulus/maindialog.py:56
 msgid "Disable save to _disk"
-msgstr "Inhabilita alçar al _disc"
+msgstr "Inhabilita _desar al disc"
 
 #: ../Pessulus/maindialog.py:58
 msgid "_Lock down the panels"
@@ -90,7 +90,7 @@ msgstr "Inhabilita la eixida _forçada d
 
 #: ../Pessulus/maindialog.py:60
 msgid "Disable log _out"
-msgstr "Inhabilita l'_eixida"
+msgstr "Inhabilita la _sortida"
 
 #: ../Pessulus/maindialog.py:62
 msgid "Disable _quit"
@@ -110,7 +110,7 @@ msgstr "Inhabilita l'_historial"
 
 #: ../Pessulus/maindialog.py:66
 msgid "Disable _javascript chrome"
-msgstr "Inhabilita el _javascript del chrome"
+msgstr "Inhabilita el _javascript chrome"
 
 #: ../Pessulus/maindialog.py:67
 msgid "Disable _toolbar editing"
@@ -134,7 +134,7 @@ msgstr "_Bloca quan s'active"
 
 #: ../Pessulus/maindialog.py:73
 msgid "Allow log _out"
-msgstr "Permet _eixir"
+msgstr "Permet _sortir"
 
 #: ../Pessulus/maindialog.py:74
 msgid "Allow user _switching"
@@ -156,6 +156,15 @@ msgid ""
 "If this is not the case, you can look at the output of the application to "
 "get more details."
 msgstr ""
-"Normalment passa quan esta aplicació s'executa amb «su» en comptes de «su -».\n"
+"Normalment passa quan esta aplicació s'executa amb «su» en comptes de «su "
+"-».\n"
 "Si no és el cas, podeu mirar la eixida de l'aplicació per a obtindre'n molts "
 "detalls."
+
+#~ msgid "Could not import the bugbuddy Python bindings"
+#~ msgstr "No s'han pogut importar les vinculacions de Python del BugBuddy"
+
+#~ msgid "Make sure you have the bugbuddy Python bindings installed"
+#~ msgstr ""
+#~ "Assegureu-vos que teniu les vinculacions de Python del BugBuddy "
+#~ "instal·lades"
diff -pruN 2.30.2-1/po/fa.po 2.30.4-1/po/fa.po
--- 2.30.2-1/po/fa.po	1970-01-01 01:00:00.000000000 +0100
+++ 2.30.4-1/po/fa.po	2010-11-17 10:47:15.000000000 +0000
@@ -0,0 +1,162 @@
+# Persian translation for pessulus.
+# Copyright (C) 2010 Iranian Free Software Users Group (IFSUG.org)translation team.
+# This file is distributed under the same license as the pessulus package.
+# Mahyar Moghimi <mahyar.moqimi@gmail.com>, 2010.
+# Mostafa Mostafa <lashar@fedoraproject.org> , 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pessulus master\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
+"product=pessulus&component=general\n"
+"POT-Creation-Date: 2010-10-29 20:45+0000\n"
+"PO-Revision-Date: 2010-10-30 14:35+0330\n"
+"Last-Translator: Mahyar Moghimi <mahyar.moqimi@gmail.com>\n"
+"Language-Team: Persian <translate@ifsug.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Persian\n"
+"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: ../data/pessulus.desktop.in.in.h:1
+msgid "Configure the lockdown policy"
+msgstr "پیکربندی سیاست قفل گذاری"
+
+#: ../data/pessulus.desktop.in.in.h:2 ../data/pessulus.ui.h:3
+#: ../Pessulus/main.py:54
+msgid "Lockdown Editor"
+msgstr "قفل کردن _ویرایشگر"
+
+#: ../data/pessulus.ui.h:1
+msgid "Disable _unsafe protocols"
+msgstr "غیرفعال کردن _قراداد های ناایمن"
+
+#: ../data/pessulus.ui.h:2
+msgid "Disabled Applets"
+msgstr "برنامک‌های غیر فعال شده"
+
+#: ../data/pessulus.ui.h:4
+msgid "Safe Protocols"
+msgstr "قراردادهای ایمن"
+
+#: ../Pessulus/lockdownbutton.py:100
+msgid "Click to make this setting not mandatory"
+msgstr "برای غیر اجباری کردن این حالت کلیک کنید"
+
+#: ../Pessulus/lockdownbutton.py:102
+msgid "Click to make this setting mandatory"
+msgstr "برای اجباری کردن این حالت کلیک"
+
+#: ../Pessulus/maindialog.py:40
+msgid "General"
+msgstr "کلی"
+
+#: ../Pessulus/maindialog.py:41
+msgid "Panel"
+msgstr "تابلو"
+
+#: ../Pessulus/maindialog.py:42
+msgid "Epiphany Web Browser"
+msgstr "مرورگر وب اپیی‌فانی"
+
+#: ../Pessulus/maindialog.py:43
+msgid "GNOME Screensaver"
+msgstr "محافظ صفحه نمایش گنوم"
+
+#: ../Pessulus/maindialog.py:53
+msgid "Disable _command line"
+msgstr "از کار انداختن _خط فرمان"
+
+#: ../Pessulus/maindialog.py:54
+msgid "Disable _printing"
+msgstr "از کار انداختن _چاپ"
+
+#: ../Pessulus/maindialog.py:55
+msgid "Disable print _setup"
+msgstr "از کار انداختن _برپایی چاپ"
+
+#: ../Pessulus/maindialog.py:56
+msgid "Disable save to _disk"
+msgstr "از کار انداختن ذخیره بر روی _دیسک"
+
+#: ../Pessulus/maindialog.py:58
+msgid "_Lock down the panels"
+msgstr "قفل کزدن _تابلو‌ها"
+
+#: ../Pessulus/maindialog.py:59
+msgid "Disable force _quit"
+msgstr "از کار انداختن _تَرک اجباری"
+
+#: ../Pessulus/maindialog.py:60
+msgid "Disable log _out"
+msgstr "از کار انداختن _خروج"
+
+#: ../Pessulus/maindialog.py:62
+msgid "Disable _quit"
+msgstr "از کار انداختن _تَرک"
+
+#: ../Pessulus/maindialog.py:63
+msgid "Disable _arbitrary URL"
+msgstr "از کار انداختن استفاده از _نشانی وبی دلخواه"
+
+#: ../Pessulus/maindialog.py:64
+msgid "Disable _bookmark editing"
+msgstr "از کار انداختن ویرایش چوب الف‌"
+
+#: ../Pessulus/maindialog.py:65
+msgid "Disable _history"
+msgstr "از کار انداختن _تاریخچه"
+
+#: ../Pessulus/maindialog.py:66
+msgid "Disable _javascript chrome"
+msgstr "از کار انداختن کروم دست نوشته _جاوا"
+
+#: ../Pessulus/maindialog.py:67
+msgid "Disable _toolbar editing"
+msgstr "از کار انداختن ویرایش _میله‌ی ابزار"
+
+#: ../Pessulus/maindialog.py:68
+msgid "Force _fullscreen mode"
+msgstr "زور کردنِ نمایش در حالت _تمام صفحه"
+
+#: ../Pessulus/maindialog.py:69
+msgid "Hide _menubar"
+msgstr "مخفی کردن میله _گزینگان"
+
+#: ../Pessulus/maindialog.py:71
+msgid "Disable lock _screen"
+msgstr "از کار انداختن قفل _صفحه نمایش"
+
+#: ../Pessulus/maindialog.py:72
+msgid "_Lock on activation"
+msgstr "_قفل کردن در هنگام فعال سازی"
+
+#: ../Pessulus/maindialog.py:73
+msgid "Allow log _out"
+msgstr "دادن اجازه _خروج"
+
+#: ../Pessulus/maindialog.py:74
+msgid "Allow user _switching"
+msgstr "دادن اجازه‌ی _تعویض کاربر"
+
+#: ../Pessulus/maindialog.py:233
+#, python-format
+msgid "Could not display help document '%s'"
+msgstr "نمی‌توان سند راهنما  «%s» را نمایش داد "
+
+#: ../Pessulus/main.py:49
+msgid "Cannot contact the GConf server"
+msgstr "نمی‌توان با خادم GConf ارتباط برقرار کرد"
+
+#: ../Pessulus/main.py:50
+msgid ""
+"This usually happens when running this application with 'su' instead of 'su "
+"-'.\n"
+"If this is not the case, you can look at the output of the application to "
+"get more details."
+msgstr ""
+"این معمولا وقتی اتفاق می‌افتد که برنامه را 'su' اجرا کرده باشید به جای 'su "
+"-'.\n"
+"اگر ماجرا این نیست، می‌توانید خروجی برنامه را برای جزئیات بیشتر ببینید."
diff -pruN 2.30.2-1/po/gl.po 2.30.4-1/po/gl.po
--- 2.30.2-1/po/gl.po	2010-06-22 02:57:33.000000000 +0100
+++ 2.30.4-1/po/gl.po	2010-08-04 12:22:29.000000000 +0100
@@ -14,7 +14,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: pessulus.master\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-19 14:55+0200\n"
+"POT-Creation-Date: 2010-07-21 14:43+0200\n"
 "PO-Revision-Date: 2010-06-19 14:56+0200\n"
 "Last-Translator: Fran Diéguez <frandieguez@ubuntu.com>\n"
 "Language-Team: Galician <gnome@g11.net>\n"
@@ -28,7 +28,7 @@ msgid "Configure the lockdown policy"
 msgstr "Configurar a política de bloqueos"
 
 #: ../data/pessulus.desktop.in.in.h:2 ../data/pessulus.ui.h:3
-#: ../Pessulus/main.py:88
+#: ../Pessulus/main.py:54
 msgid "Lockdown Editor"
 msgstr "Editor de restricións"
 
@@ -149,19 +149,11 @@ msgstr "Permitir cam_biar de usuario"
 msgid "Could not display help document '%s'"
 msgstr "Non foi posíbel mostrar o documento de axuda «%s»"
 
-#: ../Pessulus/main.py:38
-msgid "Could not import the bugbuddy Python bindings"
-msgstr "Non foi posíbel importar os bindings de Python para bugbuddy"
-
-#: ../Pessulus/main.py:39
-msgid "Make sure you have the bugbuddy Python bindings installed"
-msgstr "Asegúrese que ten instalados os bindings de Python para bugbuddy"
-
-#: ../Pessulus/main.py:83
+#: ../Pessulus/main.py:49
 msgid "Cannot contact the GConf server"
 msgstr "Non foi posíbel contactar co servidor Gconf"
 
-#: ../Pessulus/main.py:84
+#: ../Pessulus/main.py:50
 msgid ""
 "This usually happens when running this application with 'su' instead of 'su "
 "-'.\n"
diff -pruN 2.30.2-1/po/id.po 2.30.4-1/po/id.po
--- 2.30.2-1/po/id.po	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/po/id.po	2010-09-08 18:24:49.000000000 +0100
@@ -1,40 +1,45 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# translation of pessulus.master.po to Indonesian
+# Copyright (C) 2006 THE pessulus'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the pessulus package.
 #
+# Ahmad Riza H Nst <rizahnst@gnome.org>, 2006.
+# Mohammad DAMT <mdamt@bisnisweb.com>, 2009.
+# Dirgita <dirgitadevina@gmail.com>, 2010.
+# Dirgita <dirgitadevina@yahoo.co.id>, 2010.
 msgid ""
 msgstr ""
-"Project-Id-Version: Pessulus.gnome.2.24\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-21 15:38+0300\n"
-"PO-Revision-Date: 2009-10-13 13:12+0700\n"
-"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
-"Language-Team: Bahasa Indonesia <LL@li.org>\n"
+"Project-Id-Version: pessulus.master\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
+"product=pessulus&component=general\n"
+"POT-Creation-Date: 2010-07-21 12:44+0000\n"
+"PO-Revision-Date: 2010-08-28 22:19+0700\n"
+"Last-Translator: Dirgita <dirgitadevina@yahoo.co.id>\n"
+"Language-Team: GNOME Indonesian Translation Team <gnome@i15n.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Poedit-Language: Indonesian\n"
 "X-Poedit-Country: INDONESIA\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: ../data/pessulus.desktop.in.in.h:1
 msgid "Configure the lockdown policy"
-msgstr "Konfigurasi kebijakan penahanan"
+msgstr "Konfigurasi kebijakan kuncian"
 
-#: ../data/pessulus.desktop.in.in.h:2
-#: ../data/pessulus.ui.h:3
+#: ../data/pessulus.desktop.in.in.h:2 ../data/pessulus.ui.h:3
 #: ../Pessulus/main.py:54
 msgid "Lockdown Editor"
-msgstr "Editor Penahanan"
+msgstr "Penyunting Kuncian"
 
 #: ../data/pessulus.ui.h:1
 msgid "Disable _unsafe protocols"
-msgstr "Nonaktifkan protokol tidak _aman"
+msgstr "_Nonaktifkan protokol tak aman"
 
 #: ../data/pessulus.ui.h:2
 msgid "Disabled Applets"
-msgstr "Aplet Dinon-aktifkan"
+msgstr "Aplet Dinonaktifkan"
 
 #: ../data/pessulus.ui.h:4
 msgid "Safe Protocols"
@@ -42,11 +47,11 @@ msgstr "Protokol Aman"
 
 #: ../Pessulus/lockdownbutton.py:100
 msgid "Click to make this setting not mandatory"
-msgstr "Klik untuk menjadikan setelan ini tidak wajib"
+msgstr "Klik untuk membuat setelan ini tidak wajib"
 
 #: ../Pessulus/lockdownbutton.py:102
 msgid "Click to make this setting mandatory"
-msgstr "Klik untuk menjadikan setelan ini wajib"
+msgstr "Klik untuk membuat setelan ini wajib"
 
 #: ../Pessulus/maindialog.py:40
 msgid "General"
@@ -58,11 +63,11 @@ msgstr "Panel"
 
 #: ../Pessulus/maindialog.py:42
 msgid "Epiphany Web Browser"
-msgstr "Peramban Web Epiphany"
+msgstr "Epiphany Peramban Web"
 
 #: ../Pessulus/maindialog.py:43
 msgid "GNOME Screensaver"
-msgstr "Screensaver GNOME"
+msgstr "Pengaman Layar GNOME"
 
 #: ../Pessulus/maindialog.py:53
 msgid "Disable _command line"
@@ -74,23 +79,23 @@ msgstr "Nonaktifkan _pencetakan"
 
 #: ../Pessulus/maindialog.py:55
 msgid "Disable print _setup"
-msgstr "Nonaktifkan _setelan pencetakan"
+msgstr "Nonaktifkan _setelan mencetak"
 
 #: ../Pessulus/maindialog.py:56
 msgid "Disable save to _disk"
-msgstr "Nonaktifkan simpan ke _disk"
+msgstr "Nonaktifkan simpan ke _diska"
 
 #: ../Pessulus/maindialog.py:58
 msgid "_Lock down the panels"
-msgstr "Tahan pane_l"
+msgstr "Kunci pane_l"
 
 #: ../Pessulus/maindialog.py:59
 msgid "Disable force _quit"
-msgstr "Nonaktifkan keluar _paksa"
+msgstr "Nonaktifkan tutup _paksa"
 
 #: ../Pessulus/maindialog.py:60
 msgid "Disable log _out"
-msgstr "Nonaktifkan _log keluar"
+msgstr "Nonaktifkan l_og keluar"
 
 #: ../Pessulus/maindialog.py:62
 msgid "Disable _quit"
@@ -98,11 +103,11 @@ msgstr "Nonaktifkan _keluar"
 
 #: ../Pessulus/maindialog.py:63
 msgid "Disable _arbitrary URL"
-msgstr "Nonaktifkan sebarang _URL"
+msgstr "Non_aktifkan sebarang URL"
 
 #: ../Pessulus/maindialog.py:64
 msgid "Disable _bookmark editing"
-msgstr "Nonaktifkan pengeditan _bookmark"
+msgstr "Nonaktifkan menyunting _penanda tautan"
 
 #: ../Pessulus/maindialog.py:65
 msgid "Disable _history"
@@ -114,19 +119,19 @@ msgstr "Nonaktifkan _javascript chrome"
 
 #: ../Pessulus/maindialog.py:67
 msgid "Disable _toolbar editing"
-msgstr "Nonaktifkan pengeditan _toolbar"
+msgstr "Nonak_tifkan menyunting baris alat"
 
 #: ../Pessulus/maindialog.py:68
 msgid "Force _fullscreen mode"
-msgstr "Paksakan mode layar penuh"
+msgstr "Paksakan mode _layar penuh"
 
 #: ../Pessulus/maindialog.py:69
 msgid "Hide _menubar"
-msgstr "Sembunyikan batang _menu"
+msgstr "Sembunyikan baris _menu"
 
 #: ../Pessulus/maindialog.py:71
 msgid "Disable lock _screen"
-msgstr "Nonaktifkan pengunc_ian layar"
+msgstr "Nonaktifkan _kunci layar"
 
 #: ../Pessulus/maindialog.py:72
 msgid "_Lock on activation"
@@ -143,17 +148,20 @@ msgstr "Izinkan pergantian _pengguna"
 #: ../Pessulus/maindialog.py:233
 #, python-format
 msgid "Could not display help document '%s'"
-msgstr "Tak bisa tampilkan dokumen bantuan '%s'"
+msgstr "Tidak dapat membuka dokumen bantuan '%s'"
 
 #: ../Pessulus/main.py:49
 msgid "Cannot contact the GConf server"
-msgstr "Tak dapat menghubungi server GConf"
+msgstr "Tidak dapat menghubungi server GConf"
 
 #: ../Pessulus/main.py:50
 msgid ""
-"This usually happens when running this application with 'su' instead of 'su -'.\n"
-"If this is not the case, you can look at the output of the application to get more details."
+"This usually happens when running this application with 'su' instead of 'su "
+"-'.\n"
+"If this is not the case, you can look at the output of the application to "
+"get more details."
 msgstr ""
-"Ini biasanya terjadi ketika menjalankan aplikasi ini dengan 'su' alih-alih 'su -'.\n"
-"Bila bukan ini masalahnya, Anda dapat melihat keluaran dari aplikasi untuk memperoleh rincian."
-
+"Ini biasanya terjadi ketika menjalankan aplikasi ini dengan perintah 'su' "
+"alih-alih 'su -'.\n"
+"Bila bukan ini masalahnya, Anda dapat melihat keluaran dari aplikasi ini "
+"untuk memperoleh gambaran yang lebih rinci."
diff -pruN 2.30.2-1/po/ja.po 2.30.4-1/po/ja.po
--- 2.30.2-1/po/ja.po	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/po/ja.po	2010-09-20 16:42:16.000000000 +0100
@@ -1,14 +1,15 @@
 # pessulus ja.po.
-# Copyright (C) 2005,2006,2009 Free Software Foundation, Inc.
+# Copyright (C) 2005,2006,2009,2010 Free Software Foundation, Inc.
 # This file is distributed under the same license as the pessulus package.
 # Takeshi AIHANA <takeshi.aihana@gmail.com>, 2005,2006,2009.
 # Satoru SATOH <ss@gnome.gr.jp>, 2006.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: pessulus trunk\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-15 12:31+0900\n"
+"Project-Id-Version: pessulus master\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
+"product=pessulus&component=general\n"
+"POT-Creation-Date: 2010-09-14 12:48+0000\n"
 "PO-Revision-Date: 2009-10-15 12:28+0900\n"
 "Last-Translator: Takeshi AIHANA <takeshi.aihana@gmail.com>\n"
 "Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
@@ -115,7 +116,7 @@ msgstr "ツールバーの編集を無
 
 #: ../Pessulus/maindialog.py:68
 msgid "Force _fullscreen mode"
-msgstr "強制的にフルスクリーン・モードにする(_F)"
+msgstr "強制的にフルスクリーンモードにする(_F)"
 
 #: ../Pessulus/maindialog.py:69
 msgid "Hide _menubar"
@@ -156,4 +157,4 @@ msgstr ""
 "一般的に、この現象は Pessulus を 'su -' ではなく 'su' で起動した場合に発生し"
 "ます。\n"
 "もしこれに該当しない場合は、このアプリケーションのログから問題の詳細を調査し"
-"てみて下さい。"
+"てみてください。"
diff -pruN 2.30.2-1/po/ku.po 2.30.4-1/po/ku.po
--- 2.30.2-1/po/ku.po	2010-02-09 13:37:05.000000000 +0000
+++ 2.30.4-1/po/ku.po	2010-11-17 10:47:15.000000000 +0000
@@ -1,49 +1,52 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
+# OMER ENSARİ <oensari@gmail.com>, 2010.
+# Erdal Ronahî <erdal dot ronahi at gmail dot com>, 2010.
 msgid ""
 msgstr ""
-"Project-Id-Version: pessulus\n"
+"Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-01-03 01:13+0100\n"
-"PO-Revision-Date: 2007-01-03 01:17+0100\n"
-"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
-"Language-Team: Kurdish <ku@li.org>\n"
+"PO-Revision-Date: 2010-10-26 18:39+0200\n"
+"Last-Translator: Erdal Ronahî <erdal dot ronahi at gmail dot com>\n"
+"Language-Team: Kurdish Team http://pckurd.net\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Kurdish\n"
+"Language: ku\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Virtaal 0.6.1\n"
 
 #: ../data/pessulus.desktop.in.in.h:1
 msgid "Configure the lockdown policy"
-msgstr ""
+msgstr "Rêgeza quflkirinê ava bike"
 
-#: ../data/pessulus.desktop.in.in.h:2
-#: ../data/pessulus.glade.h:4
+#: ../data/pessulus.desktop.in.in.h:2 ../data/pessulus.glade.h:4
 msgid "Lockdown Editor"
-msgstr ""
+msgstr "Edîtorê qufilan"
 
 #: ../data/pessulus.glade.h:1
+#, fuzzy
 msgid "<b>Disabled Applets</b>"
-msgstr ""
+msgstr "Sepanokan bêbandor"
 
 #: ../data/pessulus.glade.h:2
+#, fuzzy
 msgid "<b>Safe Protocols</b>"
-msgstr ""
+msgstr "Protokolên ewle"
 
 #: ../data/pessulus.glade.h:3
 msgid "Disable _unsafe protocols"
-msgstr ""
+msgstr "Protokolên ne _ewle bêbandor bike"
 
 #: ../Pessulus/lockdownbutton.py:99
 msgid "Click to make this setting not mandatory"
-msgstr ""
+msgstr "Ji bo ev mîhengê bibe ne pêwist bitikîne"
 
 #: ../Pessulus/lockdownbutton.py:101
 msgid "Click to make this setting mandatory"
-msgstr ""
+msgstr "Ji bo ev mîhengê bibe pêwist bitikîne"
 
 #: ../Pessulus/maindialog.py:43
 msgid "General"
@@ -55,71 +58,71 @@ msgstr "Panel"
 
 #: ../Pessulus/maindialog.py:45
 msgid "Epiphany Web Browser"
-msgstr "Geroka Torê ya Epiphany"
+msgstr "Epiphany Geroka înternetê"
 
 #: ../Pessulus/maindialog.py:46
 msgid "GNOME Screensaver"
-msgstr "Dîmenderparêzera GNOME'yê"
+msgstr "GNOME Dîmenderparêz"
 
 #: ../Pessulus/maindialog.py:56
 msgid "Disable _command line"
-msgstr ""
+msgstr "Rêza _fermanê bêbandor bike"
 
 #: ../Pessulus/maindialog.py:57
 msgid "Disable _printing"
-msgstr ""
+msgstr "_Çapkirinê bêbandor bike"
 
 #: ../Pessulus/maindialog.py:58
 msgid "Disable print _setup"
-msgstr ""
+msgstr "_Veavakirina çapê bêbandor bike"
 
 #: ../Pessulus/maindialog.py:59
 msgid "Disable save to _disk"
-msgstr ""
+msgstr "Tomarkirina li _dîskê bêbandor bike"
 
 #: ../Pessulus/maindialog.py:61
 msgid "_Lock down the panels"
-msgstr ""
+msgstr "Panelan _qufl bike"
 
 #: ../Pessulus/maindialog.py:62
 msgid "Disable force _quit"
-msgstr ""
+msgstr "Bi zordarî _derketinê bêbandor bike"
 
 #: ../Pessulus/maindialog.py:63
 msgid "Disable lock _screen"
-msgstr ""
+msgstr "Quflkirina _dîmenderê bêbandor bike"
 
 #: ../Pessulus/maindialog.py:64
 msgid "Disable log _out"
-msgstr ""
+msgstr "_Derketinê bêbandor bike"
 
 #: ../Pessulus/maindialog.py:66
 msgid "Disable _quit"
-msgstr ""
+msgstr "_Derketinê bêbandor bike"
 
 #: ../Pessulus/maindialog.py:67
 msgid "Disable _arbitrary URL"
-msgstr ""
+msgstr "URLya _rasthatî bêbandor bike"
 
 #: ../Pessulus/maindialog.py:68
 msgid "Disable _bookmark editing"
-msgstr ""
+msgstr "Guherandina _bijare bêbandor bike"
 
 #: ../Pessulus/maindialog.py:69
 msgid "Disable _history"
-msgstr ""
+msgstr "_Dîrokê bêbandor bike"
 
 #: ../Pessulus/maindialog.py:70
 msgid "Disable _javascript chrome"
-msgstr ""
+msgstr "_Javascript chrome bêbandor bike"
 
 #: ../Pessulus/maindialog.py:71
 msgid "Disable _toolbar editing"
-msgstr ""
+msgstr "Guherandina darika _amûran bêbandor bike"
 
 #: ../Pessulus/maindialog.py:72
 msgid "Force _fullscreen mode"
-msgstr ""
+msgstr "Bi zordarî moda dîmender _tijî"
 
 #: ../Pessulus/maindialog.py:73
 msgid "Hide _menubar"
@@ -127,13 +130,28 @@ msgstr "Darikê _pêşekê veşêre"
 
 #: ../Pessulus/maindialog.py:74
 msgid "_Lock on activation"
-msgstr ""
+msgstr "Di çalakiyê de _qufl bike"
 
 #: ../Pessulus/maindialog.py:75
 msgid "Allow log _out"
-msgstr ""
+msgstr "Destûr bide _derketinê"
 
 #: ../Pessulus/maindialog.py:76
 msgid "Allow user _switching"
-msgstr ""
+msgstr "Destûr bide bikarhêner _guherînê"
+
+#~ msgid "Could not display help document '%s'"
+#~ msgstr "Belgeya alîkariyê '%s' nayê nîşandan"
+
+#~ msgid "Cannot contact the GConf server"
+#~ msgstr "Nikare bi pêşkêşkera GConf re bikeve têkiliyê"
 
+#~ msgid ""
+#~ "This usually happens when running this application with 'su' instead of "
+#~ "'su -'.\n"
+#~ "If this is not the case, you can look at the output of the application to "
+#~ "get more details."
+#~ msgstr ""
+#~ "Ev piranî wextê ev sepan şûna 'su -' bi 'su' re tê meşandin çêdibe.\n"
+#~ "Heke rewşa we ne ev be, hun dikarin ji bo zêdetir kitekitan deranîna "
+#~ "sepanê binihêrin."
diff -pruN 2.30.2-1/po/LINGUAS 2.30.4-1/po/LINGUAS
--- 2.30.2-1/po/LINGUAS	2010-06-22 02:57:33.000000000 +0100
+++ 2.30.4-1/po/LINGUAS	2010-11-17 10:47:15.000000000 +0000
@@ -26,6 +26,7 @@ eo
 es
 et
 eu
+fa
 fi
 fr
 gl
@@ -45,6 +46,7 @@ mk
 ml
 mn
 mr
+ms
 nb
 nds
 ne
diff -pruN 2.30.2-1/po/ms.po 2.30.4-1/po/ms.po
--- 2.30.2-1/po/ms.po	1970-01-01 01:00:00.000000000 +0100
+++ 2.30.4-1/po/ms.po	2010-08-04 12:22:29.000000000 +0100
@@ -0,0 +1,156 @@
+# Malay translation for pessulus.
+# Copyright (C) 2010 pessulus's COPYRIGHT HOLDER
+# This file is distributed under the same license as the pessulus package.
+# Umarzuki Bin Mochlis Moktar <umar@umarzuki.org>, 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pessulus master\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus&component=general\n"
+"POT-Creation-Date: 2010-06-22 02:21+0000\n"
+"PO-Revision-Date: 2010-07-08 21:26+0730\n"
+"Last-Translator: Umarzuki Bin Mochlis Moktar <umar@umarzuki.com>\n"
+"Language-Team: Malay <ms@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../data/pessulus.desktop.in.in.h:1
+msgid "Configure the lockdown policy"
+msgstr "Konfigur polisi lockdown"
+
+#: ../data/pessulus.desktop.in.in.h:2
+#: ../data/pessulus.ui.h:3
+#: ../Pessulus/main.py:54
+msgid "Lockdown Editor"
+msgstr "Pengedit Lockdown"
+
+#: ../data/pessulus.ui.h:1
+msgid "Disable _unsafe protocols"
+msgstr "L_umpuhkan protokol tak selamat"
+
+#: ../data/pessulus.ui.h:2
+msgid "Disabled Applets"
+msgstr "Aplet-aplet Dilumpuhkan"
+
+#: ../data/pessulus.ui.h:4
+msgid "Safe Protocols"
+msgstr "Protokol-protokol selamat "
+
+#: ../Pessulus/lockdownbutton.py:100
+msgid "Click to make this setting not mandatory"
+msgstr "Klik untuk menjadikan tetapan ini wajib"
+
+#: ../Pessulus/lockdownbutton.py:102
+msgid "Click to make this setting mandatory"
+msgstr "Klik untuk menjadikan tetapan ini wajib"
+
+#: ../Pessulus/maindialog.py:40
+msgid "General"
+msgstr "Umum"
+
+#: ../Pessulus/maindialog.py:41
+msgid "Panel"
+msgstr "Panel"
+
+#: ../Pessulus/maindialog.py:42
+msgid "Epiphany Web Browser"
+msgstr "Pelungsur Web Epiphany"
+
+#: ../Pessulus/maindialog.py:43
+msgid "GNOME Screensaver"
+msgstr "Pelindung skrin GNOME"
+
+#: ../Pessulus/maindialog.py:53
+msgid "Disable _command line"
+msgstr "Lumpuhkan _baris arahan"
+
+#: ../Pessulus/maindialog.py:54
+msgid "Disable _printing"
+msgstr "Lumpuhkan percetakan"
+
+#: ../Pessulus/maindialog.py:55
+msgid "Disable print _setup"
+msgstr "Lumpuhkan penetapan cetakan"
+
+#: ../Pessulus/maindialog.py:56
+msgid "Disable save to _disk"
+msgstr "Lumpuhkan simpan ke _cakera"
+
+#: ../Pessulus/maindialog.py:58
+msgid "_Lock down the panels"
+msgstr "Kunci pane_l"
+
+#: ../Pessulus/maindialog.py:59
+msgid "Disable force _quit"
+msgstr "Lumpuhkan keluar Paksa"
+
+#: ../Pessulus/maindialog.py:60
+msgid "Disable log _out"
+msgstr "Lumpuhkan l_og keluar"
+
+#: ../Pessulus/maindialog.py:62
+msgid "Disable _quit"
+msgstr "Lumpuhkan _keluar"
+
+#: ../Pessulus/maindialog.py:63
+msgid "Disable _arbitrary URL"
+msgstr "Lumpuhkan URL seb_arangan"
+
+#: ../Pessulus/maindialog.py:64
+msgid "Disable _bookmark editing"
+msgstr "Lumpuhkan pengeditan penanda _buku"
+
+#: ../Pessulus/maindialog.py:65
+msgid "Disable _history"
+msgstr "Lumpuhkan sejara_h"
+
+#: ../Pessulus/maindialog.py:66
+msgid "Disable _javascript chrome"
+msgstr "Lumpuhkan _javascript chrome"
+
+#: ../Pessulus/maindialog.py:67
+msgid "Disable _toolbar editing"
+msgstr "Lunmpuhkan pengeditan bar ala_tan"
+
+#: ../Pessulus/maindialog.py:68
+msgid "Force _fullscreen mode"
+msgstr "Paksa mod skrinpenuh"
+
+#: ../Pessulus/maindialog.py:69
+msgid "Hide _menubar"
+msgstr "Sembunyikan bar menu"
+
+#: ../Pessulus/maindialog.py:71
+msgid "Disable lock _screen"
+msgstr "Lumpuhkan kunci skrin"
+
+#: ../Pessulus/maindialog.py:72
+msgid "_Lock on activation"
+msgstr "Kunci _waktu pengaktifan"
+
+#: ../Pessulus/maindialog.py:73
+msgid "Allow log _out"
+msgstr "Benarkan l_og keluar"
+
+#: ../Pessulus/maindialog.py:74
+msgid "Allow user _switching"
+msgstr "Benarkan pert_ukaran pengguna"
+
+#: ../Pessulus/maindialog.py:233
+#, python-format
+msgid "Could not display help document '%s'"
+msgstr "Tak dapat memaparkan dokumen bantuan '%s'"
+
+#: ../Pessulus/main.py:49
+msgid "Cannot contact the GConf server"
+msgstr "Tidak dapat menghubungi pelayan GConf"
+
+#: ../Pessulus/main.py:50
+msgid ""
+"This usually happens when running this application with 'su' instead of 'su -'.\n"
+"If this is not the case, you can look at the output of the application to get more details."
+msgstr ""
+"Ini biasanya terjadi bila menjalankan aplikasi dengan 'su' berbanding 'su -'.\n"
+"Jika bukan, lihat output aplikasi untuk butiran lebih."
+
diff -pruN 2.30.2-1/po/ug.po 2.30.4-1/po/ug.po
--- 2.30.2-1/po/ug.po	2010-05-26 18:17:23.000000000 +0100
+++ 2.30.4-1/po/ug.po	2010-11-17 10:47:15.000000000 +0000
@@ -1,16 +1,16 @@
-# Uighur translation for pessulus.
-# Copyright (C) 2010 pessulus's COPYRIGHT HOLDER
-# This file is distributed under the same license as the pessulus package.
-# Gheyret Kenji <gheyret@yahoo.com>, 2010.
-# 
+# Uighur translation for pessulus.
+# Copyright (C) 2010 pessulus's COPYRIGHT HOLDER
+# This file is distributed under the same license as the pessulus package.
+# Gheyret Kenji <gheyret@yahoo.com>, 2010.
+# Sahran <sahran.ug@gmail.com>, 2010
+# 
 msgid ""
 msgstr ""
-"Project-Id-Version: pessulus master\n"
-"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
-"product=pessulus&component=general\n"
-"POT-Creation-Date: 2010-04-18 10:22+0000\n"
+"Project-Id-Version: pessulus\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus&component=general\n"
+"POT-Creation-Date: 2010-09-30 22:14+0000\n"
 "PO-Revision-Date: 2010-04-18 10:22+0000\n"
-"Last-Translator: Gheyret Kenji <gheyret@yahoo.com>\n"
+"Last-Translator: Sahran <sahran.ug@gmail.com>\n"
 "Language-Team: Uyghur Computer Science Association <UKIJ@yahoogroups.com>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -18,20 +18,20 @@ msgstr ""
 
 #: ../data/pessulus.desktop.in.in.h:1
 msgid "Configure the lockdown policy"
-msgstr "lockdown تۈزۈمىنى سەپلەش"
+msgstr "قۇلۇپلاش تاكتىكا سەپلىمىسى"
 
 #: ../data/pessulus.desktop.in.in.h:2 ../data/pessulus.ui.h:3
 #: ../Pessulus/main.py:54
 msgid "Lockdown Editor"
-msgstr "Lockdown تەھرىرلىگۈچ"
+msgstr "قۇلۇپلاش تاكتىكا تەھرىرلىگۈچ"
 
 #: ../data/pessulus.ui.h:1
 msgid "Disable _unsafe protocols"
-msgstr "بىخەتەر بولمىغان كېلىشىملەرنى چەكلەش(_U)"
+msgstr "بىخەتەر بولمىغان كېلىشىملەرنى چەكلە(_U)"
 
 #: ../data/pessulus.ui.h:2
 msgid "Disabled Applets"
-msgstr "چەكلەنگەن Applet لار"
+msgstr "چەكلەنگەن قوللانچاقلار"
 
 #: ../data/pessulus.ui.h:4
 msgid "Safe Protocols"
@@ -39,19 +39,19 @@ msgstr "بىخەتەر كېلىشىمل
 
 #: ../Pessulus/lockdownbutton.py:100
 msgid "Click to make this setting not mandatory"
-msgstr ""
+msgstr "چېكىلسە بۇ تەڭشەك مەجبۇرلانمايدىغان قىلىپ تەڭشىلىدۇ"
 
 #: ../Pessulus/lockdownbutton.py:102
 msgid "Click to make this setting mandatory"
-msgstr ""
+msgstr "چېكىلسە بۇ تەڭشەك مەجبۇرىي قىممەت قىلىپ تەڭشىلىدۇ"
 
 #: ../Pessulus/maindialog.py:40
 msgid "General"
-msgstr "ئومۇمىي"
+msgstr "ئادەتتە"
 
 #: ../Pessulus/maindialog.py:41
 msgid "Panel"
-msgstr "Panel"
+msgstr "تاختا"
 
 #: ../Pessulus/maindialog.py:42
 msgid "Epiphany Web Browser"
@@ -59,7 +59,7 @@ msgstr "Epiphany توركۆرگۈ"
 
 #: ../Pessulus/maindialog.py:43
 msgid "GNOME Screensaver"
-msgstr "GNOME Screensaver"
+msgstr "GNOME ئېكران قوغداش"
 
 #: ../Pessulus/maindialog.py:53
 msgid "Disable _command line"
@@ -67,7 +67,7 @@ msgstr "بۇيرۇق قۇرىنى چەك
 
 #: ../Pessulus/maindialog.py:54
 msgid "Disable _printing"
-msgstr "بېسىشنى چەكلە"
+msgstr "بېسىشنى چەكلە(_P)"
 
 #: ../Pessulus/maindialog.py:55
 msgid "Disable print _setup"
@@ -79,7 +79,7 @@ msgstr "دىسكىغا ساقلاشنى 
 
 #: ../Pessulus/maindialog.py:58
 msgid "_Lock down the panels"
-msgstr "panel لارنى lock down قىلىش(_L)"
+msgstr "تاختىلارنى قۇلۇپلا(_L)"
 
 #: ../Pessulus/maindialog.py:59
 msgid "Disable force _quit"
@@ -87,7 +87,7 @@ msgstr "مەجبۇرىي چېكىنىش
 
 #: ../Pessulus/maindialog.py:60
 msgid "Disable log _out"
-msgstr "چىقىپ كېتىشنى چەكلە(_O)"
+msgstr "تىزىمدىن چىقىشنى چەكلە(_O)"
 
 #: ../Pessulus/maindialog.py:62
 msgid "Disable _quit"
@@ -99,11 +99,11 @@ msgstr "URL  كىرگۈزۈشنى چەك
 
 #: ../Pessulus/maindialog.py:64
 msgid "Disable _bookmark editing"
-msgstr "خەتكۇچ تەھرىرلەشنى چەكلە(_B)"
+msgstr "خەتكۈش تەھرىرلەشنى چەكلە(_B)"
 
 #: ../Pessulus/maindialog.py:65
 msgid "Disable _history"
-msgstr "ئىز قالدۇرۇشنى چەكلە(_H)"
+msgstr "تارىخنى چەكلە(_H)"
 
 #: ../Pessulus/maindialog.py:66
 msgid "Disable _javascript chrome"
@@ -111,31 +111,31 @@ msgstr "javascript chrome چەكلە(_J)
 
 #: ../Pessulus/maindialog.py:67
 msgid "Disable _toolbar editing"
-msgstr "قورال تاياقچىسىنى تەھرىرلەشنى چەكلە(_T)"
+msgstr "قورال بالداق تەھرىرلەشنى چەكلە(_T)"
 
 #: ../Pessulus/maindialog.py:68
 msgid "Force _fullscreen mode"
-msgstr "تولۇق ئېكران ھالىتىگە مەجبۇرىي توغرىلا(_F)"
+msgstr "پۈتۈن ئېكران ھالىتىگە مەجبۇرىي توغرىلا(_F)"
 
 #: ../Pessulus/maindialog.py:69
 msgid "Hide _menubar"
-msgstr "menubar نى يوشۇر"
+msgstr "تىزىملىك بالدىقىنى يوشۇر(_M)"
 
 #: ../Pessulus/maindialog.py:71
 msgid "Disable lock _screen"
-msgstr "ئېكراننى قۇلۇپلاشنى چەكلە(_S)"
+msgstr "ئېكران قۇلۇپلاشنى چەكلە(_S)"
 
 #: ../Pessulus/maindialog.py:72
 msgid "_Lock on activation"
-msgstr ""
+msgstr "ئاكتىپلانغاندا قۇلۇپ ئاچ(_L)"
 
 #: ../Pessulus/maindialog.py:73
 msgid "Allow log _out"
-msgstr "چىقىپ كېتىشكە رۇخسەت قىل(_O)"
+msgstr "چىقىپ كېتىشكە يول قوي(_O)"
 
 #: ../Pessulus/maindialog.py:74
 msgid "Allow user _switching"
-msgstr "ئىشلەتكۈچىنى ئۆزگەرتىشكە رۇخسەت قىل(_S)"
+msgstr "ئىشلەتكۈچىنى ئالماشتۇرۇشقا يول قوي(_S)"
 
 #: ../Pessulus/maindialog.py:233
 #, python-format
@@ -152,7 +152,5 @@ msgid ""
 "-'.\n"
 "If this is not the case, you can look at the output of the application to "
 "get more details."
-msgstr ""
-"مەزكۇر پروگراممىنى 'su - ' نىڭ بىلەن ئەمەس 'su' بىلەن ئىجرا قىلغاندا، "
-"مۇشۇنداق ئىش يۈز بېرىدۇ.\n"
+msgstr "مەزكۇر پروگراممىنى 'su - ' نىڭ بىلەن ئەمەس 'su' بىلەن ئىجرا قىلغاندا، مۇشۇنداق ئىش يۈز بېرىدۇ.\n"
 "ئەگەر بۇنداق بولمىسا، پروگرامما چىقارغان ئۇچۇرلارنى كۆرۈپ ھۆكۈم قىلىڭ."
diff -pruN 2.30.2-1/README 2.30.4-1/README
--- 2.30.2-1/README	2010-06-22 03:18:45.000000000 +0100
+++ 2.30.4-1/README	2010-09-08 18:24:49.000000000 +0100
@@ -1,5 +1,5 @@
-pessulus 2.30.2
-===============
+pessulus
+========
 
 pessulus is a lockdown editor for GNOME, written in python.
 
@@ -10,25 +10,34 @@ Use of pessulus can be useful on compute
 everyone, e.g. in an internet cafe.
 
 You may download updates to the package from:
-   http://ftp.gnome.org/pub/GNOME/sources/pessulus/
+
+   http://download.gnome.org/sources/pessulus/
+
+To discuss pessulus, you may use the desktop-devel-list mailing list:
+
+  http://mail.gnome.org/mailman/listinfo/desktop-devel-list
+
 
 Installation
 ============
 
 See the file 'INSTALL'. If you are not using a released version of
-pessulus (for example, if you checked out the code from CVS), you
-first need to run './autogen.sh'.
+pessulus (for example, if you checked out the code from git), you first
+need to run './autogen.sh'.
+
 
 How to report bugs
 ==================
 
 Bugs should be reported to the GNOME bug tracking system:
-   http://bugzilla.gnome.org/ (product pessulus)
+
+   https://bugzilla.gnome.org/ (product pessulus)
+
 You will need to create an account for yourself.
 
-Please read the following page on how to prepare a useful
-bug report
-   http://bugzilla.gnome.org/bug-HOWTO.html
+Please read the following page on how to prepare a useful bug report:
+
+   https://bugzilla.gnome.org/page.cgi?id=bug-writing.html
 
-Please read the HACKING file for information on where to
-send changes or bugfixes for this package.
+Please read the HACKING file for information on where to send changes or
+bugfixes for this package.
