diff -u pyorbit-2.24.0/debian/control.in pyorbit-2.24.0/debian/control.in --- pyorbit-2.24.0/debian/control.in +++ pyorbit-2.24.0/debian/control.in @@ -6,6 +6,8 @@ Uploaders: @GNOME_TEAM@ Build-Depends: debhelper (>= 5.0.37.2), gnome-pkg-tools (>= 0.10), + dh-autoreconf, + gnome-common, python-all-dev (>= 2.6.6-3~), python-all-dbg, liborbit2-dev (>= 1:2.12), autotools-dev, diff -u pyorbit-2.24.0/debian/changelog pyorbit-2.24.0/debian/changelog --- pyorbit-2.24.0/debian/changelog +++ pyorbit-2.24.0/debian/changelog @@ -1,3 +1,9 @@ +pyorbit (2.24.0-6ubuntu4) trusty; urgency=medium + + * Use dh_autoreconf. + + -- Dimitri John Ledkov Mon, 23 Dec 2013 14:31:59 +0000 + pyorbit (2.24.0-6ubuntu3) quantal; urgency=low * Rebuild for new armel compiler default of ARMv5t. diff -u pyorbit-2.24.0/debian/control pyorbit-2.24.0/debian/control --- pyorbit-2.24.0/debian/control +++ pyorbit-2.24.0/debian/control @@ -2,7 +2,6 @@ # # Modifications should be made to debian/control.in instead. # This file is regenerated automatically in the clean target. - Source: pyorbit Section: python Priority: optional @@ -11,6 +10,8 @@ Uploaders: Debian GNOME Maintainers , Josselin Mouette Build-Depends: debhelper (>= 5.0.37.2), gnome-pkg-tools (>= 0.10), + dh-autoreconf, + gnome-common, python-all-dev (>= 2.6.6-3~), python-all-dbg, liborbit2-dev (>= 1:2.12), autotools-dev, diff -u pyorbit-2.24.0/debian/rules pyorbit-2.24.0/debian/rules --- pyorbit-2.24.0/debian/rules +++ pyorbit-2.24.0/debian/rules @@ -25,23 +25,14 @@ # apply patches $(QUILT) push -a || test $$? = 2 # backup the original files to restore them in the clean target - [ ! -r config.sub ] || \ - (cp config.sub config.sub.orig && \ - cp /usr/share/misc/config.sub config.sub) - [ ! -r config.guess ] || \ - (cp config.guess config.guess.orig && \ - cp /usr/share/misc/config.guess config.guess) + dh_autoreconf touch $@ patch: patch-stamp unpatch: rm -f patch-stamp - # restore files from backup (before unpatching) - [ ! -r config.sub.orig ] || \ - cp config.sub.orig config.sub - [ ! -r config.guess.orig ] || \ - cp config.guess.orig config.guess + dh_autoreconf_clean # unapply patches, if any $(QUILT) pop -a || test $$? = 2 rm -rf .pc