r32250 - in /packages/unstable/gtranslator/debian: changelog control control.in patches/ patches/fix_gtkspell_check.patch patches/series rules

jordi at users.alioth.debian.org jordi at users.alioth.debian.org
Mon Dec 26 02:56:49 UTC 2011


Author: jordi
Date: Mon Dec 26 02:56:48 2011
New Revision: 32250

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=32250
Log:
* Build-Depend on libgtkspell-3-dev.
* Patch configure.ac to re-enable check for gtkspell.
* Use dh_autoreconf to regenerate autotools.

Added:
    packages/unstable/gtranslator/debian/patches/
    packages/unstable/gtranslator/debian/patches/fix_gtkspell_check.patch
    packages/unstable/gtranslator/debian/patches/series
Modified:
    packages/unstable/gtranslator/debian/changelog
    packages/unstable/gtranslator/debian/control
    packages/unstable/gtranslator/debian/control.in
    packages/unstable/gtranslator/debian/rules

Modified: packages/unstable/gtranslator/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gtranslator/debian/changelog?rev=32250&op=diff
==============================================================================
--- packages/unstable/gtranslator/debian/changelog [utf-8] (original)
+++ packages/unstable/gtranslator/debian/changelog [utf-8] Mon Dec 26 02:56:48 2011
@@ -1,3 +1,11 @@
+gtranslator (2.90.7-2) unstable; urgency=low
+
+  * Build-Depend on libgtkspell-3-dev.
+  * Patch configure.ac to re-enable check for gtkspell.
+  * Use dh_autoreconf to regenerate autotools.
+
+ -- Jordi Mallach <jordi at debian.org>  Mon, 26 Dec 2011 03:56:41 +0100
+
 gtranslator (2.90.7-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/unstable/gtranslator/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gtranslator/debian/control?rev=32250&op=diff
==============================================================================
--- packages/unstable/gtranslator/debian/control [utf-8] (original)
+++ packages/unstable/gtranslator/debian/control [utf-8] Mon Dec 26 02:56:48 2011
@@ -10,6 +10,7 @@
 Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>
 Build-Depends: cdbs,
                debhelper (>= 7),
+               dh-autoreconf,
                gnome-pkg-tools,
                gettext,
                gnome-doc-utils (>= 0.3.2),
@@ -23,6 +24,7 @@
                libgdl-3-dev (>= 2.91.1),
                libgdict-1.0-dev (>= 3.0.1-2~),
                libglib2.0-dev (>= 2.28.0),
+               libgtkspell-3-dev (>= 3.0.0~),
                libgtksourceview-3.0-dev (>= 3.0.0),
                libgtk-3-dev (>= 3.0.3),
                libgucharmap-2-90-dev (>= 3.0.0),

Modified: packages/unstable/gtranslator/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gtranslator/debian/control.in?rev=32250&op=diff
==============================================================================
--- packages/unstable/gtranslator/debian/control.in [utf-8] (original)
+++ packages/unstable/gtranslator/debian/control.in [utf-8] Mon Dec 26 02:56:48 2011
@@ -5,6 +5,7 @@
 Uploaders: @GNOME_TEAM@
 Build-Depends: cdbs,
                debhelper (>= 7),
+               dh-autoreconf,
                gnome-pkg-tools,
                gettext,
                gnome-doc-utils (>= 0.3.2),
@@ -18,6 +19,7 @@
                libgdl-3-dev (>= 2.91.1),
                libgdict-1.0-dev (>= 3.0.1-2~),
                libglib2.0-dev (>= 2.28.0),
+               libgtkspell-3-dev (>= 3.0.0~),
                libgtksourceview-3.0-dev (>= 3.0.0),
                libgtk-3-dev (>= 3.0.3),
                libgucharmap-2-90-dev (>= 3.0.0),

Added: packages/unstable/gtranslator/debian/patches/fix_gtkspell_check.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gtranslator/debian/patches/fix_gtkspell_check.patch?rev=32250&op=file
==============================================================================
--- packages/unstable/gtranslator/debian/patches/fix_gtkspell_check.patch (added)
+++ packages/unstable/gtranslator/debian/patches/fix_gtkspell_check.patch [utf-8] Mon Dec 26 02:56:48 2011
@@ -1,0 +1,31 @@
+Index: gtranslator-2.90.7/configure.ac
+===================================================================
+--- gtranslator-2.90.7.orig/configure.ac	2011-10-19 17:24:08.000000000 +0200
++++ gtranslator-2.90.7/configure.ac	2011-12-26 03:30:36.035295754 +0100
+@@ -86,7 +86,7 @@
+ GDA_REQUIRED=4.2.0
+ PEAS_REQUIRED=1.0.0
+ GDICT_OPTIONAL=0.11.0
+-GTKSPELL_OPTIONAL=2.0.16
++GTKSPELL_OPTIONAL=2.99.99
+ JSON_GLIB_OPTIONAL=0.12.0
+ 
+ PKG_CHECK_MODULES(GTRANSLATOR, [
+@@ -162,7 +162,7 @@
+ fi
+ 
+ dnl -------------------------------------------------------------------
+-dnl Check for gtkspell >= 2.0 and use it if found
++dnl Check for gtkspell >= 3.0 and use it if found
+ dnl -------------------------------------------------------------------
+ have_gtkspell=no
+ AC_ARG_WITH(gtkspell3,
+@@ -172,7 +172,7 @@
+ if test x"$with_gtkspell" != "xno"
+ then
+         PKG_CHECK_MODULES([GTKSPELL], [
+-                gtkspell3-2.0 >= $GTKSPELL_OPTIONAL
++                gtkspell-3.0 >= $GTKSPELL_OPTIONAL
+         ], have_gtkspell=yes, have_gtkspell=no)
+ 
+         if test x"$have_gtkspell" = "xyes"

Added: packages/unstable/gtranslator/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gtranslator/debian/patches/series?rev=32250&op=file
==============================================================================
--- packages/unstable/gtranslator/debian/patches/series (added)
+++ packages/unstable/gtranslator/debian/patches/series [utf-8] Mon Dec 26 02:56:48 2011
@@ -1,0 +1,1 @@
+fix_gtkspell_check.patch

Modified: packages/unstable/gtranslator/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gtranslator/debian/rules?rev=32250&op=diff
==============================================================================
--- packages/unstable/gtranslator/debian/rules [utf-8] (original)
+++ packages/unstable/gtranslator/debian/rules [utf-8] Mon Dec 26 02:56:48 2011
@@ -1,5 +1,6 @@
 #!/usr/bin/make -f
 
+include /usr/share/cdbs/1/rules/autoreconf.mk
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/gnome.mk
 include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk




More information about the pkg-gnome-commits mailing list