Control: user [email protected] Control: usertag -1 autoreconf Source: grib-api Version: 1.10.4-1 Followup-For: Bug #727384 User: [email protected] Usertag: ppc64el
Hello. Using Doko's solution on grib-api worked well. This is what was done for Ubuntu by Doko himself. Automake version should be 1.11, so autoreconf runs without problems. The patch attached contains such modifications. Thanks and Regards. Fernando -- 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.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -purN grib-api-1.10.4/debian/control ubuntu/grib-api-1.10.4/debian/control --- grib-api-1.10.4/debian/control 2013-08-24 23:26:32.000000000 +0000 +++ ubuntu/grib-api-1.10.4/debian/control 2014-02-24 22:41:12.000000000 +0000 @@ -2,7 +2,7 @@ Source: grib-api Section: libdevel Priority: optional Maintainer: Enrico Zini <[email protected]> -Build-Depends: debhelper (>= 7.0.50~), dh-buildinfo, libjasper-dev, libjpeg-dev, libpng-dev, gfortran, flex, bison, quilt, automake, autoconf, libtool +Build-Depends: debhelper (>= 7.0.50~), dh-buildinfo, libjasper-dev, libjpeg-dev, libpng-dev, gfortran, flex, bison, quilt, dh-autoreconf, automake1.11 Standards-Version: 3.9.4.0 Homepage: http://www.ecmwf.int/products/data/software/grib_api.html Vcs-Git: git://git.debian.org/git/collab-maint/gribapi.git diff -purN grib-api-1.10.4/debian/rules ubuntu/grib-api-1.10.4/debian/rules --- grib-api-1.10.4/debian/rules 2013-08-10 10:05:10.000000000 +0000 +++ ubuntu/grib-api-1.10.4/debian/rules 2014-02-24 22:40:52.000000000 +0000 @@ -1,9 +1,11 @@ #!/usr/bin/make -f export CFLAGS += -fPIC +export AUTOMAKE = automake-1.11 +export ACLOCAL = aclocal-1.11 %: - dh $@ + dh $@ --with autoreconf override_dh_auto_configure: # Disable python modules until we figure out how to build them properly

