Your message dated Mon, 29 Jan 2007 16:47:04 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#399701: fixed in ffmpeg 0.cvs20060823-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: ffmpeg
Severity: important
Version: 0.cvs20060823-4
Tags: patch

Hi,

the current version have same ffmpeg-config on GNU/kFreeBSD as on Linux.

The GNU/kFreeBSD variant needs to exclude firewire libs.
Please find attached patch with that.

Thanks in advance

                          Petr
diff -u ffmpeg-0.cvs20060823/debian/patches/010_ffmpeg-config.diff 
ffmpeg-0.cvs20060823/debian/patches/010_ffmpeg-config.diff
--- ffmpeg-0.cvs20060823/debian/patches/010_ffmpeg-config.diff
+++ ffmpeg-0.cvs20060823/debian/patches/010_ffmpeg-config.diff
@@ -76,7 +76,7 @@
 +fi
 +
 +cflags="-I$include_dir"
-+link_libs="$link_libs -lvorbis -lvorbisenc -ltheora -logg -ldts -la52 
-lraw1394 -ldc1394_control -lgsm -lz -lm"
++link_libs="$link_libs -lvorbis -lvorbisenc -ltheora -logg -ldts -la52 
@FIREWIRELIBS@ -lgsm -lz -lm"
 +
 +if test "$lib_dir" != "/usr/lib"; then
 +    libs="-L$lib_dir"
diff -u ffmpeg-0.cvs20060823/debian/rules ffmpeg-0.cvs20060823/debian/rules
--- ffmpeg-0.cvs20060823/debian/rules
+++ ffmpeg-0.cvs20060823/debian/rules
@@ -10,8 +10,10 @@
 ifneq (,$(findstring linux,$(DEB_HOST_GNU_TYPE)))
   confflags += --enable-dc1394
   lib1394-dev = libraw1394-dev, libdc1394-13-dev
+  FIREWIRELIBS="-lraw1394 -ldc1394_control"
 else
   lib1394-dev =
+  FIREWIRELIBS=""
 endif
 
 ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
