Package: shntool
Version: 3.0.7
Severity: normal
Tags: patch
User: [email protected]
Usertags: ppc64el
User: [email protected]
Usertags: autoreconf
The package shntool fails to build on ppc64el, as on new architectures, because
the config.{guess,sub} files are out of date, and are not updated during the
build.
I just created a patch that enables it to be built on ppc64el. I am using the
following URL as reference:
https://wiki.debian.org/qa.debian.org/FTBFS#A2014-01-21_using_dh-autoreconf_during_the_build
Thank you,
Breno
-- System Information:
*** End of the template - remove these lines ***
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: shntool-3.0.7/debian/control
===================================================================
--- shntool-3.0.7.orig/debian/control 2014-05-20 21:25:34.000000000 +0000
+++ shntool-3.0.7/debian/control 2014-05-20 21:27:13.000000000 +0000
@@ -2,7 +2,7 @@
Section: utils
Priority: extra
Maintainer: César Gómez Martín <[email protected]>
-Build-Depends: debhelper (>= 4.0.0)
+Build-Depends: debhelper (>= 4.0.0), dh-autoreconf
Standards-Version: 3.7.3
Homepage: http://etree.org/shnutils/shntool/
Index: shntool-3.0.7/debian/rules
===================================================================
--- shntool-3.0.7.orig/debian/rules 2014-05-20 21:25:34.000000000 +0000
+++ shntool-3.0.7/debian/rules 2014-05-20 21:27:01.000000000 +0000
@@ -24,6 +24,7 @@
build: build-stamp
build-stamp:
dh_testdir
+ dh_autoreconf
./configure $(crossflags) --prefix=/usr --mandir=/usr/share/man
$(MAKE)
touch $@
@@ -31,6 +32,7 @@
clean:
dh_testdir
dh_testroot
+ dh_autoreconf_clean
rm -f build-stamp
[ ! -f Makefile ] || $(MAKE) distclean
dh_clean