Package: jaula
Version: 1.4.0-3
Followup-For: Bug #727904
User: [email protected]
Usertags: origin-ubuntu trusty ubuntu-patch autoreconf
Dear Maintainer,
In Ubuntu 14.04, the attached patch was applied to achieve the following:
* Use dh-autoreconf for newer arches, resolving FTBFS
(Closes: #727904).
This debdiff may contain extraneous metadata. If so, kindly please ignore
them. Thanks for considering the patch!
-- System Information:
Debian Release: wheezy/sid
APT prefers precise-updates
APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500,
'precise-proposed'), (500, 'precise'), (100, 'precise-backports')
Architecture: amd64 (x86_64)
Kernel: Linux 3.11.0-17-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u jaula-1.4.0/debian/control jaula-1.4.0/debian/control
--- jaula-1.4.0/debian/control
+++ jaula-1.4.0/debian/control
@@ -1,9 +1,10 @@
Source: jaula
Section: libs
Priority: extra
-Maintainer: Loic Dachary (OuoU) <[email protected]>
+Maintainer: Ubuntu Developers <[email protected]>
+XSBC-Original-Maintainer: Loic Dachary (OuoU) <[email protected]>
Standards-Version: 3.8.3
-Build-Depends: debhelper (>= 5), flex, doxygen, dpatch
+Build-Depends: debhelper (>= 5), flex, doxygen, dpatch, dh-autoreconf
Uploaders: Ola Lundqvist <[email protected]>
Package: libjaula1
diff -u jaula-1.4.0/debian/rules jaula-1.4.0/debian/rules
--- jaula-1.4.0/debian/rules
+++ jaula-1.4.0/debian/rules
@@ -35,8 +35,9 @@
#major=`ls src/.libs/lib*.so.* | \
# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
-config.status: configure
+config.status: configure.in
dh_testdir
+ dh_autoreconf
# Add here commands to configure the package.
./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
--prefix=/usr --sysconfdir=/etc --disable-extended-debug \
@@ -69,14 +70,8 @@
[ ! -f Makefile ] || $(MAKE) clean
[ ! -f Makefile ] || $(MAKE) distclean
rm -f doc/jaula.tag
-ifneq "$(wildcard /usr/share/misc/config.sub)" ""
- cp -f /usr/share/misc/config.sub config.sub
-endif
-ifneq "$(wildcard /usr/share/misc/config.guess)" ""
- cp -f /usr/share/misc/config.guess config.guess
-endif
-
+ dh_autoreconf_clean
dh_clean
install: build
diff -u jaula-1.4.0/debian/changelog jaula-1.4.0/debian/changelog