@@ -145,7 +147,7 @@
        cp doc/*.html debian/tmp/usr/share/doc/ffmpeg/html/
        cp doc/ffserver.conf debian/tmp/etc/
        
-       sed s/@VERSION@/`dpkg-parsechangelog | sed -ne 's/^Version: //p'`/ 
ffmpeg-config.in > debian/tmp/usr/bin/ffmpeg-config
+       sed -e s/@FIREWIRELIBS@/$(FIREWIRELIBS)/ -e 
s/@VERSION@/`dpkg-parsechangelog | sed -ne 's/^Version: //p'`/ ffmpeg-config.in 
> debian/tmp/usr/bin/ffmpeg-config
        chmod 644 debian/tmp/usr/bin/ffmpeg-config
        cp ffmpeg-config.1 debian/tmp/usr/share/man/man1/ffmpeg-config.1
        

--- End Message ---
--- Begin Message ---
Source: ffmpeg
Source-Version: 0.cvs20060823-5

We believe that the bug you reported is fixed in the latest version of
ffmpeg, which is due to be installed in the Debian FTP archive:

ffmpeg_0.cvs20060823-5.diff.gz
  to pool/main/f/ffmpeg/ffmpeg_0.cvs20060823-5.diff.gz
ffmpeg_0.cvs20060823-5.dsc
  to pool/main/f/ffmpeg/ffmpeg_0.cvs20060823-5.dsc
ffmpeg_0.cvs20060823-5_i386.deb
  to pool/main/f/ffmpeg/ffmpeg_0.cvs20060823-5_i386.deb
libavcodec-dev_0.cvs20060823-5_i386.deb
  to pool/main/f/ffmpeg/libavcodec-dev_0.cvs20060823-5_i386.deb
libavcodec0d_0.cvs20060823-5_i386.deb
  to pool/main/f/ffmpeg/libavcodec0d_0.cvs20060823-5_i386.deb
libavformat-dev_0.cvs20060823-5_i386.deb
  to pool/main/f/ffmpeg/libavformat-dev_0.cvs20060823-5_i386.deb
libavformat0d_0.cvs20060823-5_i386.deb
  to pool/main/f/ffmpeg/libavformat0d_0.cvs20060823-5_i386.deb
libpostproc-dev_0.cvs20060823-5_i386.deb
  to pool/main/f/ffmpeg/libpostproc-dev_0.cvs20060823-5_i386.deb
libpostproc0d_0.cvs20060823-5_i386.deb
  to pool/main/f/ffmpeg/libpostproc0d_0.cvs20060823-5_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sam Hocevar (Debian packages) <[EMAIL PROTECTED]> (supplier of updated ffmpeg 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Mon, 29 Jan 2007 16:58:44 +0100
Source: ffmpeg
Binary: libavformat-dev libavformat0d ffmpeg libavcodec-dev libpostproc0d 
libpostproc-dev libavcodec0d
Architecture: source i386
Version: 0.cvs20060823-5
Distribution: testing-proposed-updates
Urgency: high
Maintainer: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>
Changed-By: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>
Description: 
 ffmpeg     - multimedia player, server and encoder
 libavcodec-dev - development files for libavcodec
 libavcodec0d - ffmpeg codec library
 libavformat-dev - development files for libavformat
 libavformat0d - ffmpeg file format library
 libpostproc-dev - development files for libpostproc
 libpostproc0d - ffmpeg video postprocessing library
Closes: 398235 399701 405926 406474
Changes: 
 ffmpeg (0.cvs20060823-5) testing-proposed-updates; urgency=high
 .
   [ Loïc Minier ]
   * Add myself to Uploaders.
   * Exclude firewire libs from ffmpeg-config under kFreeBSD; based on a patch
     by Petr Salinger; closes: #399701.
   * Fix handling of debug in DEB_BUILD_OPTIONS; thanks Andreas Henriksson;
     closes: #406474.
   * SECURITY: New patch, 050_h264-misc-security-fixes, to properly check the
     sps and pps ids before use and to check more bitstram values and fix
     potential security holes; from upstream SVN r7585, r7586, and r7591.
   * SECURITY: New patch, 051_asf-misc-security-fixes, to properly check
     packet sizes, chunk sizes, and fragment positions; from upstream SVN r7640
     and r7650.
 .
   [ Sam Hocevar ]
   * debian/copyright:
     + Fix typo and clarify licensing terms (Closes: #398235).
   * debian/README.Debian:
     + Removed mention of ffmpeg-config now that we ship .pc files.
   * debian/patches/020_mmx_optims.diff:
     + New patch, fix FTBFS with DEB_BUILD_OPTIONS=debug.
   * debian/patches/040_early_altivec_detection.diff:
     + New patch, detect AltiVec earlier on and only once so that we don't
       risk using signal handlers in a multithreaded environment or when
       the caller already installed a SIGILL handler.
   * debian/patches/040_only_use_maltivec_when_needed.diff:
     + New patch, only use -maltivec with files that use AltiVec intrinsics,
       and make sure no codepath leads to these files on a non-AltiVec
       machine (Closes: #405926).
   * debian/patches/060_fix_avi_skip.diff:
     + New patch, courtesy of Ben Hutchings: do not attempt to skip the ODML
       if the current seek offset is already beyond it.
Files: 
 bcf192908b67193eaf9853e1f057106a 1025 libs optional ffmpeg_0.cvs20060823-5.dsc
 3b6e05aa840e1b3a66cf07fc8ecd1ad8 32818 libs optional 
ffmpeg_0.cvs20060823-5.diff.gz
 a02f5a357e9d93e5d407fcf6af2bf02e 181530 graphics optional 
ffmpeg_0.cvs20060823-5_i386.deb
 876bf055e92a04212b5aea6328db26b0 1527760 libs optional 
libavcodec0d_0.cvs20060823-5_i386.deb
 9c3e7309ca0c4c462f0c80ed4dfe095f 36722 libs optional 
libpostproc0d_0.cvs20060823-5_i386.deb
 4ec6b2f0d7123ba61cc900e8e4500e24 285412 libs optional 
libavformat0d_0.cvs20060823-5_i386.deb
 53a5f52a3c08dea0174e8066cb8f3bfc 1585530 libdevel optional 
libavcodec-dev_0.cvs20060823-5_i386.deb
 8e01aa77eb8fd1ebc356391d57c01b78 37496 libdevel optional 
libpostproc-dev_0.cvs20060823-5_i386.deb
 9d88a71746d2594fd0bf4dd2f80121b5 329104 libdevel optional 
libavformat-dev_0.cvs20060823-5_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFFviBmfPP1rylJn2ERAsXGAJ0aAlkfFOnXuInWy7udyuTUsNxdUgCggAlj
tPNfhWk7iY2vcqulv+Sat5w=
=72i5
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to