Package: dbmix
Version: 0.9.8-6.3
Severity: normal
Tags: patch
Dear Maintainer,
Currently dbmix FTBFS when compiled in new architectures (as ppc64el) that is
not supported on the outdated package autotools files, with the following
error:
make[1]: Leaving directory `/«PKGBUILDDIR»'
dh_testdir
dh_testroot
dh_install -a
dh_install: libdbaudiolib0-dev missing files
(debian/tmp/usr/lib/lib*.so), aborting
make: *** [binary-arch] Error 255
I just created this patch that updates the config files before building,
removing some logic from the rules file, as suggested in:
https://wiki.debian.org/qa.debian.org/FTBFS#A2014-01-21_using_dh-autoreconf_during_the_build
I tested it on ppc64el and it worked.
Thank you,
Breno
-- System Information:
Debian Release: jessie/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: ppc64el (ppc64le)
Kernel: Linux 3.13-1-powerpc64le (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
Index: dbmix-0.9.8/debian/control
===================================================================
--- dbmix-0.9.8.orig/debian/control 2014-06-27 12:55:27.000000000 +0000
+++ dbmix-0.9.8/debian/control 2014-06-27 12:56:12.000000000 +0000
@@ -2,7 +2,7 @@
Section: sound
Priority: optional
Maintainer: Daniel Kobras <[email protected]>
-Build-Depends: debhelper (>= 5), autotools-dev, libgtk2.0-dev
+Build-Depends: debhelper (>= 5), autotools-dev, libgtk2.0-dev, dh-autoreconf
Standards-Version: 3.8.3
Package: dbmix
Index: dbmix-0.9.8/debian/rules
===================================================================
--- dbmix-0.9.8.orig/debian/rules 2014-06-27 12:55:27.000000000 +0000
+++ dbmix-0.9.8/debian/rules 2014-06-27 12:56:01.000000000 +0000
@@ -25,6 +25,7 @@
config.status: configure
dh_testdir
+ dh_autoreconf
if test -f config.sub; then \
mv config.sub config.sub.debsave; \
fi
@@ -49,6 +50,7 @@
clean:
dh_testdir
dh_testroot
+ dh_autoreconf_clean
rm -f build-stamp
test ! -f Makefile || $(MAKE) distclean