diff -Nru libgpod-0.8.0/debian/changelog libgpod-0.8.0/debian/changelog --- libgpod-0.8.0/debian/changelog 2011-04-07 17:12:13.000000000 +0000 +++ libgpod-0.8.0/debian/changelog 2011-07-03 18:32:39.000000000 +0000 @@ -1,3 +1,15 @@ +libgpod (0.8.0-3~hyper1+natty) natty; urgency=low + + * Backport to natty + + -- Chow Loong Jin Mon, 04 Jul 2011 02:32:32 +0800 + +libgpod (0.8.0-3) unstable; urgency=low + + * [d3ab740] Add autoreconf during build (LP: #772089) + + -- Chow Loong Jin Thu, 28 Apr 2011 08:04:53 +0800 + libgpod (0.8.0-2~hyper1+natty) natty; urgency=low * Backport to natty diff -Nru libgpod-0.8.0/debian/control libgpod-0.8.0/debian/control --- libgpod-0.8.0/debian/control 2011-04-07 17:12:13.000000000 +0000 +++ libgpod-0.8.0/debian/control 2011-07-03 18:32:39.000000000 +0000 @@ -4,6 +4,7 @@ Maintainer: gtkpod Maintainers Uploaders: Chow Loong Jin Build-Depends: debhelper (>= 7.0.50~), + dh-autoreconf, autotools-dev, intltool, pkg-config, diff -Nru libgpod-0.8.0/debian/rules libgpod-0.8.0/debian/rules --- libgpod-0.8.0/debian/rules 2011-04-07 17:12:13.000000000 +0000 +++ libgpod-0.8.0/debian/rules 2011-07-03 18:32:39.000000000 +0000 @@ -2,6 +2,8 @@ -include /usr/share/cli-common/cli.make +DH = dh --parallel --with=autoreconf + SONAME=4 VERSION = 0.7.94 export LDFLAGS=-Wl,-O1 -Wl,--as-needed @@ -11,7 +13,7 @@ # indep stuff binary: binary-arch binary-indep binary-arch binary-indep: - _LIBGPOD_BUILD_=$(subst binary-,,$@) dh --parallel $@ + _LIBGPOD_BUILD_=$(subst binary-,,$@) $(DH) $@ # targets are appended to $(BASE) to get the build directory @@ -137,7 +139,7 @@ # cleaning rules clean: - dh $@ + $(DH) $@ rm -f debian/libgpod-nogtk-dev.install debian/libgpod$(SONAME)-nogtk.install rm -rf debian/tmp-* @@ -153,6 +155,6 @@ -V 'libgpod$(SONAME)-nogtk (>= $(VERSION)) | libgpod$(SONAME) (>= $(VERSION))' %: - dh --parallel $@ + $(DH) $@ .PHONY: clean build build-arch build-indep