diff -Nru naspro-bridges-0.2.91/debian/changelog naspro-bridges-0.2.91/debian/changelog --- naspro-bridges-0.2.91/debian/changelog 2011-05-31 08:09:43.000000000 +0000 +++ naspro-bridges-0.2.91/debian/changelog 2011-12-20 18:55:31.000000000 +0000 @@ -1,3 +1,10 @@ +naspro-bridges (0.2.91-1ubuntu1) precise; urgency=low + + * Name and location of dyn-manifest.h have changed. Remove hardcoded paths + and detect correct location with pkg-config. + + -- Ilya Barygin Tue, 20 Dec 2011 22:54:31 +0400 + naspro-bridges (0.2.91-1) unstable; urgency=low * Imported Upstream version 0.2.91. diff -Nru naspro-bridges-0.2.91/debian/control naspro-bridges-0.2.91/debian/control --- naspro-bridges-0.2.91/debian/control 2011-05-31 08:03:28.000000000 +0000 +++ naspro-bridges-0.2.91/debian/control 2011-12-20 18:37:27.000000000 +0000 @@ -1,7 +1,8 @@ Source: naspro-bridges Section: libs Priority: optional -Maintainer: Debian Multimedia Maintainers +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian Multimedia Maintainers Uploaders: Alessio Treglia Build-Depends: debhelper (>= 7.0.50~), dh-autoreconf, diff -Nru naspro-bridges-0.2.91/debian/patches/dynmanifest-location.patch naspro-bridges-0.2.91/debian/patches/dynmanifest-location.patch --- naspro-bridges-0.2.91/debian/patches/dynmanifest-location.patch 1970-01-01 00:00:00.000000000 +0000 +++ naspro-bridges-0.2.91/debian/patches/dynmanifest-location.patch 2011-12-20 18:54:22.000000000 +0000 @@ -0,0 +1,38 @@ +Description: name and location of dyn-manifest.h have changed + Remove hardcoded path from configure script and source files. Necessary + build flags will be provided from debian/rules. +Author: Ilya Barygin + +--- naspro-bridges-0.2.91.orig/configure.ac ++++ naspro-bridges-0.2.91/configure.ac +@@ -37,7 +37,7 @@ AC_PROG_LIBTOOL + PKG_CHECK_MODULES([NABRIT], [nabrit-1 >= 0.2.90]) + + # Checks for header files. +-AC_CHECK_HEADER([lv2/lv2plug.in/ns/ext/dyn-manifest/dyn-manifest.h], , ++AC_CHECK_HEADER([dynmanifest.h], , + [AC_MSG_ERROR([LV2 Dynamic Manifest header not found.])]) + + AC_CHECK_HEADER([ladspa.h], [build_ladspa=yes], [build_ladspa=no]) +--- naspro-bridges-0.2.91.orig/ladspa/internal.h ++++ naspro-bridges-0.2.91/ladspa/internal.h +@@ -18,7 +18,7 @@ + + #include + +-#include "lv2/lv2plug.in/ns/ext/dyn-manifest/dyn-manifest.h" ++#include "dynmanifest.h" + + #include + +--- naspro-bridges-0.2.91.orig/dssi/internal.h ++++ naspro-bridges-0.2.91/dssi/internal.h +@@ -20,7 +20,7 @@ + + #include + +-#include "lv2/lv2plug.in/ns/ext/dyn-manifest/dyn-manifest.h" ++#include "dynmanifest.h" + #include "lv2/lv2plug.in/ns/ext/event/event.h" + #include "lv2/lv2plug.in/ns/ext/uri-map/uri-map.h" + diff -Nru naspro-bridges-0.2.91/debian/patches/series naspro-bridges-0.2.91/debian/patches/series --- naspro-bridges-0.2.91/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ naspro-bridges-0.2.91/debian/patches/series 2011-12-20 18:57:30.000000000 +0000 @@ -0,0 +1 @@ +dynmanifest-location.patch diff -Nru naspro-bridges-0.2.91/debian/rules naspro-bridges-0.2.91/debian/rules --- naspro-bridges-0.2.91/debian/rules 2011-05-31 08:06:32.000000000 +0000 +++ naspro-bridges-0.2.91/debian/rules 2011-12-20 18:50:32.000000000 +0000 @@ -1,5 +1,7 @@ #!/usr/bin/make -f +CFLAGS += $(shell pkg-config --cflags lv2-lv2plug.in-ns-ext-dynmanifest) + %: dh $@ --parallel --with autoreconf