diff -Nru pbdagcon-0.3+20161121+ds/debian/changelog pbdagcon-0.3+20161121+ds/debian/changelog --- pbdagcon-0.3+20161121+ds/debian/changelog 2016-12-21 09:22:47.000000000 +0000 +++ pbdagcon-0.3+20161121+ds/debian/changelog 2018-12-21 01:31:46.000000000 +0000 @@ -1,3 +1,11 @@ +pbdagcon (0.3+20161121+ds-1+rpi1) buster-staging; urgency=medium + + * Add build-depends on libpbdata-dev + * Add an include path that seems to be missing. + * Fix clean target. + + -- Peter Michael Green Fri, 21 Dec 2018 01:31:46 +0000 + pbdagcon (0.3+20161121+ds-1) unstable; urgency=medium * New upstream revision (upstream git 87f393f) diff -Nru pbdagcon-0.3+20161121+ds/debian/control pbdagcon-0.3+20161121+ds/debian/control --- pbdagcon-0.3+20161121+ds/debian/control 2016-12-21 09:17:43.000000000 +0000 +++ pbdagcon-0.3+20161121+ds/debian/control 2018-12-21 01:31:46.000000000 +0000 @@ -13,6 +13,7 @@ libtclap-dev, libpbseq-dev, libpbbam-dev, + libpbdata-dev, # Test-Depends: googletest, Standards-Version: 3.9.8 diff -Nru pbdagcon-0.3+20161121+ds/debian/patches/add-include-dir.patch pbdagcon-0.3+20161121+ds/debian/patches/add-include-dir.patch --- pbdagcon-0.3+20161121+ds/debian/patches/add-include-dir.patch 1970-01-01 00:00:00.000000000 +0000 +++ pbdagcon-0.3+20161121+ds/debian/patches/add-include-dir.patch 2018-12-21 01:31:46.000000000 +0000 @@ -0,0 +1,23 @@ +Description: Add an include path that seems to be missing. +Author: Peter Michael Green + +--- pbdagcon-0.3+20161121+ds.orig/src/cpp/makefile ++++ pbdagcon-0.3+20161121+ds/src/cpp/makefile +@@ -12,6 +12,7 @@ CXXFLAGS += -O3 -std=c++11 -Wall -Wunini + CFLAGS += -O3 -Wall -Wextra -fno-strict-aliasing + + INCDIRS := \ ++ /usr/include/pbseq \ + ${DAZZ_DB_INCLUDE} \ + ${DALIGNER_INCLUDE} \ + ${LIBBLASR_INCLUDE} \ +--- pbdagcon-0.3+20161121+ds.orig/test/cpp/makefile ++++ pbdagcon-0.3+20161121+ds/test/cpp/makefile +@@ -8,6 +8,7 @@ SRCDIR := ${THISDIR} + INCDIRS := . \ + ${SRCDIR} \ + ${SRCDIR}/../../src/cpp \ ++ /usr/include/pbseq \ + ${DAZZ_DB_INCLUDE} \ + ${DALIGNER_INCLUDE} \ + ${LIBBLASR_INCLUDE} \ diff -Nru pbdagcon-0.3+20161121+ds/debian/patches/series pbdagcon-0.3+20161121+ds/debian/patches/series --- pbdagcon-0.3+20161121+ds/debian/patches/series 2016-12-21 09:17:41.000000000 +0000 +++ pbdagcon-0.3+20161121+ds/debian/patches/series 2018-12-21 01:31:46.000000000 +0000 @@ -1 +1,2 @@ compiler-flags.patch +add-include-dir.patch diff -Nru pbdagcon-0.3+20161121+ds/debian/rules pbdagcon-0.3+20161121+ds/debian/rules --- pbdagcon-0.3+20161121+ds/debian/rules 2016-12-21 09:17:43.000000000 +0000 +++ pbdagcon-0.3+20161121+ds/debian/rules 2018-12-21 01:31:46.000000000 +0000 @@ -16,8 +16,13 @@ export DALIGNER_SRC = $(CURDIR)/DALIGNER export DAZZ_DB_SRC = $(CURDIR)/DAZZ_DB + %: dh $@ override_dh_auto_configure: ./configure.py --shared + +override_dh_auto_clean: + dh_auto_clean + rm -f defines.mk