Control: tags -1 +patch Hi,
I've fixed this FTBFS as attached patch, please check and consider to apply it. -- Regards, Hideki Yamane henrich @ debian.or.jp/org http://wiki.debian.org/HidekiYamane
diff -Nru odt2txt-0.4+git20100620/debian/changelog odt2txt-0.4+git20100620/debian/changelog --- odt2txt-0.4+git20100620/debian/changelog 2010-06-21 10:33:48.000000000 +0900 +++ odt2txt-0.4+git20100620/debian/changelog 2014-03-26 22:10:05.000000000 +0900 @@ -1,3 +1,14 @@ +odt2txt (0.4+git20100620-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * debian/control + - add "Build-Depends: pkg-config" + * debian/rules + - add pkg-config to fix FTBFS "zip.h:53:21: fatal error: zipconf.h: No such + file or directory" with libzip-dev changes (Closes: #741752) + + -- Hideki Yamane <[email protected]> Wed, 26 Mar 2014 22:00:30 +0900 + odt2txt (0.4+git20100620-1) unstable; urgency=low * New upstream git snapshot (53b4871): diff -Nru odt2txt-0.4+git20100620/debian/control odt2txt-0.4+git20100620/debian/control --- odt2txt-0.4+git20100620/debian/control 2010-06-21 09:08:25.000000000 +0900 +++ odt2txt-0.4+git20100620/debian/control 2014-03-26 21:58:53.000000000 +0900 @@ -2,7 +2,7 @@ Section: text Priority: optional Maintainer: Nelson A. de Oliveira <[email protected]> -Build-Depends: cdbs, debhelper (>= 7), zlib1g-dev, libzip-dev +Build-Depends: cdbs, debhelper (>= 7), zlib1g-dev, libzip-dev, pkg-config Standards-Version: 3.8.4 Homepage: http://stosberg.net/odt2txt/ diff -Nru odt2txt-0.4+git20100620/debian/rules odt2txt-0.4+git20100620/debian/rules --- odt2txt-0.4+git20100620/debian/rules 2010-06-21 10:20:48.000000000 +0900 +++ odt2txt-0.4+git20100620/debian/rules 2014-03-26 22:09:17.000000000 +0900 @@ -5,7 +5,7 @@ DEB_MAKE_INSTALL_TARGET := install DESTDIR=$(CURDIR)/debian/odt2txt/usr DEB_MAKE_ENVVARS := HAVE_LIBZIP="true" -CFLAGS += -DHAVE_LIBZIP +CFLAGS += -DHAVE_LIBZIP `pkg-config libzip --cflags` binary-install/odt2txt:: mv $(CURDIR)/debian/odt2txt/usr/bin/odt2txt $(CURDIR)/debian/odt2txt/usr/bin/odt2txt.odt2txt

