tag 391562 + patch
thanks

On Mon, Oct 09, 2006 at 11:08:06PM +0200, Erik Schanze wrote:
> Debian Bug Tracking System Debian Bug Tracking System 
> <[EMAIL PROTECTED]>:
> > Bug#391562: Fails to build with current libquicktime
> >
> But I don't intent to fix your bugs in my package.
> Please fix #391847 and #391849 in libquicktime-dev and this "bug" will
> go away without any upload.

Actually, this was an error on my part. When I suggested to use
lqt-config, it had already been deprecated in favour of using
pkg-config. The attached patch is the recommended way to get at
libquicktime's cflags, and fixes this bug in passing. (#391849 still
causes a FTBFS, though.)

Regards,

Daniel.

P.S.: No, I'm not intending to do an upload. The changelog entry is just
      out of habit. ;-)
diff -u dvgrab-1.8/debian/rules dvgrab-1.8/debian/rules
--- dvgrab-1.8/debian/rules
+++ dvgrab-1.8/debian/rules
@@ -10,7 +10,7 @@
 
 include /usr/share/dpatch/dpatch.make
 
-CPPFLAGS=" -Wall "`lqt-config --cflags`
+CPPFLAGS=" -Wall "`pkg-config --cflags libquicktime`
 
 export DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
diff -u dvgrab-1.8/debian/changelog dvgrab-1.8/debian/changelog
--- dvgrab-1.8/debian/changelog
+++ dvgrab-1.8/debian/changelog
@@ -1,3 +1,11 @@
+dvgrab (1.8-4) unstable; urgency=high
+
+  * debian/control: Build-depend on pkg-config.
+  * debian/rules: Use pkg-config instead of deprecated lqt-config to extract
+    libquicktime cflags. Closes: #391562
+
+ -- Daniel Kobras <[EMAIL PROTECTED]>  Tue, 10 Oct 2006 12:38:28 +0200
+
 dvgrab (1.8-3) unstable; urgency=low
 
   * Added patches:
diff -u dvgrab-1.8/debian/control dvgrab-1.8/debian/control
--- dvgrab-1.8/debian/control
+++ dvgrab-1.8/debian/control
@@ -2,7 +2,7 @@
 Section: graphics
 Priority: extra
 Maintainer: Erik Schanze <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.0), libdv4-dev, libjpeg62-dev, libquicktime-dev 
(>= 1:0.9.7), libraw1394-dev (>= 0.9.0-2), libavc1394-dev (>= 0.4.1), 
autotools-dev, dpatch
+Build-Depends: debhelper (>= 4.0), libdv4-dev, libjpeg62-dev, libquicktime-dev 
(>= 1:0.9.7), libraw1394-dev (>= 0.9.0-2), libavc1394-dev (>= 0.4.1), 
autotools-dev, dpatch, pkg-config
 Standards-Version: 3.6.2
 
 Package: dvgrab

Reply via email to