diff -pruN 0.6.1-2/debian/changelog 0.6.1-2ubuntu2/debian/changelog
--- 0.6.1-2/debian/changelog	2010-08-28 08:34:42.000000000 +0100
+++ 0.6.1-2ubuntu2/debian/changelog	2010-08-28 08:32:24.000000000 +0100
@@ -1,3 +1,31 @@
+osgal (0.6.1-2ubuntu2) maverick; urgency=low
+
+  * Fix FTBFS: debian/rules: 
+    + supply DEB_AUTO_UPDATE_AUTOMAKE
+    + supply DEB_AUTO_UPDATE_AUTOCONF
+    + drop rules for running autotools, as cdbs nowadays takes care of it.
+      Changes from Debian #569442, Thanks to Stefan Potyra
+
+ -- Scott Kitterman <scott@kitterman.com>  Fri, 27 Aug 2010 21:49:32 -0400
+
+osgal (0.6.1-2ubuntu1) karmic; urgency=low
+
+  * Fix FTBFS on armel by adding -lgcc -lgcc_s to LDFLAGS for armel
+
+ -- Andreas Moog <amoog@ubuntu.com>  Wed, 19 Aug 2009 14:30:44 +0200
+
+osgal (0.6.1-2build2) karmic; urgency=low
+
+  * Rebuild against OpenSceneGraph-2.8.1
+
+ -- Andreas Moog <amoog@ubuntu.com>  Sat, 15 Aug 2009 12:56:10 +0200
+
+osgal (0.6.1-2build1) intrepid; urgency=low
+
+  * Rebuild against OpenSceneGraph-2.4 (LP: #256646)
+
+ -- Cesare Tirabassi <norsetto@ubuntu.com>  Sun, 24 Aug 2008 15:23:28 +0200
+
 osgal (0.6.1-2) unstable; urgency=low
 
   * Rebuild against OpenSceneGraph-2.2
diff -pruN 0.6.1-2/debian/control 0.6.1-2ubuntu2/debian/control
--- 0.6.1-2/debian/control	2010-08-28 08:34:42.000000000 +0100
+++ 0.6.1-2ubuntu2/debian/control	2010-08-28 08:32:24.000000000 +0100
@@ -1,7 +1,8 @@
 Source: osgal
 Section: libs
 Priority: optional
-Maintainer: Loic Dachary (OuoU) <loic@debian.org>
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Loic Dachary (OuoU) <loic@debian.org>
 Build-Depends: debhelper (>> 4.0.0), dpatch, ccache, cdbs, g++ (>= 3.3.0), doxygen, pkg-config, autoconf, automake1.9, libtool, libopenal-dev, libalut-dev, libvorbis-dev, libopenscenegraph-dev (>= 0.9.8), libvorbis-dev, xlibmesa-gl-dev | libgl-dev | libgl1-mesa-dev
 Standards-Version: 3.7.2
 
diff -pruN 0.6.1-2/debian/rules 0.6.1-2ubuntu2/debian/rules
--- 0.6.1-2/debian/rules	2010-08-28 08:34:42.000000000 +0100
+++ 0.6.1-2ubuntu2/debian/rules	2010-08-28 08:32:24.000000000 +0100
@@ -8,11 +8,17 @@ include /usr/share/cdbs/1/class/autotool
 #export DH_VERBOSE=1
 
 DEB_MAKE_CLEAN_TARGET = maintainer-clean
+DEB_AUTO_UPDATE_AUTOMAKE = 1.9
+DEB_AUTO_UPDATE_AUTOCONF = 1.9
 
 ifneq (ccache,$(findstring ccache,$(DEB_BUILD_OPTIONS)))
         DEB_CONFIGURE_EXTRA_FLAGS += --without-ccache
 endif
 
+ifeq (armel,$(DEB_BUILD_ARCH))
+	LDFLAGS += -lgcc -lgcc_s
+endif
+
 build/osgal-doc::
 	doxygen debian/Doxyfile
 
@@ -20,8 +26,3 @@ clean:: 
 	rm -fr html
 	rm -f configure
 
-$(DEB_BUILDDIR)/config.status: $(DEB_BUILDDIR)/configure
-
-$(DEB_BUILDDIR)/configure: $(DEB_BUILDDIR)/configure.in
-	AUTOMAKE=automake-1.9 ACLOCAL=aclocal-1.9 autoreconf --install
-
